mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-11 14:19:38 +00:00
52 lines
1.1 KiB
SCSS
52 lines
1.1 KiB
SCSS
#searchMenu {
|
|
flex-wrap: wrap;
|
|
margin-bottom: 0em;
|
|
border-radius: 0px;
|
|
}
|
|
|
|
#searchMenu>.item {
|
|
padding: .3em .4em;
|
|
min-height: inherit;
|
|
}
|
|
|
|
#searchMenu>.item:first-child {
|
|
box-sizing: content-box;
|
|
}
|
|
|
|
#searchIcon {
|
|
cursor: default;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
#advancedSearchForm {
|
|
margin: 0em;
|
|
border-width: 0px;
|
|
overflow: hidden;
|
|
transition: max-height 350ms cubic-bezier(0.45, 0, 0.55, 1);
|
|
max-height: 243.913px; /* This is its preferred height. Transition needs a static target number to work. */
|
|
}
|
|
|
|
.collapsed {
|
|
max-height: 0px !important;
|
|
}
|
|
|
|
#quantityDropdownItem, #similarityDropdownItem {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
max-width: 100vw;
|
|
max-height: 100vh;
|
|
transition: visibility 0s, opacity 350ms cubic-bezier(0.45, 0, 0.55, 1);
|
|
}
|
|
|
|
.hidden {
|
|
opacity: 0 !important;
|
|
visibility: hidden !important;
|
|
max-width: 0px !important;
|
|
max-height: 0px !important;
|
|
transition:
|
|
opacity 350ms cubic-bezier(0.45, 0, 0.55, 1),
|
|
visibility 0s linear 350ms,
|
|
max-width 0s linear 350ms,
|
|
max-height 0s linear 350ms !important;
|
|
}
|