2019-04-07 06:34:40 -04:00
|
|
|
button {
|
2019-08-24 13:26:28 -04:00
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
2019-04-07 06:34:40 -04:00
|
|
|
font-size: 100%;
|
|
|
|
}
|
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;
|
2019-08-25 07:40:04 -04:00
|
|
|
border-radius: 2px;
|
2015-07-12 15:01:42 -04:00
|
|
|
cursor: pointer;
|
2019-08-25 07:40:04 -04:00
|
|
|
transition: background-color ease-in-out 120ms,
|
|
|
|
filter ease-in-out 120ms,
|
|
|
|
box-shadow ease-in-out 120ms;
|
2019-04-07 06:34:40 -04:00
|
|
|
box-shadow: none;
|
2019-08-25 07:40:04 -04:00
|
|
|
background-color: var(--color-primary);
|
2019-04-07 06:34:40 -04:00
|
|
|
color: #FFF;
|
|
|
|
text-transform: uppercase;
|
2019-08-25 07:40:04 -04:00
|
|
|
border: 1px solid var(--color-primary);
|
2019-04-07 06:34:40 -04:00
|
|
|
vertical-align: top;
|
2020-04-10 17:38:29 -04:00
|
|
|
@include lightDark(filter, none, saturate(0.8) brightness(0.8));
|
2019-08-25 07:40:04 -04:00
|
|
|
&:hover, &:focus, &:active {
|
|
|
|
background-color: var(--color-primary);
|
2019-04-07 06:34:40 -04:00
|
|
|
text-decoration: none;
|
2019-08-25 07:40:04 -04:00
|
|
|
color: #FFFFFF;
|
|
|
|
}
|
|
|
|
&:hover {
|
2020-04-10 17:38:29 -04:00
|
|
|
@include lightDark(box-shadow, $bs-light, $bs-dark);
|
2019-08-25 07:40:04 -04:00
|
|
|
filter: brightness(110%);
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
2019-08-24 13:26:28 -04:00
|
|
|
&:focus {
|
|
|
|
outline: 1px dotted currentColor;
|
|
|
|
outline-offset: -$-xs;
|
2019-08-25 07:40:04 -04:00
|
|
|
box-shadow: none;
|
|
|
|
filter: brightness(90%);
|
2019-08-24 13:26:28 -04:00
|
|
|
}
|
2019-04-07 06:34:40 -04:00
|
|
|
&:active {
|
2019-08-24 13:26:28 -04:00
|
|
|
outline: 0;
|
2015-08-08 15:05:30 -04:00
|
|
|
}
|
2015-07-12 15:01:42 -04:00
|
|
|
}
|
2019-08-25 07:40:04 -04:00
|
|
|
|
2017-08-26 08:24:55 -04:00
|
|
|
.button.outline {
|
|
|
|
background-color: transparent;
|
2020-04-10 17:38:29 -04:00
|
|
|
@include lightDark(color, #666, #aaa);
|
2019-08-25 07:40:04 -04:00
|
|
|
fill: currentColor;
|
|
|
|
border: 1px solid #CCC;
|
2017-08-26 08:24:55 -04:00
|
|
|
&:hover, &:focus, &:active {
|
2019-08-25 07:40:04 -04:00
|
|
|
border: 1px solid #CCC;
|
2017-08-26 08:24:55 -04:00
|
|
|
box-shadow: none;
|
2019-08-25 07:40:04 -04:00
|
|
|
background-color: #F2F2F2;
|
2020-04-10 17:38:29 -04:00
|
|
|
@include lightDark(background-color, #f2f2f2, #555);
|
2019-08-25 07:40:04 -04:00
|
|
|
filter: none;
|
|
|
|
}
|
|
|
|
&:active {
|
|
|
|
border-color: #BBB;
|
|
|
|
background-color: #DDD;
|
|
|
|
color: #666;
|
|
|
|
box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.1);
|
2017-08-26 08:24:55 -04:00
|
|
|
}
|
2019-04-07 06:34:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.button + .button {
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-start: $-s;
|
2019-04-07 06:34:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
2019-08-25 07:40:04 -04:00
|
|
|
color: var(--color-primary);
|
2020-04-11 10:48:08 -04:00
|
|
|
@include whenDark {
|
|
|
|
color: #AAA;
|
|
|
|
}
|
2019-08-25 07:40:04 -04:00
|
|
|
&:active {
|
2015-09-02 13:26:33 -04:00
|
|
|
outline: 0;
|
|
|
|
}
|
2016-05-14 15:02:00 -04:00
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2019-08-25 07:40:04 -04:00
|
|
|
&:hover, &:focus {
|
|
|
|
color: var(--color-primary);
|
|
|
|
fill: var(--color-primary);
|
|
|
|
}
|
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%;
|
2020-04-05 08:07:19 -04:00
|
|
|
text-align: start;
|
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 {
|
2020-04-05 08:07:19 -04:00
|
|
|
margin-inline-end: 0;
|
2015-10-10 13:57:52 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-05 10:28:53 -05:00
|
|
|
.button.svg {
|
2020-04-05 08:07:19 -04:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: $-s $-m;
|
|
|
|
padding-bottom: ($-s - 2px);
|
2021-05-08 06:49:18 -04:00
|
|
|
width: 100%;
|
2017-02-05 10:28:53 -05:00
|
|
|
svg {
|
|
|
|
display: inline-block;
|
|
|
|
width: 24px;
|
2018-03-25 10:52:48 -04:00
|
|
|
height: 24px;
|
2020-04-05 08:07:19 -04:00
|
|
|
bottom: auto;
|
|
|
|
margin-inline-end: $-m;
|
2017-02-05 10:28:53 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-01 15:36:22 -04:00
|
|
|
.button[disabled] {
|
|
|
|
background-color: #BBB;
|
|
|
|
cursor: default;
|
2019-08-25 07:40:04 -04:00
|
|
|
border-color: #CCC;
|
2016-09-01 15:36:22 -04:00
|
|
|
&:hover {
|
|
|
|
background-color: #BBB;
|
|
|
|
cursor: default;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
2017-01-21 09:56:47 -05:00
|
|
|
}
|