aboutsummaryrefslogtreecommitdiff
path: root/views/default/css/admin.php
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-14 22:26:51 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-14 22:26:51 +0000
commit0cb6ced20d3e54d1884ee5ab38c24e57246987dc (patch)
treef765597de0de10309923c81ef178e46232d83588 /views/default/css/admin.php
parent3e699017da34b994da17978b905e985c1927cec0 (diff)
downloadelgg-0cb6ced20d3e54d1884ee5ab38c24e57246987dc.tar.gz
elgg-0cb6ced20d3e54d1884ee5ab38c24e57246987dc.tar.bz2
Refs #3109: More CSS cleanup. Fixes bugs introduced by last cleanup where background-color: was being used instead of background:
git-svn-id: http://code.elgg.org/elgg/trunk@8707 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/css/admin.php')
-rw-r--r--views/default/css/admin.php21
1 files changed, 6 insertions, 15 deletions
diff --git a/views/default/css/admin.php b/views/default/css/admin.php
index c948201e6..c90f1167e 100644
--- a/views/default/css/admin.php
+++ b/views/default/css/admin.php
@@ -819,10 +819,7 @@ a.elgg-longtext-control {
text-shadow:1px 1px 0px black;
text-decoration:none;
border: 1px solid #0054A7;
- background-color:#0054A7;
- background-image: url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png);
- background-repeat: repeat-x;
- background-position: left 10px;
+ background-color: #0054A7 url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png) repeat-x left 10px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
@@ -841,15 +838,12 @@ a.elgg-longtext-control {
color: white;
border-color: #333;
text-decoration:none;
- background-color:#333;
- background-image: url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png);
- background-repeat: repeat-x;
- background-position: left 10px;
+ background-color: #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;
background-color: #f5f5f5;
- color:#333;
+ color: #333;
}
.admin_area input[type="submit"] {
font-size: 14px;
@@ -858,10 +852,7 @@ a.elgg-longtext-control {
text-shadow:1px 1px 0px black;
text-decoration:none;
border: 1px solid #0054A7;
- background-color:#0054A7;
- background-image: url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png);
- background-repeat: repeat-x;
- background-position: 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;
@@ -880,14 +871,14 @@ a.elgg-longtext-control {
.admin_area input[type="submit"]:hover {
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 .elgg-button-cancel {
font-size: 14px;
font-weight: bold;
text-decoration:none;
color: #333;
- background-color:#ddd url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png) repeat-x left 10px;
+ background: #ddd url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png) repeat-x left 10px;
border: 1px solid #999;
-webkit-border-radius: 5px;