diff options
author | CharlyCoste <contact@ccoste.fr> | 2010-03-14 02:14:13 +0100 |
---|---|---|
committer | CharlyCoste <contact@ccoste.fr> | 2010-03-14 02:14:13 +0100 |
commit | 2eafb444e3163351093cf860e60a15068ed870e0 (patch) | |
tree | 0a0ceacdce5bcff657c4c05c93d0523832fa857b /css | |
parent | c921e5422d3c927c7ccd1c062e9fa3338834c1b7 (diff) | |
download | nextcloud-server-2eafb444e3163351093cf860e60a15068ed870e0.tar.gz nextcloud-server-2eafb444e3163351093cf860e60a15068ed870e0.zip |
"border" attribute is not a valid attribute for <img /> tags. Using proper CSS instructions instead.
Diffstat (limited to 'css')
-rwxr-xr-x | css/default.css | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/css/default.css b/css/default.css index a3cbaab3123..ede77ec0dde 100755 --- a/css/default.css +++ b/css/default.css @@ -2,6 +2,10 @@ body {background-color: #F9F9F9;} body.error {background-color: #F0F0F0;} 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;} +a img { + border:none; +} + h1 { margin-bottom:1.5em; } @@ -78,6 +82,10 @@ a#owncloud-logo span { text-decoration:none; } +.navigationitem1 img { + border:none; +} + .navigationitem1:hover { background-color: #EEEEEE; } |