discourse/app/assets/stylesheets/common/components/buttons.css.scss

185 lines
3.2 KiB
SCSS
Raw Normal View History

2013-02-05 14:16:51 -05:00
// --------------------------------------------------
// Buttons
// --------------------------------------------------
// Base
// --------------------------------------------------
.btn {
display: inline-block;
margin: 0;
padding: 6px 12px;
font-weight: 500;
font-size: 1em;
2013-02-05 14:16:51 -05:00
line-height: 18px;
text-align: center;
cursor: pointer;
2014-08-06 09:31:13 -04:00
transition: all .25s;
2013-02-05 14:16:51 -05:00
&:active {
text-shadow: none;
}
&[disabled], &.disabled {
2013-02-05 14:16:51 -05:00
cursor: default;
opacity: 0.4;
}
2013-12-09 16:27:49 -05:00
.fa {
2013-02-05 14:16:51 -05:00
margin-right: 7px;
}
&.no-text {
2013-12-09 16:27:49 -05:00
.fa {
margin-right: 0;
line-height: 10px;
}
}
2013-02-05 14:16:51 -05:00
}
.btn.hidden {
display: none;
}
2013-02-05 14:16:51 -05:00
// Default button
// --------------------------------------------------
.btn {
2013-10-28 12:25:52 -04:00
border: none;
color: $primary;
2013-10-28 12:25:52 -04:00
font-weight: normal;
2014-08-06 09:31:13 -04:00
background: dark-light-diff($primary, $secondary, 90%, -65%);
2013-02-05 14:16:51 -05:00
&[href] {
color: $primary;
2013-02-05 14:16:51 -05:00
}
&:hover {
2014-08-06 09:31:13 -04:00
background: dark-light-diff($primary, $secondary, 65%, -75%);
2013-10-28 12:25:52 -04:00
color: #fff;
2013-02-05 14:16:51 -05:00
}
&[disabled] {
background: dark-light-diff($primary, $secondary, 90%, -60%);
&:hover { color: scale-color($primary, $lightness: 70%); }
cursor: not-allowed;
2013-02-05 14:16:51 -05:00
}
}
// Buttons used in admin panel
// --------------------------------------------------
.btn-admin {
text-align:left;
}
2013-02-05 14:16:51 -05:00
// Primary button
// --------------------------------------------------
.btn-primary {
2013-10-28 12:25:52 -04:00
border: none;
color: $secondary;
font-weight: normal;
color: #fff;
background: $tertiary;
2013-10-28 12:25:52 -04:00
2013-02-05 14:16:51 -05:00
&[href] {
color: $secondary;
2013-02-05 14:16:51 -05:00
}
&:hover {
color: #fff;
background: scale-color($tertiary, $lightness: -20%);
2013-02-05 14:16:51 -05:00
}
&:active {
@include linear-gradient(scale-color($tertiary, $lightness: -20%), scale-color($tertiary, $lightness: -10%));
color: #fff;
2013-02-05 14:16:51 -05:00
}
&[disabled] {
background: $tertiary;
2013-02-05 14:16:51 -05:00
}
2013-02-14 02:56:13 -05:00
}
2013-02-14 02:56:13 -05:00
// Danger button
// --------------------------------------------------
2013-02-14 02:56:13 -05:00
.btn-danger {
color: $secondary;
font-weight: normal;
background: $danger;
2013-02-14 02:56:13 -05:00
&[href] {
color: $secondary;
2013-02-14 02:56:13 -05:00
}
&:hover{
background: scale-color($danger, $lightness: -20%);
2013-02-14 02:56:13 -05:00
}
&:active {
@include linear-gradient(scale-color($danger, $lightness: -20%), $danger);
2013-02-14 02:56:13 -05:00
}
&[disabled] {
background: $danger;
2013-02-14 02:56:13 -05:00
}
2013-02-05 14:16:51 -05:00
}
// Social buttons
// --------------------------------------------------
.btn-social {
color: $secondary;
text-shadow: 0 1px 0 rgba($primary, 0.2);
box-shadow: inset 0 1px 0 rgba(0,0,0, 0.1);
2013-02-05 14:16:51 -05:00
&[href] {
color: $secondary;
2013-02-05 14:16:51 -05:00
}
&:before {
margin-right: 7px;
font-family: zocial;
line-height: 0.9;
}
&.google, &.google_oauth2 {
2013-02-05 14:16:51 -05:00
background: $google;
&:before {
content: "G";
}
}
&.facebook {
background: $facebook;
&:before {
content: "f";
}
}
2013-05-23 16:40:50 -04:00
&.cas {
background: $cas;
}
2013-02-05 14:16:51 -05:00
&.twitter {
background: $twitter;
&:before {
content: "T";
}
}
&.yahoo {
background: $yahoo;
&:before {
content: "Y";
}
}
&.github {
background: $github;
&:before {
content: "g";
}
}
2013-02-05 14:16:51 -05:00
}
// Button Sizes
// --------------------------------------------------
// Small
.btn-small {
padding: 3px 6px;
font-size: 0.857em;
2013-02-05 14:16:51 -05:00
line-height: 16px;
}
// Large
.btn-large {
padding: 9px 18px;
font-size: 1.143em;
2013-02-05 14:16:51 -05:00
line-height: 20px;
2013-02-14 02:56:13 -05:00
}