Commit ab28e085 by Kyle Fiedler

Added new button classes

parent e61b6842
...@@ -53,6 +53,18 @@ input[type="password"] { ...@@ -53,6 +53,18 @@ input[type="password"] {
} }
} }
input[type="reset"],
input[type="submit"],
input[type="button"],
button,
.button {
@extend .gray-button;
form & {
@extend .gray-button;
}
}
img { img {
max-width: 100%; max-width: 100%;
......
...@@ -6,28 +6,34 @@ h1.top-header { ...@@ -6,28 +6,34 @@ h1.top-header {
padding-bottom: lh(); padding-bottom: lh();
} }
.light-button, a.light-button { .button-reset {
border: 1px solid #ccc;
@include border-radius(3px);
@include box-shadow(inset 0 1px 0 #fff);
color: #666;
cursor: pointer;
font: 400 $body-font-size $body-font-family;
@include linear-gradient(#fff, lighten(#888, 40%));
padding: 4px 8px;
text-decoration: none;
text-shadow: none;
text-transform: none; text-transform: none;
letter-spacing: 0; letter-spacing: 0;
-webkit-font-smoothing: antialiased;
&:hover, &:focus { &:hover {
border: 1px solid #ccc;
@include linear-gradient(#fff, lighten(#888, 37%));
text-decoration: none; text-decoration: none;
} }
} }
.light-button, a.light-button, // only used in askbot as classes
.gray-button {
@include button(simple, #eee);
@extend .button-reset;
font-size: em(13);
}
.blue-button {
@include button(simple, $blue);
@extend .button-reset;
font-size: em(13);
}
.pink-button {
@include button(simple, $pink);
@extend .button-reset;
font-size: em(13);
}
.content { .content {
@include box-sizing(border-box); @include box-sizing(border-box);
display: table-cell; display: table-cell;
......
...@@ -43,8 +43,8 @@ div.discussion-wrapper aside { ...@@ -43,8 +43,8 @@ div.discussion-wrapper aside {
width: 27%; width: 27%;
float: right; float: right;
text-align: center; text-align: center;
padding-left: 0; padding: 4px 0;
padding-right: 0; text-transform: capitalize;
} }
input[type="text"] { input[type="text"] {
...@@ -300,7 +300,7 @@ div.discussion-wrapper aside { ...@@ -300,7 +300,7 @@ div.discussion-wrapper aside {
border-top: 0; border-top: 0;
a { a {
@extend .light-button; @extend .gray-button;
@include box-sizing(border-box); @include box-sizing(border-box);
display: block; display: block;
text-align: center; text-align: center;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment