HRConvert2/Resources/HRConvert2.css
zelon88 f83c4a205a
v0.8.6 - Enabled Fonts, some op-buttons.
-v0.8.6.
-Enabled styles on GUI.
-Styled select boxes.
-Enabled $Font from the config to actually control fonts used in the GUI.
-Added a bunch of icons and credits.
-Tweak GUI element placement through the entire app.
-Refactored WET code to DRY code by removing common elements from the GUI and organizing them into header.php and footer.php.
2018-03-21 01:05:41 -04:00

20 lines
No EOL
517 B
CSS

select {
width: 140px;
padding: 5px 5px 5px 5px;
font-size: 16px;
border: 1px solid #ccc;
height: 34px;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background: url('darrow1.png') 96% / 15% no-repeat #eee; }
/* CAUTION: IE hackery ahead */
select::-ms-expand {
display: none; } /* remove default arrow in IE 10 and 11 */
/* target Internet Explorer 9 to undo the custom arrow */
@media screen and (min-width:0\0) {
select {
background:none\9;
padding: 5px\9; } }