diff options
author | Aldo "xoen" Giambelluca <xoen@xoen.org> | 2010-06-30 14:24:36 +0200 |
---|---|---|
committer | Aldo "xoen" Giambelluca <xoen@xoen.org> | 2010-06-30 14:24:36 +0200 |
commit | 2e1da240ff53107d16e51614dae9221baf0b84ae (patch) | |
tree | 6fe66f8a4831e2bb94e6748e78ddce13cf94ade1 /css | |
parent | 8a94686b0f87927de24a29e2873dd9e17a81d4cb (diff) | |
download | nextcloud-server-2e1da240ff53107d16e51614dae9221baf0b84ae.tar.gz nextcloud-server-2e1da240ff53107d16e51614dae9221baf0b84ae.zip |
Font size now respect user preferences
This is made using em unit instead of pt for font-size.
"New" sizes are relative to the font-size choosen by the user.
Changed 9pt in 0.95em, 8pt in 0.8em and 7pt in 0.7em, tested on Firefox. This should fix zoom in/out in IE.
Diffstat (limited to 'css')
-rwxr-xr-x | css/default.php | 39 |
1 files changed, 20 insertions, 19 deletions
diff --git a/css/default.php b/css/default.php index 7d65820c42b..6500b31cb6d 100755 --- a/css/default.php +++ b/css/default.php @@ -2,12 +2,13 @@ header('Content-Type: text/css'); require_once('../inc/lib_base.php'); ?> -html,body { - background-color: #F9F9F9; - margin:0px; - height:100%; - width:100%; - position:absolute; +html, body { + background-color: #F9F9F9; + margin: 0px; + height: 100%; + width: 100%; + position: absolute; + font-size: 100%; } #mainlayout{ width:100%; @@ -47,7 +48,7 @@ html,body { body.error {background-color: #F0F0F0;} td.error{color:#FF0000; text-align:center} -body,th,td,ul,li,a,div,p,pre {color:#333333; font-family:Verdana,"Bitstream Vera Sans",Arial,Helvetica,Sans,"Bitstream Vera Serif"; font-size:9.0pt;} +body,th,td,ul,li,a,div,p,pre {color:#333333; font-family:Verdana,"Bitstream Vera Sans",Arial,Helvetica,Sans,"Bitstream Vera Serif"; font-size: 0.95em;} a img { border:none; @@ -97,22 +98,22 @@ td.nametext{ display:block; } -.nametext a, .breadcrumb a{color:#333333; font-size:8pt; font-weight:bold; text-decoration:none;} -.errortext {color:#CC3333; font-size:9pt; font-weight:bold; text-decoration:none;} -.highlighttext {color:#333333; font-size:9pt; font-weight:bold; text-decoration:none;} -.datetext {color:#333333; font-size:7pt;} +.nametext a, .breadcrumb a{color:#333333; font-size: 0.8em; font-weight:bold; text-decoration:none;} +.errortext {color:#CC3333; font-size: 0.95em; font-weight:bold; text-decoration:none;} +.highlighttext {color:#333333; font-size: 0.95em; font-weight:bold; text-decoration:none;} +.datetext {color:#333333; font-size: 0.7em;} .sizetext{ color:#333333; - font-size:7pt; + font-size: 0.7em; } -.footer {color:#999999; text-align:center; font-size:9pt; margin-top:4em;} +.footer {color:#999999; text-align:center; font-size: 0.95em; margin-top:4em;} .footer a {color:#999999; text-decoration:none;} -.hint {color:#AAAAAA; text-align:center; font-size:8pt; margin-top:10px;} -.hint a{color:#AAAAAA; text-align:center; font-size:8pt;} +.hint {color:#AAAAAA; text-align:center; font-size: 0.8em; margin-top:10px;} +.hint a{color:#AAAAAA; text-align:center; font-size: 0.8em;} .formstyle { font-weight:normal; - font-size: 8.0pt; + font-size: 0.8em; color: #555555; background-color: #FFFFFF; border: 1px solid #DDDDDD; @@ -140,7 +141,7 @@ td.nametext{ .navigationitem1 { background-color: #EEEEEE; color:#555555; - font-size:9pt; + font-size: 0.95em; font-weight:bold; } @@ -173,13 +174,13 @@ td.nametext{ .navigationitem a { text-decoration:none; color: #333333; - font-size: 8.0pt; + font-size: 0.8em; } .navigationitemselected a { text-decoration:none; color: #333333; - font-size: 8.0pt; + font-size: 0.8em; font-weight:bold; } |