aboutsummaryrefslogtreecommitdiffstats
path: root/mediagoblin/static
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2011-09-05 21:01:22 -0500
committerChristopher Allan Webber <cwebber@dustycloud.org>2011-09-05 21:01:22 -0500
commit677f55cc51c82c80005b0ff6658e9937133ef78b (patch)
tree22fb4f2731a11b5b20ab64987a925ef3d0607861 /mediagoblin/static
parentb7f7c13b6d70113857bac89c426d17dffc55bc6d (diff)
downloadmediagoblin-677f55cc51c82c80005b0ff6658e9937133ef78b.tar.lz
mediagoblin-677f55cc51c82c80005b0ff6658e9937133ef78b.tar.xz
mediagoblin-677f55cc51c82c80005b0ff6658e9937133ef78b.zip
A couple more delete UI tweaks
- Adjusting HTML indentation - Making the cancel button a link rather than a button (a bit missized though it seems... maybe a feature ;))
Diffstat (limited to 'mediagoblin/static')
-rw-r--r--mediagoblin/static/css/base.css12
1 files changed, 11 insertions, 1 deletions
diff --git a/mediagoblin/static/css/base.css b/mediagoblin/static/css/base.css
index 307e2970..ea54f77f 100644
--- a/mediagoblin/static/css/base.css
+++ b/mediagoblin/static/css/base.css
@@ -141,7 +141,7 @@ background-image: -moz-linear-gradient(center top , rgb(134, 212, 177), rgb(109,
/* common website elements */
-.button {
+.button, .cancel_link {
height: 32px;
min-width: 99px;
background-color: #86d4b1;
@@ -165,6 +165,16 @@ background-image: -moz-linear-gradient(center top , rgb(134, 212, 177), rgb(109,
font-weight: bold;
}
+.cancel_link {
+ background-color: #aaa;
+ background-image: -webkit-gradient(linear, left top, left bottom, from(##D2D2D2), to(#aaa));
+ background-image: -webkit-linear-gradient(top, #D2D2D2, #aaa);
+ background-image: -moz-linear-gradient(top, #D2D2D2, #aaa);
+ background-image: -ms-linear-gradient(top, #D2D2D2, #aaa);
+ background-image: -o-linear-gradient(top, #D2D2D2, #aaa);
+ background-image: linear-gradient(top, #D2D2D2, #aaa);
+}
+
.pagination{
text-align: center;
}