diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-14 22:34:17 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-14 22:34:17 +0000 |
commit | eaf59ee54011c3dcc4ee7e344e0dd06160fd9bf4 (patch) | |
tree | 57002b5bc70efed419d3f41f190e755af90da1d0 /views/default/css/admin.php | |
parent | 0cb6ced20d3e54d1884ee5ab38c24e57246987dc (diff) | |
download | elgg-eaf59ee54011c3dcc4ee7e344e0dd06160fd9bf4.tar.gz elgg-eaf59ee54011c3dcc4ee7e344e0dd06160fd9bf4.tar.bz2 |
Refs #3109: Fixes 3 more instances of background-color being used when background should be
git-svn-id: http://code.elgg.org/elgg/trunk@8708 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/css/admin.php')
-rw-r--r-- | views/default/css/admin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/default/css/admin.php b/views/default/css/admin.php index c90f1167e..74e089c00 100644 --- a/views/default/css/admin.php +++ b/views/default/css/admin.php @@ -819,7 +819,7 @@ a.elgg-longtext-control { text-shadow:1px 1px 0px black; text-decoration:none; border: 1px solid #0054A7; - background-color: #0054A7 url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png) repeat-x left 10px; + background: #0054A7 url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png) repeat-x left 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; @@ -838,7 +838,7 @@ a.elgg-longtext-control { color: white; border-color: #333; text-decoration:none; - background-color: #333 url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png) repeat-x left 10px; + background: #333 url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png) repeat-x left 10px; } .admin_area input[type="password"]:focus { border: solid 1px #666; |