mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 10:12:00 +08:00
36 lines
707 B
Text
36 lines
707 B
Text
@import "../buttons";
|
|
|
|
.button-dropdown {
|
|
position: relative;
|
|
display: inline-block;
|
|
.primary-item {
|
|
.btn();
|
|
height: 32px;
|
|
border-radius: 4px 0 0 4px;
|
|
padding-top: 7px;
|
|
}
|
|
.secondary-picker {
|
|
.btn();
|
|
height: 32px;
|
|
border-radius: 0 4px 4px 0;
|
|
border-left: 0;
|
|
padding: 7px 8px 3px 8px;
|
|
}
|
|
.secondary-items {
|
|
&:hover {
|
|
cursor: default;
|
|
}
|
|
border: 1px solid rgba(0,0,0,0.1);
|
|
border-radius: 4px 0 4px 4px;
|
|
padding: 4px 15px;
|
|
box-shadow: 0 4px 12px rgba(0,0,0,0.55);
|
|
z-index: 2;
|
|
background-color: @background-primary;;
|
|
position: absolute;
|
|
width: 110px;
|
|
right: 0;
|
|
}
|
|
img {
|
|
background-color: @text-color;
|
|
}
|
|
}
|