snappymail/dev/Styles/User/SystemDropDown.less

123 lines
1.8 KiB
Plaintext
Raw Normal View History

2021-02-09 00:37:21 +08:00
#top-system-dropdown-id {
overflow: hidden;
2021-02-09 00:37:21 +08:00
padding-left: 10px;
padding-right: 10px;
}
.rl-left-panel-disabled #more-list-dropdown-id + .dropdown-menu {
2021-03-09 19:12:30 +08:00
position: fixed;
top: 40px;
2021-02-09 00:37:21 +08:00
}
.b-system-drop-down {
.b-toolbar {
position: absolute;
top: 0;
right: 0;
height: 30px;
padding: 10px @rlLowMargin;
z-index: 103;
}
.email-title {
display: inline-block;
2021-04-22 19:37:43 +08:00
max-width: 50vw;
text-align: left;
text-overflow: ellipsis;
overflow: hidden;
margin-right: 28px;
vertical-align: middle;
}
2015-04-10 16:17:49 +08:00
.audioPlace {
2021-09-09 23:00:31 +08:00
cursor: pointer;
2021-02-09 00:37:21 +08:00
display: inline-block;
font-size: 30px;
height: 30px;
2015-04-29 04:28:30 +08:00
margin-right: 10px;
2021-02-09 00:37:21 +08:00
width: 1em;
2015-04-10 16:17:49 +08:00
2015-04-11 05:52:15 +08:00
.stopIcon {
2021-09-09 23:00:31 +08:00
color: orange;
2015-04-11 05:52:15 +08:00
display: none;
}
2015-04-10 16:17:49 +08:00
2015-04-11 05:52:15 +08:00
&:hover {
.playIcon {
display: none;
}
.stopIcon {
display: inline-block;
}
2015-04-10 16:17:49 +08:00
}
}
.accountPlace {
background-color: rgba(0, 0, 0, 0.5);
2021-04-22 19:37:43 +08:00
border-radius: 4px;
color: #fff;
display: inline-block;
2021-04-22 19:37:43 +08:00
font-weight: bold;
font-size: 16px;
2021-04-22 19:37:43 +08:00
height: 29px;
line-height: 30px;
2021-04-22 19:37:43 +08:00
max-width: 25vw;
overflow: hidden;
2021-04-22 19:37:43 +08:00
padding: 1px 8px;
text-overflow: ellipsis;
2021-04-22 19:37:43 +08:00
text-shadow: 0 1px 0 #000;
2015-01-10 03:58:10 +08:00
white-space: nowrap;
}
.account-item {
&:not(.current) i:first-child,
&.current i + i {
display: none;
}
}
.counter {
display: inline-block;
}
2021-11-05 18:14:30 +08:00
.dropdown-menu a.account-item {
padding-right: 5px;
}
}
2021-09-09 23:00:31 +08:00
@keyframes equaliserBar {
0% { top: 30%; }
50% { top: 100%; }
100% { top: 30%; }
2015-04-11 05:52:15 +08:00
}
2021-09-09 23:00:31 +08:00
.playIcon {
2015-04-11 05:52:15 +08:00
2021-02-09 00:37:21 +08:00
margin-top: 5px;
2015-04-11 05:52:15 +08:00
height: 20px;
position: relative;
2021-09-09 23:00:31 +08:00
*, &::before, &::after {
animation: equaliserBar 1s infinite;
2015-04-11 05:52:15 +08:00
background: orange;
bottom:0;
2021-02-09 00:37:21 +08:00
left: calc(1em / 2 - 2px);
2021-09-09 23:00:31 +08:00
position: absolute;
width: 5px;
content: '';
2015-04-11 05:52:15 +08:00
}
2021-09-09 23:00:31 +08:00
&::before {
left: calc(1em / 2 - 9px);
animation-delay: -0.33s;
}
&::after {
left: calc(1em / 2 + 5px);
animation-delay: -0.66s;
2015-04-11 05:52:15 +08:00
}
2016-05-01 09:07:10 +08:00
}