mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
c6c073c750
Co-authored-by: Anton <anton@scinote.net>
236 lines
4 KiB
SCSS
236 lines
4 KiB
SCSS
// scss-lint:disable NestingDepth
|
|
|
|
.btn{
|
|
@include font-button;
|
|
animation-timing-function: $timing-function-sharp;
|
|
border-radius: $border-radius-default;
|
|
cursor: pointer;
|
|
display: inline-block;
|
|
height: 36px;
|
|
line-height: 20px;
|
|
outline: 0;
|
|
padding: 7px 16px;
|
|
position: relative;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
transition: .3s;
|
|
user-select: none;
|
|
|
|
.fas,
|
|
img {
|
|
color: inherit;
|
|
margin-right: .25em;
|
|
}
|
|
|
|
&:hover {
|
|
text-decoration: none;
|
|
}
|
|
|
|
&:active,
|
|
&.active {
|
|
box-shadow: none;
|
|
text-decoration: none;
|
|
}
|
|
|
|
&:focus {
|
|
outline: 0;
|
|
text-decoration: none;
|
|
}
|
|
|
|
&.btn-primary {
|
|
background: $brand-primary;
|
|
border: 1px solid $brand-primary;
|
|
color: $color-white;
|
|
|
|
&:hover {
|
|
background: $brand-primary-hover;
|
|
color: $color-white;
|
|
}
|
|
|
|
&:active,
|
|
&.active {
|
|
background: $brand-primary-press;
|
|
color: $color-white;
|
|
}
|
|
|
|
&:focus {
|
|
box-shadow: 0 0 0 1px $brand-complementary;
|
|
color: $color-white;
|
|
}
|
|
}
|
|
|
|
&.btn-secondary {
|
|
background: $color-white;
|
|
border: $border-default;
|
|
color: $color-volcano;
|
|
|
|
&:hover {
|
|
background: $color-concrete;
|
|
border: $border-secondary;
|
|
color: $color-volcano;
|
|
}
|
|
|
|
&:active,
|
|
&.active {
|
|
background: $color-alto;
|
|
border: $border-secondary;
|
|
color: $color-volcano;
|
|
}
|
|
|
|
&:focus {
|
|
box-shadow: 0 0 0 1px $brand-focus;
|
|
color: $color-volcano;
|
|
}
|
|
}
|
|
|
|
&.btn-light {
|
|
background: transparent;
|
|
border: $border-transparent;
|
|
color: $color-volcano;
|
|
|
|
&:hover {
|
|
background: $color-concrete;
|
|
border: $border-transparent;
|
|
color: $color-volcano;
|
|
}
|
|
|
|
&:active,
|
|
&.active {
|
|
background: $color-alto;
|
|
border: $border-transparent;
|
|
color: $color-volcano;
|
|
}
|
|
|
|
&:focus {
|
|
box-shadow: 0 0 0 1px $brand-focus;
|
|
color: $color-volcano;
|
|
}
|
|
}
|
|
|
|
&.btn-light-link {
|
|
background: transparent;
|
|
border: $border-transparent;
|
|
color: $brand-primary;
|
|
|
|
&:hover {
|
|
background: $color-concrete;
|
|
border: $border-transparent;
|
|
color: $brand-primary;
|
|
}
|
|
|
|
&:active,
|
|
&.active {
|
|
background: $color-alto;
|
|
border: $border-transparent;
|
|
color: $brand-primary;
|
|
}
|
|
|
|
&:focus {
|
|
box-shadow: 0 0 0 1px $brand-focus;
|
|
color: $brand-primary;
|
|
}
|
|
}
|
|
|
|
&.btn-danger {
|
|
background: $brand-danger;
|
|
border: $border-danger;
|
|
color: $color-white;
|
|
|
|
&:hover {
|
|
background: $brand-danger-hover;
|
|
color: $color-white;
|
|
}
|
|
|
|
&:active,
|
|
&.active {
|
|
background: $brand-danger-press;
|
|
color: $color-white;
|
|
}
|
|
|
|
&:focus {
|
|
box-shadow: 0 0 0 1px $brand-focus;
|
|
color: $color-white;
|
|
}
|
|
}
|
|
|
|
&.btn-dark-background {
|
|
background: $color-white;
|
|
border: $border-default;
|
|
color: $brand-primary;
|
|
|
|
&:hover {
|
|
background: $color-concrete;
|
|
color: $brand-primary-hover;
|
|
}
|
|
|
|
&:active,
|
|
&.active {
|
|
background: $color-alto;
|
|
color: $brand-primary-press;
|
|
}
|
|
|
|
&:focus {
|
|
box-shadow: 0 0 0 1px $brand-focus;
|
|
color: $brand-primary;
|
|
}
|
|
}
|
|
|
|
&.icon-btn {
|
|
padding: 7px;
|
|
width: 36px;
|
|
|
|
.fas {
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
&.btn-large {
|
|
font-size: $font-size-h2;
|
|
height: 3.1em;
|
|
padding: 1em 3em;
|
|
}
|
|
|
|
&.disabled,
|
|
&:disabled {
|
|
color: $color-silver-chalice;
|
|
cursor: auto;
|
|
opacity: .5;
|
|
pointer-events: none;
|
|
|
|
&.btn-primary,
|
|
&.btn-danger {
|
|
background: $color-alto;
|
|
border: $border-tertiary;
|
|
|
|
&:hover {
|
|
border: $border-tertiary;
|
|
color: $color-silver-chalice;
|
|
}
|
|
}
|
|
|
|
&.btn-secondary,
|
|
&.btn-light,
|
|
&.btn-light-link,
|
|
&.btn-dark-background {
|
|
background: $color-white;
|
|
|
|
&:hover {
|
|
color: $color-silver-chalice;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.sci-btn-group {
|
|
display: inline-block;
|
|
position: relative;
|
|
|
|
.btn {
|
|
float: left;
|
|
margin: 2px 4px 2px 0;
|
|
|
|
&:nth-last-child(1) {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
}
|