14 lines
332 B
SCSS
14 lines
332 B
SCSS
@import './base/bootstrap-extended/include'; // Bootstrap includes
|
|
@import './base/components/include'; // Components includes
|
|
|
|
// --- file input button for dark layout ----- //
|
|
.dark-layout {
|
|
.form-control {
|
|
&[type='file'] {
|
|
&::file-selector-button {
|
|
background-color: $theme-dark-input-bg;
|
|
}
|
|
}
|
|
}
|
|
}
|