2016-07-07 18:54:16 -07:00
|
|
|
// Copyright (c) 2015 Documize Inc.
|
|
|
|
.button-gap {
|
|
|
|
width: 5px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
display: inline-block;
|
|
|
|
@extend .no-select;
|
|
|
|
}
|
2017-11-17 11:31:54 +00:00
|
|
|
|
|
|
|
.button-icon-white {
|
|
|
|
display: inline-block;
|
|
|
|
cursor: default;
|
|
|
|
@include ease-in();
|
|
|
|
|
|
|
|
> i {
|
|
|
|
color: $color-white;
|
|
|
|
font-size: 2rem;
|
|
|
|
@include ease-in();
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> i {
|
|
|
|
color: darken($color-white, 15%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-22 11:02:35 +00:00
|
|
|
.button-icon-gray {
|
|
|
|
display: inline-block;
|
|
|
|
cursor: default;
|
|
|
|
@include ease-in();
|
|
|
|
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($gray-shades, 300);
|
2017-11-22 11:02:35 +00:00
|
|
|
font-size: 2rem;
|
|
|
|
@include ease-in();
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: darken(map-get($gray-shades, 300), 15%);
|
2017-11-22 11:02:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-icon-gold {
|
|
|
|
display: inline-block;
|
|
|
|
cursor: default;
|
|
|
|
@include ease-in();
|
|
|
|
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($yellow-shades, 700);
|
2017-11-22 11:02:35 +00:00
|
|
|
font-size: 2rem;
|
|
|
|
@include ease-in();
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: darken(map-get($yellow-shades, 700), 5%);
|
2017-11-22 11:02:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-icon-danger {
|
|
|
|
display: inline-block;
|
|
|
|
cursor: default;
|
|
|
|
@include ease-in();
|
|
|
|
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($gray-shades, 300);
|
2017-11-22 11:02:35 +00:00
|
|
|
font-size: 2rem;
|
|
|
|
@include ease-in();
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($red-shades, 700);
|
2017-11-22 11:02:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-22 13:39:46 +00:00
|
|
|
.button-icon-blue {
|
|
|
|
display: inline-block;
|
|
|
|
cursor: default;
|
|
|
|
@include ease-in();
|
|
|
|
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($gray-shades, 800);
|
2017-11-22 13:39:46 +00:00
|
|
|
font-size: 2rem;
|
|
|
|
@include ease-in();
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($gray-shades, 600);
|
2017-11-22 13:39:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-icon-red {
|
|
|
|
display: inline-block;
|
|
|
|
cursor: default;
|
|
|
|
@include ease-in();
|
|
|
|
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($red-shades, 700);
|
2017-11-22 13:39:46 +00:00
|
|
|
font-size: 2rem;
|
|
|
|
@include ease-in();
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($red-shades, 400);
|
2017-11-22 13:39:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-22 16:28:17 +00:00
|
|
|
.button-icon-green {
|
|
|
|
display: inline-block;
|
|
|
|
cursor: default;
|
|
|
|
@include ease-in();
|
|
|
|
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($green-shades, 600);
|
2017-11-22 16:28:17 +00:00
|
|
|
font-size: 2rem;
|
|
|
|
@include ease-in();
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: map-get($green-shades, 700);
|
2017-11-22 16:28:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-27 15:38:39 +00:00
|
|
|
.button-icon-black {
|
|
|
|
display: inline-block;
|
|
|
|
cursor: default;
|
|
|
|
@include ease-in();
|
|
|
|
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: $color-black-light-1;
|
2017-11-27 15:38:39 +00:00
|
|
|
font-size: 2rem;
|
|
|
|
@include ease-in();
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: darken($color-black-light-1, 5%);
|
2017-11-27 15:38:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-27 16:17:17 +00:00
|
|
|
.button-icon-theme {
|
|
|
|
display: inline-block;
|
|
|
|
cursor: default;
|
|
|
|
@include ease-in();
|
|
|
|
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: $theme-500;
|
2017-11-27 16:17:17 +00:00
|
|
|
font-size: 2rem;
|
|
|
|
@include ease-in();
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: darken($theme-500, 5%);
|
2017-11-27 16:17:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.button-icon-theme-light {
|
|
|
|
display: inline-block;
|
|
|
|
cursor: default;
|
|
|
|
@include ease-in();
|
|
|
|
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: $theme-100;
|
2017-11-27 16:17:17 +00:00
|
|
|
font-size: 2rem;
|
|
|
|
@include ease-in();
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
> i {
|
2018-12-04 17:26:57 +00:00
|
|
|
color: darken($theme-100, 5%);
|
2017-11-27 16:17:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-11-22 13:39:46 +00:00
|
|
|
.button-icon-small {
|
|
|
|
> i {
|
|
|
|
font-size: 1.3rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-17 11:31:54 +00:00
|
|
|
.button-icon-gap {
|
|
|
|
display: inline-block;
|
|
|
|
margin-left: 5px;
|
|
|
|
}
|