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