2017-10-07 00:25:17 -04:00
|
|
|
@mixin btn-comment-icon {
|
|
|
|
border-radius: 50%;
|
|
|
|
background: $white-light;
|
|
|
|
padding: 1px 5px;
|
|
|
|
font-size: 12px;
|
|
|
|
color: $blue-500;
|
2017-12-05 02:35:37 -05:00
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2017-10-07 00:25:17 -04:00
|
|
|
border: 1px solid $blue-500;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&.inverted {
|
|
|
|
background: $blue-500;
|
|
|
|
border-color: $blue-600;
|
|
|
|
color: $white-light;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-05 15:18:21 -04:00
|
|
|
@mixin btn-default {
|
2016-09-09 12:59:36 -04:00
|
|
|
border-radius: 3px;
|
2016-01-14 07:59:28 -05:00
|
|
|
font-size: $gl-font-size;
|
2017-08-24 10:13:24 -04:00
|
|
|
font-weight: $gl-font-weight-normal;
|
2016-02-02 14:27:45 -05:00
|
|
|
padding: $gl-vert-padding $gl-btn-padding;
|
2015-10-07 11:21:15 -04:00
|
|
|
|
2015-10-08 07:29:14 -04:00
|
|
|
&:focus,
|
2015-09-25 14:33:05 -04:00
|
|
|
&:active {
|
2016-04-01 15:27:39 -04:00
|
|
|
background-color: $btn-active-gray;
|
2016-09-09 12:59:36 -04:00
|
|
|
box-shadow: $gl-btn-active-background;
|
2015-09-25 14:33:05 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@mixin btn-middle {
|
2015-10-08 07:29:14 -04:00
|
|
|
@include btn-default;
|
2015-09-25 14:33:05 -04:00
|
|
|
}
|
|
|
|
|
2016-11-28 11:38:05 -05:00
|
|
|
@mixin btn-outline($background, $text, $border, $hover-background, $hover-text, $hover-border, $active-background, $active-border) {
|
2016-05-31 13:14:55 -04:00
|
|
|
background-color: $background;
|
|
|
|
color: $text;
|
|
|
|
border-color: $border;
|
|
|
|
|
2017-06-07 09:17:03 -04:00
|
|
|
> .icon {
|
2017-06-07 06:18:35 -04:00
|
|
|
color: $text;
|
|
|
|
}
|
|
|
|
|
2016-05-31 13:14:55 -04:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
background-color: $hover-background;
|
2016-10-14 16:39:08 -04:00
|
|
|
border-color: $hover-border;
|
2016-11-28 11:38:05 -05:00
|
|
|
color: $hover-text;
|
2017-06-07 06:18:35 -04:00
|
|
|
|
2017-06-07 09:17:03 -04:00
|
|
|
> .icon {
|
2017-06-07 06:18:35 -04:00
|
|
|
color: $hover-text;
|
|
|
|
}
|
2016-11-28 11:38:05 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background-color: $active-background;
|
|
|
|
border-color: $active-border;
|
|
|
|
color: $hover-text;
|
2017-06-07 06:18:35 -04:00
|
|
|
|
2017-06-07 09:17:03 -04:00
|
|
|
> .icon {
|
2017-06-07 06:18:35 -04:00
|
|
|
color: $hover-text;
|
|
|
|
}
|
2016-05-31 13:14:55 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-08 07:29:14 -04:00
|
|
|
@mixin btn-color($light, $border-light, $normal, $border-normal, $dark, $border-dark, $color) {
|
|
|
|
background-color: $light;
|
|
|
|
border-color: $border-light;
|
|
|
|
color: $color;
|
2015-09-25 14:33:05 -04:00
|
|
|
|
2015-10-08 07:29:14 -04:00
|
|
|
&:hover,
|
2015-10-07 11:21:15 -04:00
|
|
|
&:focus {
|
2015-10-08 07:29:14 -04:00
|
|
|
background-color: $normal;
|
|
|
|
border-color: $border-normal;
|
|
|
|
color: $color;
|
2015-10-07 11:21:15 -04:00
|
|
|
}
|
|
|
|
|
2016-04-01 15:27:39 -04:00
|
|
|
&:active,
|
|
|
|
&.active {
|
2016-09-09 12:59:36 -04:00
|
|
|
box-shadow: $gl-btn-active-background;
|
2015-10-07 11:21:15 -04:00
|
|
|
|
2015-10-08 07:29:14 -04:00
|
|
|
background-color: $dark;
|
|
|
|
border-color: $border-dark;
|
|
|
|
color: $color;
|
2015-10-07 11:21:15 -04:00
|
|
|
}
|
|
|
|
}
|
2015-09-25 14:33:05 -04:00
|
|
|
|
2015-10-08 07:29:14 -04:00
|
|
|
@mixin btn-green {
|
2017-03-23 12:04:25 -04:00
|
|
|
@include btn-color($green-500, $green-600, $green-600, $green-700, $green-700, $green-800, $white-light);
|
2015-10-05 15:18:21 -04:00
|
|
|
}
|
|
|
|
|
2015-10-08 07:29:14 -04:00
|
|
|
@mixin btn-blue {
|
2017-03-23 12:04:25 -04:00
|
|
|
@include btn-color($blue-500, $blue-600, $blue-600, $blue-700, $blue-700, $blue-800, $white-light);
|
2015-12-22 16:33:46 -05:00
|
|
|
}
|
|
|
|
|
2015-10-08 07:29:14 -04:00
|
|
|
@mixin btn-orange {
|
2017-03-23 12:04:25 -04:00
|
|
|
@include btn-color($orange-500, $orange-600, $orange-600, $orange-700, $orange-700, $orange-800, $white-light);
|
2015-09-25 14:33:05 -04:00
|
|
|
}
|
|
|
|
|
2015-10-07 11:21:15 -04:00
|
|
|
@mixin btn-red {
|
2017-03-23 12:04:25 -04:00
|
|
|
@include btn-color($red-500, $red-600, $red-600, $red-700, $red-700, $red-800, $white-light);
|
2015-10-08 07:29:14 -04:00
|
|
|
}
|
2015-10-07 11:21:15 -04:00
|
|
|
|
2015-10-08 07:29:14 -04:00
|
|
|
@mixin btn-gray {
|
2016-12-30 15:18:27 -05:00
|
|
|
@include btn-color($gray-light, $border-gray-normal, $gray-normal, $border-gray-normal, $gray-dark, $border-gray-dark, $gl-text-color);
|
2015-10-08 07:29:14 -04:00
|
|
|
}
|
2015-10-07 11:21:15 -04:00
|
|
|
|
2015-10-08 07:29:14 -04:00
|
|
|
@mixin btn-white {
|
2016-12-12 17:26:21 -05:00
|
|
|
@include btn-color($white-light, $border-color, $white-normal, $border-white-normal, $white-dark, $border-gray-dark, $gl-text-color);
|
2015-10-05 15:18:21 -04:00
|
|
|
}
|
|
|
|
|
2016-06-08 11:06:28 -04:00
|
|
|
@mixin btn-with-margin {
|
|
|
|
margin-left: $btn-side-margin;
|
|
|
|
float: left;
|
|
|
|
|
|
|
|
&.inline {
|
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.btn-sm {
|
|
|
|
margin-left: $btn-sm-side-margin;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.btn-xs {
|
|
|
|
margin-left: $btn-xs-side-margin;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-28 14:07:25 -05:00
|
|
|
@mixin btn-svg {
|
|
|
|
height: $gl-padding;
|
|
|
|
width: $gl-padding;
|
|
|
|
top: 0;
|
|
|
|
vertical-align: text-top;
|
|
|
|
}
|
|
|
|
|
2015-10-07 11:21:15 -04:00
|
|
|
.btn {
|
2015-10-05 15:18:21 -04:00
|
|
|
@include btn-default;
|
2015-10-07 11:21:15 -04:00
|
|
|
@include btn-white;
|
2015-10-05 15:18:21 -04:00
|
|
|
|
2016-02-19 21:46:18 -05:00
|
|
|
color: $gl-text-color;
|
|
|
|
|
2016-02-22 09:58:04 -05:00
|
|
|
&:focus:active {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
2015-10-13 05:33:46 -04:00
|
|
|
&.btn-sm {
|
2016-01-14 07:59:28 -05:00
|
|
|
padding: 4px 10px;
|
|
|
|
font-size: 13px;
|
|
|
|
line-height: 18px;
|
2015-12-22 15:22:37 -05:00
|
|
|
}
|
2015-10-13 05:33:46 -04:00
|
|
|
|
|
|
|
&.btn-xs {
|
2016-01-14 07:59:28 -05:00
|
|
|
padding: 2px 5px;
|
2015-10-13 05:33:46 -04:00
|
|
|
}
|
|
|
|
|
2015-10-07 11:32:00 -04:00
|
|
|
&.btn-success,
|
|
|
|
&.btn-new,
|
|
|
|
&.btn-create,
|
2016-02-02 19:08:30 -05:00
|
|
|
&.btn-save {
|
2015-10-07 11:21:15 -04:00
|
|
|
@include btn-green;
|
|
|
|
}
|
2015-10-05 15:18:21 -04:00
|
|
|
|
2016-07-22 20:15:08 -04:00
|
|
|
&.btn-inverted {
|
|
|
|
&.btn-success,
|
|
|
|
&.btn-new,
|
|
|
|
&.btn-create,
|
|
|
|
&.btn-save {
|
2017-03-23 12:04:25 -04:00
|
|
|
@include btn-outline($white-light, $green-600, $green-500, $green-500, $white-light, $green-600, $green-600, $green-700);
|
2016-07-22 20:15:08 -04:00
|
|
|
}
|
2016-09-21 10:15:12 -04:00
|
|
|
|
|
|
|
&.btn-remove {
|
2017-03-23 12:04:25 -04:00
|
|
|
@include btn-outline($white-light, $red-500, $red-500, $red-500, $white-light, $red-600, $red-600, $red-700);
|
2016-09-21 10:15:12 -04:00
|
|
|
}
|
2018-01-26 01:25:26 -05:00
|
|
|
|
|
|
|
&.btn-primary,
|
|
|
|
&.btn-info {
|
|
|
|
@include btn-outline($white-light, $blue-500, $blue-500, $blue-500, $white-light, $blue-600, $blue-600, $blue-700);
|
|
|
|
}
|
2016-07-22 20:15:08 -04:00
|
|
|
}
|
|
|
|
|
2015-10-07 11:21:15 -04:00
|
|
|
&.btn-gray {
|
|
|
|
@include btn-gray;
|
|
|
|
}
|
2015-10-05 15:18:21 -04:00
|
|
|
|
2016-09-09 08:21:00 -04:00
|
|
|
&.btn-info,
|
2017-03-23 12:04:25 -04:00
|
|
|
&.btn-primary,
|
2016-09-09 08:21:00 -04:00
|
|
|
&.btn-register {
|
2015-10-08 07:29:14 -04:00
|
|
|
@include btn-blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.btn-warning {
|
|
|
|
@include btn-orange;
|
|
|
|
}
|
|
|
|
|
2017-06-07 06:18:35 -04:00
|
|
|
&.btn-close,
|
|
|
|
&.btn-close-color {
|
2017-03-23 12:04:25 -04:00
|
|
|
@include btn-outline($white-light, $orange-600, $orange-500, $orange-500, $white-light, $orange-600, $orange-600, $orange-700);
|
2016-05-31 13:14:55 -04:00
|
|
|
}
|
|
|
|
|
2016-08-02 17:21:57 -04:00
|
|
|
&.btn-spam {
|
2017-03-23 12:04:25 -04:00
|
|
|
@include btn-outline($white-light, $red-500, $red-500, $red-500, $white-light, $red-600, $red-600, $red-700);
|
2016-08-02 17:21:57 -04:00
|
|
|
}
|
|
|
|
|
2015-10-07 11:32:00 -04:00
|
|
|
&.btn-danger,
|
|
|
|
&.btn-remove,
|
|
|
|
&.btn-red {
|
|
|
|
@include btn-red;
|
2015-10-05 15:18:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.btn-cancel {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
2017-06-07 06:18:35 -04:00
|
|
|
&.btn-reopen,
|
|
|
|
.btn-reopen-color {
|
2015-12-23 06:29:50 -05:00
|
|
|
/* should be same as parent class for now */
|
2015-10-05 15:18:21 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
&.btn-grouped {
|
2016-06-08 11:06:28 -04:00
|
|
|
@include btn-with-margin;
|
2015-10-05 15:18:21 -04:00
|
|
|
}
|
2016-06-08 10:20:07 -04:00
|
|
|
|
2016-08-23 12:02:52 -04:00
|
|
|
.fa-caret-down,
|
2016-11-18 15:19:44 -05:00
|
|
|
.fa-chevron-down {
|
2016-02-19 21:46:18 -05:00
|
|
|
margin-left: 5px;
|
|
|
|
}
|
2016-07-14 11:48:01 -04:00
|
|
|
|
2016-08-23 12:02:52 -04:00
|
|
|
&.dropdown-toggle {
|
|
|
|
.fa-caret-down {
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-05 19:00:22 -05:00
|
|
|
&.dot-highlight::after {
|
|
|
|
content: '';
|
|
|
|
background-color: $blue-500;
|
|
|
|
width: $gl-padding * 0.5;
|
|
|
|
height: $gl-padding * 0.5;
|
|
|
|
display: inline-block;
|
|
|
|
border-radius: 50%;
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
|
|
|
|
2017-09-19 13:40:03 -04:00
|
|
|
svg {
|
|
|
|
height: 15px;
|
|
|
|
width: 15px;
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
}
|
|
|
|
|
2016-10-24 16:22:06 -04:00
|
|
|
svg,
|
|
|
|
.fa {
|
2016-08-19 04:39:47 -04:00
|
|
|
&:not(:last-child) {
|
2016-10-28 18:47:56 -04:00
|
|
|
margin-right: 5px;
|
2016-08-19 04:39:47 -04:00
|
|
|
}
|
2016-08-04 18:37:32 -04:00
|
|
|
}
|
2015-10-05 15:18:21 -04:00
|
|
|
}
|
|
|
|
|
2016-12-14 19:59:04 -05:00
|
|
|
.btn-terminal {
|
|
|
|
svg {
|
|
|
|
height: 14px;
|
|
|
|
width: 18px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-11 11:14:29 -05:00
|
|
|
.btn-lg {
|
|
|
|
padding: 12px 20px;
|
|
|
|
}
|
|
|
|
|
2016-03-02 05:12:37 -05:00
|
|
|
.btn-transparent {
|
2016-12-30 15:18:27 -05:00
|
|
|
color: $gl-text-color-secondary;
|
2016-03-02 05:12:37 -05:00
|
|
|
background-color: transparent;
|
|
|
|
border: 0;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
background-color: transparent;
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-05 15:18:21 -04:00
|
|
|
.btn-block {
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
margin-bottom: 15px;
|
2016-10-14 16:39:08 -04:00
|
|
|
|
2015-10-05 15:18:21 -04:00
|
|
|
&.btn {
|
|
|
|
padding: 6px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-13 18:01:21 -04:00
|
|
|
.btn-align-content {
|
|
|
|
display: flex;
|
2017-10-24 00:56:39 -04:00
|
|
|
justify-content: center;
|
2017-10-13 18:01:21 -04:00
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2015-10-05 15:18:21 -04:00
|
|
|
.btn-group {
|
|
|
|
&.btn-grouped {
|
2016-06-08 11:06:28 -04:00
|
|
|
@include btn-with-margin;
|
2015-10-05 15:18:21 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-03 09:44:52 -05:00
|
|
|
.btn-clipboard {
|
2017-11-02 19:59:51 -04:00
|
|
|
border: 0;
|
2016-01-14 07:59:28 -05:00
|
|
|
padding: 0 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.input-group-btn {
|
|
|
|
.btn {
|
|
|
|
@include btn-middle;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.btn-clipboard {
|
|
|
|
padding-left: 15px;
|
|
|
|
padding-right: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.active {
|
2016-09-09 12:59:36 -04:00
|
|
|
box-shadow: $gl-btn-active-background;
|
2016-01-14 07:59:28 -05:00
|
|
|
|
2016-12-12 17:26:21 -05:00
|
|
|
border: 1px solid $border-gray-dark !important;
|
2016-11-30 08:25:25 -05:00
|
|
|
background-color: $btn-active-gray-light !important;
|
2016-01-14 07:59:28 -05:00
|
|
|
}
|
2015-11-03 09:44:52 -05:00
|
|
|
}
|
2016-03-17 08:54:02 -04:00
|
|
|
|
|
|
|
.btn-loading {
|
|
|
|
&:not(.disabled) .fa {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.fa {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
2016-04-01 15:27:39 -04:00
|
|
|
|
|
|
|
.btn-text-field {
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
padding: 6px 16px;
|
|
|
|
border-color: $border-color;
|
2016-12-12 16:49:12 -05:00
|
|
|
color: $gray-darkest;
|
2016-12-12 17:26:21 -05:00
|
|
|
background-color: $gray-light;
|
2016-04-01 15:27:39 -04:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
cursor: text;
|
|
|
|
box-shadow: none;
|
2017-01-12 11:27:22 -05:00
|
|
|
border-color: lighten($dropdown-input-focus-border, 20%);
|
2016-12-12 16:49:12 -05:00
|
|
|
color: $gray-darkest;
|
2016-12-12 17:26:21 -05:00
|
|
|
background-color: $gray-light;
|
2016-04-01 15:27:39 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-27 10:46:31 -04:00
|
|
|
.btn-build {
|
|
|
|
margin-left: 10px;
|
2016-10-14 16:39:08 -04:00
|
|
|
|
2016-04-26 14:20:58 -04:00
|
|
|
i {
|
2016-12-30 15:18:27 -05:00
|
|
|
color: $gl-text-color-secondary;
|
2016-04-26 14:20:58 -04:00
|
|
|
}
|
|
|
|
}
|
2016-06-15 18:30:55 -04:00
|
|
|
|
|
|
|
.clone-dropdown-btn a {
|
2016-06-16 14:27:25 -04:00
|
|
|
color: $dropdown-link-color;
|
2016-10-14 16:39:08 -04:00
|
|
|
|
2016-06-15 18:30:55 -04:00
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2016-06-29 16:26:02 -04:00
|
|
|
|
|
|
|
.btn-static {
|
2016-12-12 17:26:21 -05:00
|
|
|
background-color: $gray-light !important;
|
|
|
|
border: 1px solid $border-gray-normal;
|
2016-06-29 16:26:02 -04:00
|
|
|
cursor: default;
|
2016-10-14 16:39:08 -04:00
|
|
|
|
2016-06-29 16:26:02 -04:00
|
|
|
&:active {
|
2016-11-30 08:25:25 -05:00
|
|
|
-moz-box-shadow: inset 0 0 0 $white-light;
|
|
|
|
-webkit-box-shadow: inset 0 0 0 $white-light;
|
|
|
|
box-shadow: inset 0 0 0 $white-light;
|
2016-06-29 16:26:02 -04:00
|
|
|
}
|
|
|
|
}
|
2016-09-16 05:37:19 -04:00
|
|
|
|
2016-11-17 15:56:27 -05:00
|
|
|
.btn-inverted {
|
|
|
|
&-secondary {
|
2017-03-23 12:04:25 -04:00
|
|
|
@include btn-outline($white-light, $blue-500, $blue-500, $blue-500, $white-light, $blue-600, $blue-600, $blue-700);
|
2016-11-17 15:56:27 -05:00
|
|
|
}
|
2016-11-10 17:53:32 -05:00
|
|
|
}
|
|
|
|
|
2016-09-16 05:37:19 -04:00
|
|
|
@media (max-width: $screen-xs-max) {
|
|
|
|
.btn-wide-on-xs {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2017-03-24 12:17:38 -04:00
|
|
|
|
|
|
|
.btn-blank {
|
|
|
|
padding: 0;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
2017-11-10 18:41:04 -05:00
|
|
|
border-radius: 0;
|
2017-03-24 12:17:38 -04:00
|
|
|
|
2017-09-14 07:01:07 -04:00
|
|
|
&:hover,
|
|
|
|
&:active,
|
2017-03-24 12:17:38 -04:00
|
|
|
&:focus {
|
|
|
|
outline: 0;
|
2017-09-14 07:01:07 -04:00
|
|
|
background: transparent;
|
|
|
|
box-shadow: none;
|
2017-03-24 12:17:38 -04:00
|
|
|
}
|
|
|
|
}
|
2017-11-10 18:41:04 -05:00
|
|
|
|
|
|
|
.btn-link.btn-secondary-hover-link {
|
|
|
|
color: $gl-text-color-secondary;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
color: $gl-link-color;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn-link.btn-primary-hover-link {
|
|
|
|
color: inherit;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
color: $gl-link-color;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
2017-11-28 14:07:25 -05:00
|
|
|
|
2018-02-02 16:50:09 -05:00
|
|
|
.btn-missing {
|
|
|
|
color: $notes-light-color;
|
|
|
|
border: 1px dashed $border-gray-normal-dashed;
|
|
|
|
border-radius: $border-radius-default;
|
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:active,
|
|
|
|
&:focus {
|
|
|
|
color: $notes-light-color;
|
|
|
|
background-color: $white-normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-28 14:07:25 -05:00
|
|
|
.btn-svg svg {
|
|
|
|
@include btn-svg;
|
|
|
|
}
|
2018-01-16 14:31:17 -05:00
|
|
|
|
2018-01-17 12:58:45 -05:00
|
|
|
// All disabled buttons, regardless of color, type, etc
|
|
|
|
%disabled {
|
|
|
|
background-color: $gray-light !important;
|
|
|
|
border-color: $theme-gray-200 !important;
|
|
|
|
color: $gl-text-color-disabled !important;
|
|
|
|
opacity: 1 !important;
|
2018-01-18 12:32:13 -05:00
|
|
|
cursor: default !important;
|
2018-01-17 12:58:45 -05:00
|
|
|
|
|
|
|
i {
|
|
|
|
color: $gl-text-color-disabled !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-16 14:31:17 -05:00
|
|
|
.btn.disabled,
|
|
|
|
.btn[disabled],
|
|
|
|
fieldset[disabled] .btn,
|
|
|
|
.dropdown-toggle[disabled],
|
|
|
|
[disabled].dropdown-menu-toggle {
|
2018-01-17 12:58:45 -05:00
|
|
|
@extend %disabled;
|
2018-01-16 14:31:17 -05:00
|
|
|
|
2018-01-17 12:58:45 -05:00
|
|
|
&:hover {
|
|
|
|
@extend %disabled;
|
2018-01-16 14:31:17 -05:00
|
|
|
}
|
|
|
|
}
|