2019-04-07 06:34:40 -04:00
|
|
|
button {
|
|
|
|
font-size: 100%;
|
|
|
|
}
|
2015-07-12 15:01:42 -04:00
|
|
|
|
|
|
|
@mixin generate-button-colors($textColor, $backgroundColor) {
|
|
|
|
background-color: $backgroundColor;
|
|
|
|
color: $textColor;
|
2018-02-17 08:30:52 -05:00
|
|
|
fill: $textColor;
|
2017-08-26 09:36:48 -04:00
|
|
|
border: 1px solid $backgroundColor;
|
2015-07-12 15:01:42 -04:00
|
|
|
&:hover {
|
|
|
|
background-color: lighten($backgroundColor, 8%);
|
|
|
|
color: $textColor;
|
|
|
|
}
|
|
|
|
&:active {
|
|
|
|
background-color: darken($backgroundColor, 8%);
|
|
|
|
}
|
2015-10-22 15:23:39 -04:00
|
|
|
&:focus {
|
|
|
|
background-color: lighten($backgroundColor, 4%);
|
|
|
|
box-shadow: $bs-light;
|
|
|
|
color: $textColor;
|
|
|
|
}
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Button Specific Variables
|
2015-08-30 12:53:30 -04:00
|
|
|
$button-border-radius: 2px;
|
2015-07-12 15:01:42 -04:00
|
|
|
|
2019-04-07 06:34:40 -04:00
|
|
|
.button {
|
2015-07-12 15:01:42 -04:00
|
|
|
text-decoration: none;
|
2019-02-03 08:45:45 -05:00
|
|
|
font-size: 0.85rem;
|
2015-07-12 15:01:42 -04:00
|
|
|
line-height: 1.4em;
|
2017-08-26 08:24:55 -04:00
|
|
|
padding: $-xs*1.3 $-m;
|
2019-02-02 10:49:57 -05:00
|
|
|
margin-top: $-xs;
|
|
|
|
margin-bottom: $-xs;
|
2015-07-12 15:01:42 -04:00
|
|
|
display: inline-block;
|
2017-08-26 08:24:55 -04:00
|
|
|
font-weight: 400;
|
2015-07-12 15:01:42 -04:00
|
|
|
outline: 0;
|
|
|
|
border-radius: $button-border-radius;
|
|
|
|
cursor: pointer;
|
2019-04-07 06:34:40 -04:00
|
|
|
transition: background-color ease-in-out 120ms, box-shadow ease-in-out 120ms;
|
|
|
|
box-shadow: none;
|
|
|
|
background-color: $primary;
|
|
|
|
color: #FFF;
|
|
|
|
fill: #FFF;
|
|
|
|
text-transform: uppercase;
|
|
|
|
border: 1px solid $primary;
|
|
|
|
vertical-align: top;
|
|
|
|
&:hover, &:focus {
|
|
|
|
text-decoration: none;
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
2019-04-07 06:34:40 -04:00
|
|
|
&:active {
|
|
|
|
background-color: darken($primary, 8%);
|
2015-08-08 15:05:30 -04:00
|
|
|
}
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
2019-04-07 06:34:40 -04:00
|
|
|
.button.primary {
|
|
|
|
@include generate-button-colors(#FFFFFF, $primary);
|
2019-02-03 08:45:45 -05:00
|
|
|
}
|
2017-08-26 08:24:55 -04:00
|
|
|
.button.outline {
|
|
|
|
background-color: transparent;
|
|
|
|
color: #888;
|
2018-03-18 11:35:04 -04:00
|
|
|
fill: #888;
|
2017-08-26 08:24:55 -04:00
|
|
|
border: 1px solid #DDD;
|
|
|
|
&:hover, &:focus, &:active {
|
|
|
|
box-shadow: none;
|
|
|
|
background-color: #EEE;
|
|
|
|
}
|
2019-04-07 06:34:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.button + .button {
|
|
|
|
margin-left: $-s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button.small {
|
|
|
|
font-size: 0.75rem;
|
|
|
|
padding: $-xs*1.2 $-s;
|
2017-08-26 08:24:55 -04:00
|
|
|
}
|
|
|
|
|
2015-09-02 13:26:33 -04:00
|
|
|
.text-button {
|
2019-04-07 06:34:40 -04:00
|
|
|
cursor: pointer;
|
2015-09-02 13:26:33 -04:00
|
|
|
background-color: transparent;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
border: none;
|
2017-08-19 10:33:22 -04:00
|
|
|
user-select: none;
|
2019-02-03 08:45:45 -05:00
|
|
|
font-size: 0.75rem;
|
2019-04-07 06:34:40 -04:00
|
|
|
line-height: 1.4em;
|
2015-09-02 13:26:33 -04:00
|
|
|
&:focus, &:active {
|
|
|
|
outline: 0;
|
|
|
|
}
|
2016-05-14 15:02:00 -04:00
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
2015-07-30 17:27:35 -04:00
|
|
|
|
2015-08-05 15:59:39 -04:00
|
|
|
.button.block {
|
|
|
|
width: 100%;
|
2019-04-07 06:34:40 -04:00
|
|
|
text-align: left;
|
2015-08-05 15:59:39 -04:00
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2015-10-10 13:57:52 -04:00
|
|
|
.button.icon {
|
2018-02-17 14:49:00 -05:00
|
|
|
.svg-icon {
|
|
|
|
margin-right: 0;
|
2015-10-10 13:57:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-05 10:28:53 -05:00
|
|
|
.button.svg {
|
|
|
|
svg {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
left: $-m;
|
|
|
|
top: $-s - 2px;
|
|
|
|
width: 24px;
|
2018-03-25 10:52:48 -04:00
|
|
|
height: 24px;
|
2017-02-05 10:28:53 -05:00
|
|
|
}
|
2019-04-07 06:34:40 -04:00
|
|
|
padding: $-s $-m ($-s - 2px) ($-m*2 + 24px);
|
2017-02-05 10:28:53 -05:00
|
|
|
}
|
|
|
|
|
2016-09-01 15:36:22 -04:00
|
|
|
.button[disabled] {
|
|
|
|
background-color: #BBB;
|
|
|
|
cursor: default;
|
|
|
|
&:hover {
|
|
|
|
background-color: #BBB;
|
|
|
|
cursor: default;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2017-01-21 09:56:47 -05:00
|
|
|
}
|