fb75bc19b4
- Buttons on dialogs were not getting width and height - Tooltip buttons were getting standard button spacing when they should be closer to their corresponding menu button - Several buttons and other elements had containers just to get spacing in button sets; rename button-container class to button-set-item and apply directly to elements where possible.
26 lines
No EOL
485 B
SCSS
26 lines
No EOL
485 B
SCSS
@import "../global";
|
|
|
|
$border-radius-menu: 2px;
|
|
|
|
.menu-container {
|
|
display: inline-block;
|
|
}
|
|
|
|
.menu {
|
|
position: absolute;
|
|
white-space: nowrap;
|
|
background-color: white;
|
|
box-shadow: $default-box-shadow;
|
|
border-radius: $border-radius-menu;
|
|
padding-top: $spacing-vertical / 2;
|
|
padding-bottom: $spacing-vertical / 2;
|
|
z-index: 1;
|
|
}
|
|
|
|
.menu__menu-item {
|
|
display: block;
|
|
padding: $spacing-vertical / 4 $spacing-vertical / 2;
|
|
&:hover {
|
|
background: $color-bg-alt;
|
|
}
|
|
} |