diff options
author | Steve Beaver <sbeaver@netgate.com> | 2017-02-10 08:58:44 -0500 |
---|---|---|
committer | Steve Beaver <sbeaver@netgate.com> | 2017-02-10 09:12:08 -0500 |
commit | 5b18b8a4e0b79e8502ceb5d7bc01a7c0383f0c0e (patch) | |
tree | a606d2f7a7c56a199285fe65b9fd931539551f4e | |
parent | cc8783a53838de40a9a874714458295794bec298 (diff) | |
download | pfsense-5b18b8a4e0b79e8502ceb5d7bc01a7c0383f0c0e.zip pfsense-5b18b8a4e0b79e8502ceb5d7bc01a7c0383f0c0e.tar.gz |
Provide CSS for required fields
-rw-r--r-- | src/usr/local/www/css/pfSense.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/usr/local/www/css/pfSense.css b/src/usr/local/www/css/pfSense.css index 661ed86..c1b67fa 100644 --- a/src/usr/local/www/css/pfSense.css +++ b/src/usr/local/www/css/pfSense.css @@ -102,7 +102,7 @@ h1 a:hover, h1 a:active { } /* Zero-width optional linebreaks can help the browser to linebreak at 'good' places. - Unfortunately the two most compatible options aren't consistently supported. + Unfortunately the two most compatible options aren't consistently supported. "\00200B" or #8203; is part of unicode and widely implemented; and <wbr> is widely supported even on old browsers but not IE<5.5 and IE>7. http://stackoverflow.com/a/23759279/2238378 suggests a neat "80%" solution for broad @@ -1026,3 +1026,11 @@ svg { .colspanth { background-color: #eeeeee; } + +/* Required input elements have a title that begins with "*". This causes +Group.class.php to add <span class="element-required" to the title, which +can then be used to style required input here. Example below uses a custom +text underline, but text-color, background, font etc. could also be used */ +.element-required { + box-shadow: inset 0 0px 0 white, inset 0 -1px 0 black +} |