mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-27 00:36:52 -06:00
8f4d1f14f2
2) Remove unnecessary options for toggle switch which are already the default options.
30 lines
569 B
SCSS
30 lines
569 B
SCSS
.toggle.btn-xs {
|
|
min-width: 3rem; min-height: 1.5rem;
|
|
}
|
|
.toggle-on.btn-xs {
|
|
padding-right: .8rem;
|
|
}
|
|
.toggle-off.btn-xs {
|
|
padding-left: .8rem;
|
|
}
|
|
|
|
.btn-xs, .btn-group-xs > .btn, .btn-xs-sq {
|
|
padding: 0.05rem 0.4rem;
|
|
font-size: 0.76562rem;
|
|
line-height: 1.5;
|
|
border-radius: 0.2rem;
|
|
}
|
|
|
|
.toggle input[type="checkbox"] {
|
|
display: block;
|
|
opacity: 0;
|
|
margin-top: 0px !important;
|
|
}
|
|
|
|
.toggle:focus-within {
|
|
border-color: $input-focus-border-color !important;
|
|
outline: 0;
|
|
-webkit-box-shadow: $input-focus-box-shadow;
|
|
box-shadow: $input-focus-box-shadow;
|
|
}
|