e059aab184
* Do not include oldIdx in Select change event I included it due to confusion about the variable names in the Change Notetype components. * Remove redundant on:change listener from NotetypeSelector * Use Select component in Change Notetype MapperRow (again) * Remove redundant --cols and --col-size definitions Bootstrap divides rows into columns of equal width by default. * Add highlight to active DropdownItem * Remove bootstrap dropdown item styling * Fix JS error on dropdown accept action cause: When closing the dropdown, buttonRef was removed before the callback in setTimeout was run.
23 lines
635 B
SCSS
23 lines
635 B
SCSS
@import "sass/base";
|
|
|
|
// override Bootstrap transition duration
|
|
$carousel-transition: 0.2s;
|
|
|
|
@import "bootstrap/scss/buttons";
|
|
@import "bootstrap/scss/button-group";
|
|
@import "bootstrap/scss/transitions";
|
|
@import "bootstrap/scss/modal";
|
|
@import "bootstrap/scss/carousel";
|
|
@import "bootstrap/scss/close";
|
|
@import "bootstrap/scss/alert";
|
|
@import "bootstrap/scss/badge";
|
|
@import "sass/bootstrap-forms";
|
|
@import "sass/bootstrap-tooltip";
|
|
|
|
input[type="text"] {
|
|
padding-inline: 0.5rem;
|
|
background: var(--canvas-inset);
|
|
}
|
|
|
|
// Setting 100% height causes the sticky element to hide as you scroll down on Safari.
|
|
html { height: initial; } |