debian-mirror-gitlab/app/assets/stylesheets/framework/toggle.scss
2020-04-22 19:07:51 +05:30

153 lines
3 KiB
SCSS

/**
* Toggle button
*
* @usage
* ### Active and Inactive text should be provided as data attributes:
* <button type="button" class="project-feature-toggle" data-enabled-text="Enabled" data-disabled-text="Disabled">
* <i class="fa fa-spinner fa-spin loading-icon hidden"></i>
* </button>
* ### Checked should have `is-checked` class
* <button type="button" class="project-feature-toggle is-checked" data-enabled-text="Enabled" data-disabled-text="Disabled">
* <i class="fa fa-spinner fa-spin loading-icon hidden"></i>
* </button>
* ### Disabled should have `is-disabled` class
* <button type="button" class="project-feature-toggle is-disabled" data-enabled-text="Enabled" data-disabled-text="Disabled" disabled="true">
* <i class="fa fa-spinner fa-spin loading-icon hidden"></i>
* </button>
* ### Loading should have `is-loading` and an icon with `loading-icon` class
* <button type="button" class="project-feature-toggle is-loading" data-enabled-text="Enabled" data-disabled-text="Disabled">
* <i class="fa fa-spinner fa-spin loading-icon"></i>
* </button>
*/
.project-feature-toggle {
position: relative;
border: 0;
outline: 0;
display: block;
width: 50px;
height: 24px;
cursor: pointer;
user-select: none;
background: $gl-gray-400;
border-radius: 12px;
padding: 3px;
transition: all 0.4s ease;
&::selection,
&::before::selection,
&::after::selection {
background: none;
}
&:focus {
outline: none;
}
.toggle-icon {
position: relative;
display: block;
left: 0;
border-radius: 9px;
background: $feature-toggle-color;
transition: all 0.2s ease;
&,
.toggle-icon-svg {
width: $default-icon-size;
height: $default-icon-size;
}
.toggle-icon-svg {
fill: $gl-gray-400;
}
.toggle-status-checked {
display: none;
}
.toggle-status-unchecked {
display: inline;
}
}
.loading-icon {
display: none;
font-size: 12px;
color: $white;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
&.is-loading {
.toggle-icon {
display: none;
}
.loading-icon {
display: block;
&::before {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
}
}
&.is-checked {
background: $feature-toggle-color-enabled;
.toggle-icon {
left: calc(100% - 18px);
.toggle-icon-svg {
fill: $feature-toggle-color-enabled;
}
.toggle-status-checked {
display: inline;
}
.toggle-status-unchecked {
display: none;
}
}
}
&.is-disabled {
opacity: 0.4;
cursor: not-allowed;
}
@include media-breakpoint-down(xs) {
width: 50px;
&::before,
&.is-checked::before {
display: none;
}
}
@keyframes animate-enabled {
0%,
35% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes animate-disabled {
0%,
35% { opacity: 0; }
100% { opacity: 1; }
}
}