BookStack/resources/assets/sass/_buttons.scss

133 lines
2.4 KiB
SCSS
Raw Normal View History

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