2015-06-23 07:28:25 +08:00
|
|
|
@import "../buttons";
|
2015-06-23 06:49:52 +08:00
|
|
|
|
|
|
|
.button-dropdown {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
.primary-item {
|
|
|
|
.btn();
|
|
|
|
height: 32px;
|
|
|
|
border-radius: 4px 0 0 4px;
|
2015-06-27 09:03:28 +08:00
|
|
|
padding-top: 7px;
|
2015-06-23 06:49:52 +08:00
|
|
|
}
|
|
|
|
.secondary-picker {
|
|
|
|
.btn();
|
|
|
|
height: 32px;
|
|
|
|
border-radius: 0 4px 4px 0;
|
|
|
|
border-left: 0;
|
|
|
|
padding: 7px 8px 3px 8px;
|
|
|
|
}
|
|
|
|
.secondary-items {
|
|
|
|
&:hover {
|
|
|
|
cursor: default;
|
|
|
|
}
|
2015-06-27 06:03:13 +08:00
|
|
|
border: 1px solid rgba(0, 0, 0, 0.15);
|
2015-06-23 06:49:52 +08:00
|
|
|
border-radius: 4px 0 4px 4px;
|
2015-06-27 06:03:13 +08:00
|
|
|
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.20);
|
2015-06-23 06:49:52 +08:00
|
|
|
z-index: 2;
|
2015-06-27 06:03:13 +08:00
|
|
|
background-color: @background-primary;
|
|
|
|
line-height: 14px;
|
2015-06-23 06:49:52 +08:00
|
|
|
position: absolute;
|
|
|
|
width: 110px;
|
|
|
|
right: 0;
|
2015-06-27 06:03:13 +08:00
|
|
|
|
|
|
|
.secondary-item {
|
|
|
|
padding: 6px 15px;
|
|
|
|
img {
|
|
|
|
margin-right:4px;
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.secondary-item:first-child {
|
|
|
|
padding-top: 9px;
|
|
|
|
border-top-left-radius: 4px;
|
|
|
|
}
|
|
|
|
.secondary-item:last-child {
|
|
|
|
padding-bottom: 9px;
|
|
|
|
border-bottom-left-radius: 4px;
|
|
|
|
border-bottom-right-radius: 4px;
|
|
|
|
}
|
|
|
|
.secondary-item:hover {
|
|
|
|
background-color: darken(@background-primary, 3%);
|
|
|
|
}
|
2015-06-23 06:49:52 +08:00
|
|
|
}
|
|
|
|
img {
|
|
|
|
background-color: @text-color;
|
|
|
|
}
|
|
|
|
}
|