diff options
author | Jose Luis Duran <jlduran@users.noreply.github.com> | 2016-08-01 12:22:53 -0300 |
---|---|---|
committer | Jared Dillard <jdillard@netgate.com> | 2016-08-04 17:03:53 -0500 |
commit | 802029ced80085e650d11c1993fbf71c0bd52e6b (patch) | |
tree | 763bb90950ccdf15b721757ad21de3a1fc50477f /src/usr/local | |
parent | 4310baaa7da0af8007a45437a65a17f94e6fb6b2 (diff) | |
download | pfsense-802029ced80085e650d11c1993fbf71c0bd52e6b.zip pfsense-802029ced80085e650d11c1993fbf71c0bd52e6b.tar.gz |
pfSense.css: Fix sortable tables' font
Diffstat (limited to 'src/usr/local')
-rw-r--r-- | src/usr/local/www/css/pfSense.css | 32 |
1 files changed, 18 insertions, 14 deletions
diff --git a/src/usr/local/www/css/pfSense.css b/src/usr/local/www/css/pfSense.css index 28ce3e0..19bce9f 100644 --- a/src/usr/local/www/css/pfSense.css +++ b/src/usr/local/www/css/pfSense.css @@ -632,7 +632,7 @@ footer a { .widget-heading-icon { display: block; - float: right; + float: right; } .widget-heading-icon .fa { @@ -661,12 +661,12 @@ textarea ul.tree{ width: auto; - padding-left : 0px; - margin-left : 0px; + padding-left: 0px; + margin-left: 0px; } ul.tree img{ - border : none; + border: none; } ul.tree, ul.tree ul { @@ -778,24 +778,28 @@ ul.tree div a { } ul.tree li .over{ - background-color : pink; + background-color: pink; } /* * End of CSS for Standard tree layout */ - table[data-sortable].sortable-theme-bootstrap thead th { +table[data-sortable].sortable-theme-bootstrap { + font-family: Roboto, sans-serif; +} + +table[data-sortable].sortable-theme-bootstrap thead th { white-space: nowrap; - } +} @media (max-width: 1199px) { .nav>li>a { padding: 14px 9px 10px 9px; } - } +} - @media (max-width: 991px) { +@media (max-width: 991px) { /* change top navbar from horizontal to vertical */ .navbar-header { float: none; @@ -837,7 +841,7 @@ ul.tree li .over{ } } - @media (max-width: 767px) { +@media (max-width: 767px) { .header { margin-bottom: 5px; } @@ -855,12 +859,12 @@ ul.tree li .over{ /** Override text-warning with something less red. */ .text-warning { - color: #ffcc00; + color: #ffcc00; } /**Suppress href links when printing */ a[href]:after { - content:normal + content: normal; } /** Text color for diff display when comapring configs */ @@ -877,7 +881,7 @@ a[href]:after { .panel-body.collapse.in>.content>.row, .panel-body.collapse.in>.form-group { - margin-right:0px; + margin-right: 0px; } /* Callouts */ @@ -943,7 +947,7 @@ a[href]:after { /* Disable 300 ms click delay so event handlers are effective. */ /* Makes posible for non-touch compatible features to work; e.g. double tap rule to edit. */ body{ - touch-action: manipulation; + touch-action: manipulation; } /* D3 Styles */ |