aboutsummaryrefslogtreecommitdiffstats
path: root/public/stylesheets
diff options
context:
space:
mode:
authorLouise Crow <louise.crow@gmail.com>2013-02-14 18:56:16 +0000
committerLouise Crow <louise.crow@gmail.com>2013-02-14 19:03:40 +0000
commitbc0cc811e80143d0255d86433a80a823d1141dd0 (patch)
tree0c5005b2b03e540d8ab562da06539414709fbc18 /public/stylesheets
parent6fa9c17c7cd5551489a77f6e89543b7886be51d4 (diff)
parent2c5749d4d92e6601856cef6f7e2201d06d885183 (diff)
Merge branch 'release/0.7'0.7.00.7
Diffstat (limited to 'public/stylesheets')
-rw-r--r--public/stylesheets/main.css23
1 files changed, 21 insertions, 2 deletions
diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css
index 0bf88b0f2..1a6aa1d84 100644
--- a/public/stylesheets/main.css
+++ b/public/stylesheets/main.css
@@ -1292,9 +1292,23 @@ font-size:1.1em !important;
margin:0 !important;
}
+/* Remove button padding in FF */
+button::-moz-focus-inner,
+input[type="button"]::-moz-focus-inner,
+input[type="submit"]::-moz-focus-inner {
+ border:0;
+ padding:0;
+}
+
form input[type=submit],a.link_button_green,a.link_button_green_large {
-background:url(/images/button-gradient.png);
color:#FFF;
+background-color: #8cc63f; /* fallback color if gradients are not supported */
+background-image: url(/images/button-gradient.png);
+background-image: -webkit-linear-gradient(top, #8cc63f, #6b9731); /* For Chrome and Safari */
+background-image: -moz-linear-gradient(top, #8cc63f, #6b9731); /* For old Fx (3.6 to 15) */
+background-image: -ms-linear-gradient(top, #8cc63f, #6b9731); /* For pre-releases of IE 10*/
+background-image: -o-linear-gradient(top, #8cc63f, #6b9731); /* For old Opera (11.1 to 12.0) */
+background-image: linear-gradient(to bottom, #8cc63f, #6b9731); /* Standard syntax; must be last */
text-decoration:none;
display:inline-block;
line-height:18px;
@@ -1311,7 +1325,12 @@ padding:5px 6px;
color:white;
}
a.link_button_green_large {
-background:url(/images/button-gradient-large.png);
+background-image: url(/images/button-gradient-large.png);
+background-image: -webkit-linear-gradient(top, #8cc63f, #6b9731); /* For Chrome and Safari */
+background-image: -moz-linear-gradient(top, #8cc63f, #6b9731); /* For old Fx (3.6 to 15) */
+background-image: -ms-linear-gradient(top, #8cc63f, #6b9731); /* For pre-releases of IE 10*/
+background-image: -o-linear-gradient(top, #8cc63f, #6b9731); /* For old Opera (11.1 to 12.0) */
+background-image: linear-gradient(to bottom, #8cc63f, #6b9731); /* Standard syntax; must be last */
font-size:2em;
line-height:22px;
padding-bottom:7px;