Fix slim-select form widget styling

This commit is contained in:
Jeremy Stretch 2024-01-04 14:38:20 -05:00
parent a2a1c388a4
commit 62626bb0e9
3 changed files with 18 additions and 3 deletions

Binary file not shown.

View File

@ -1,5 +1,10 @@
@import 'variables'; @import 'variables';
// Tabler
@import '../node_modules/@tabler/core/src/scss/_core.scss'; @import '../node_modules/@tabler/core/src/scss/_core.scss';
//@import './theme-light.scss';
//@import './select.scss'; // slim-select
//@import './netbox.scss'; @import './select.scss';
// Temporary overrides
@import './temp.scss';

View File

@ -0,0 +1,10 @@
// Fix slim-select 1.x placeholder styling
.ss-main {
.ss-single-selected {
.placeholder {
cursor: pointer;
opacity: 1;
background-color: transparent !important;
}
}
}