Files
sogo/UI/WebServerResources/scss/components/checkbox/checkbox.scss
Francis Lachapelle d3ede8ce73 chore(npm): update md to v1.2.4
Fixed sass deprecation warnings.
2022-01-04 11:43:52 -05:00

40 lines
880 B
SCSS

/// checkbox.scss -*- Mode: scss; indent-tabs-mode: nil; basic-offset: 2 -*-
$checkbox-min-height: 40px !default;
@import 'extends';
// Checkbox for the sidenav folders list
// -------------------------------------
md-sidenav md-checkbox {
min-height: $checkbox-width;
.md-container {
top: 50%;
margin: 0;
}
}
// Dense mode
md-sidenav .md-dense :not(.md-dense-disabled) md-checkbox:not(.md-dense-disabled) {
min-height: $checkbox-width;
}
// Checkbox in an inline form beside a select element
.md-inline-form md-checkbox.sg-checkbox--with-select {
margin: 2.5*$baseline-grid $baseline-grid*0.5 3*$baseline-grid + 2 0;
}
// Checkbox for the sg-checkmark directive
// ---------------------------------------
.sg-checkmark {
md-icon {
opacity: 0;
}
&.sg-checked md-icon {
opacity: 1;
}
span[ng-transclude] {
display: inline-block;
}
}