diff options
author | Stephen Beaver <sbeaver@netgate.com> | 2015-11-19 11:53:29 -0500 |
---|---|---|
committer | Stephen Beaver <sbeaver@netgate.com> | 2015-11-19 11:53:29 -0500 |
commit | 32e3df81fdd6b939214b19ab82a1a3d6481ce237 (patch) | |
tree | fb7b4836e821100b75c9de97b56137f3ea026ca9 | |
parent | cf3db8b45d885dd11f269838470aacaea5eff0ad (diff) | |
download | pfsense-32e3df81fdd6b939214b19ab82a1a3d6481ce237.zip pfsense-32e3df81fdd6b939214b19ab82a1a3d6481ce237.tar.gz |
Make text areas fixed width font with a tabstop of 4
-rw-r--r-- | src/usr/local/www/bootstrap/css/pfSense.css | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/usr/local/www/bootstrap/css/pfSense.css b/src/usr/local/www/bootstrap/css/pfSense.css index 9485201..8d8bffb 100644 --- a/src/usr/local/www/bootstrap/css/pfSense.css +++ b/src/usr/local/www/bootstrap/css/pfSense.css @@ -370,4 +370,13 @@ form .btn + .btn { .widget-heading-icon .fa:hover { color: #e0e0e0; -}
\ No newline at end of file +} + +/* All pfSense textareas benefit from using a fixed width font **/ +textarea +{ + font-family: consolas,monaco,roboto mono,liberation mono,courier; + font-size: 12px; + -moz-tab-size: 4; + -o-tab-size: 4; +} |