meshviewer/scss/modules/_button.scss

78 lines
1.5 KiB
SCSS
Raw Normal View History

button {
background: $color-white;
border: 0;
border-radius: .9em;
color: $color-black;
cursor: pointer;
font-family: $font-family-icons;
2016-06-19 11:14:13 +00:00
font-size: $button-font-size;
height: 1.8em;
2017-01-02 23:19:36 +00:00
line-height: 1.95;
opacity: .7;
outline: none;
padding: 0;
2017-02-11 16:26:57 +00:00
transition: box-shadow .5s, background-color .5s, color .5s;
width: 1.8em;
&.active {
2017-02-11 16:26:57 +00:00
box-shadow: 0 0 0 2px $color-primary;
}
&:hover {
color: $color-primary;
}
2016-05-29 15:39:56 +00:00
@if $shadows == 1 {
&.shadow {
@include shadow(1);
2016-05-29 15:39:56 +00:00
&:hover {
@include shadow(2);
}
2016-05-29 15:39:56 +00:00
&:active {
2016-06-01 19:21:21 +00:00
box-shadow: inset 0 5px 20px transparentize($color-black, .81), inset 0 3px 6px transparentize($color-black, .77);
2016-05-29 15:39:56 +00:00
}
}
}
2017-02-02 00:31:57 +00:00
// Tooltip
&[data-tooltip] {
&::after {
background: $color-black;
border-radius: 3px;
color: $color-white;
content: attr(data-tooltip);
font-family: $font-family;
font-size: $font-size;
padding: 0 12px;
position: absolute;
transform: translate(45px, 52px);
visibility: hidden;
white-space: nowrap;
}
&:hover {
&::after {
transition: visibility 0s linear .3s;
visibility: visible;
}
}
}
&.close {
2017-01-02 23:19:36 +00:00
background-color: transparent;
border-radius: 0;
2016-05-29 15:39:56 +00:00
@if $shadows == 1 {
box-shadow: none;
}
2016-06-01 19:21:21 +00:00
color: transparentize($color-black, .5);
float: right;
2016-06-19 11:14:13 +00:00
font-size: $button-font-size;
height: auto;
2017-01-02 23:19:36 +00:00
line-height: 1.2;
2016-06-19 11:14:13 +00:00
margin: $button-distance;
width: auto;
}
}