ngx-admin/docs/app/blocks/components/theme-block/theme-block.component.scss
Sergey Andrievskiy 2129689f98 feat: docs app
2020-08-28 19:29:11 +03:00

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;
}
}