F1: drop the two HomeView edition-gate panels + their files (License/BackupFailed).
F2: delete zero-importer orphans (edition mutation, HubspotForm, HomepageFilter,
relations mutation, ActivityLogsView cluster, ExperimentalFeatures subtree).
F3: collapse single-option selectors (Backup settings, init restore, env types)
and delete the option files they orphaned.
F4: remove dead BE-teaser CSS rules and the --BE-only variable.
Also drop the orphaned .btn-warninglight BE-teaser variant.
F5 (limitedToBE) intentionally left — it is still read by BoxSelectorAngular.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
60 lines
1.1 KiB
CSS
60 lines
1.1 KiB
CSS
/* switch box */
|
|
|
|
.switch {
|
|
--switch-size: 24px;
|
|
}
|
|
|
|
.switch.small {
|
|
--switch-size: 12px;
|
|
}
|
|
|
|
.switch input {
|
|
display: none;
|
|
}
|
|
|
|
.switch i {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
cursor: pointer;
|
|
padding-right: var(--switch-size);
|
|
transition: all ease 0.2s;
|
|
-webkit-transition: all ease 0.2s;
|
|
-moz-transition: all ease 0.2s;
|
|
-o-transition: all ease 0.2s;
|
|
border-radius: var(--switch-size);
|
|
box-shadow: inset 0 0 1px 1px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.switch i:before {
|
|
display: block;
|
|
content: '';
|
|
width: var(--switch-size);
|
|
height: var(--switch-size);
|
|
border-radius: var(--switch-size);
|
|
background: white;
|
|
box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.switch :checked + i {
|
|
padding-right: 0;
|
|
padding-left: var(--switch-size);
|
|
-webkit-box-shadow:
|
|
inset 0 0 1px rgba(0, 0, 0, 0.5),
|
|
inset 0 0 40px #337ab7;
|
|
-moz-box-shadow:
|
|
inset 0 0 1px rgba(0, 0, 0, 0.5),
|
|
inset 0 0 40px #337ab7;
|
|
box-shadow:
|
|
inset 0 0 1px rgba(0, 0, 0, 0.5),
|
|
inset 0 0 40px #337ab7;
|
|
}
|
|
|
|
.switch :disabled + i {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.switch input[type='checkbox']:disabled + .slider {
|
|
cursor: not-allowed;
|
|
}
|