aboutsummaryrefslogtreecommitdiff
path: root/views/default/css/elements/buttons.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-05 22:29:24 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-05 22:29:24 +0000
commit89ce06e66737761f99949a32729f5a759630ce49 (patch)
treeeeeb44068b41a17d1fa29b24a1f76353bf0c407f /views/default/css/elements/buttons.php
parent89cb69c643fc244bad8836a044cf47a719afb6e9 (diff)
downloadelgg-89ce06e66737761f99949a32729f5a759630ce49.tar.gz
elgg-89ce06e66737761f99949a32729f5a759630ce49.tar.bz2
cleared up confusion over elgg-icon-delete and elgg-button-delete
git-svn-id: http://code.elgg.org/elgg/trunk@8594 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/css/elements/buttons.php')
-rw-r--r--views/default/css/elements/buttons.php41
1 files changed, 18 insertions, 23 deletions
diff --git a/views/default/css/elements/buttons.php b/views/default/css/elements/buttons.php
index 71a54d5b1..7937af801 100644
--- a/views/default/css/elements/buttons.php
+++ b/views/default/css/elements/buttons.php
@@ -23,6 +23,9 @@
-webkit-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.40);
-moz-box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.40);
}
+a.elgg-button {
+ padding: 3px 6px;
+}
/* Submit: This button should convey, "you're about to take some definitive action" */
.elgg-button-submit {
@@ -56,7 +59,7 @@
border: 1px solid #999999;
}
.elgg-button-cancel:hover {
- color: white;
+ color: #444444;
background-color: #999999;
background-position: left 10px;
text-decoration: none;
@@ -95,28 +98,20 @@
/* Delete: This button should convey "be careful before you click me" */
.elgg-button-delete {
- width:14px;
- height:14px;
- margin:0;
- padding:0;
- border:0;
- float:right;
- -webkit-box-shadow: 0 0 0;
- -moz-box-shadow: 0 0 0;
- -webkit-border-radius: 0;
- -moz-border-radius: 0;
-}
-.elgg-button-delete a {
- display:block;
- cursor: pointer;
- width:14px;
- height:14px;
- background: url("<?php echo elgg_get_site_url(); ?>_graphics/elgg_sprites.png") no-repeat -200px top;
- text-indent: -9000px;
- text-align: left;
+ color: #bbbbbb;
+ text-decoration: none;
+ border: 1px solid #333333;
+ background-color: #555555;
+ background-image: url(<?php echo elgg_get_site_url(); ?>_graphics/button_graduation.png);
+ background-repeat: repeat-x;
+ background-position: left 10px;
+ text-shadow: 1px 1px 0px black;
}
-.elgg-button-delete a:hover {
- background-position: -200px -16px;
+.elgg-button-delete:hover {
+ color: #999999;
+ background-color: #333333;
+ background-position: left 10px;
+ text-decoration: none;
}
.elgg-button-dropdown {
@@ -157,4 +152,4 @@
-webkit-border-radius:4px 4px 0 0;
-moz-border-radius:4px 4px 0 0;
border-radius:4px 4px 0 0;
-} \ No newline at end of file
+}