1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2026-02-16 09:20:38 +00:00

Show spam aliases #

This commit is contained in:
andryyy
2017-02-21 22:27:11 +01:00
parent 76426b65b2
commit 0eb932b3ab
2737 changed files with 357639 additions and 22 deletions

View File

@@ -0,0 +1,34 @@
// Progress
.@{prefix}-progress {
display: inline-block;
position: relative;
height: 20px;
}
.@{prefix}-progress .@{prefix}-bar-container {
display: inline-block;
width: 100px;
height: 100%;
margin-right: 8px;
border: 1px solid @progress-border;
overflow: hidden;
.border-radius(4px);
}
.@{prefix}-progress .@{prefix}-text {
display: inline-block;
margin-top: auto;
margin-bottom: auto;
font-size: 14px;
width: 40px;
color: @progress-text;
}
.@{prefix}-bar {
display: block;
width: 0%;
height: 100%;
.vertical-gradient(@progress-bar-bg, @progress-bar-bg-hlight);
.transition(width .2s ease);
}