mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-16 15:40:11 +01:00
40 lines
890 B
SCSS
40 lines
890 B
SCSS
@import '../../../@theme/styles/themes';
|
|
|
|
@include nb-install-component() {
|
|
|
|
$inherited-fg: nb-theme(color-fg);
|
|
$search-fg: nb-theme(color-fg);
|
|
$search-bg: nb-theme(color-white);
|
|
$search-border: 1px solid nb-theme(color-gray-light);
|
|
$selected-row-bg: nb-theme(color-gray-light);
|
|
|
|
.inheritance-icon {
|
|
margin: 0 0.25rem;
|
|
}
|
|
|
|
.inheritance-property {
|
|
color: $inherited-fg;
|
|
}
|
|
|
|
.parent-theme-name {
|
|
margin-left: 0.25rem;
|
|
}
|
|
|
|
.highlighted-row {
|
|
background-color: $selected-row-bg !important;
|
|
}
|
|
|
|
.search-control {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 0.375rem 0.75rem;
|
|
font-size: 1rem;
|
|
line-height: 1.5;
|
|
color: $search-fg;
|
|
background-color: $search-bg;
|
|
background-clip: padding-box;
|
|
border: $search-border;
|
|
border-radius: 0.25rem;
|
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
}
|
|
}
|