mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-28 18:41:34 +08:00
d961fa480a
Keyboard shortcuts help popup (Shift + / )
60 lines
789 B
Text
60 lines
789 B
Text
|
|
.b-admin-domains {
|
|
.process-place {
|
|
width: 600px;
|
|
padding: 14px 0;
|
|
text-align: center;
|
|
visibility: hidden;
|
|
}
|
|
}
|
|
|
|
.b-admin-domains-list-table {
|
|
|
|
width: 600px;
|
|
|
|
.e-item {
|
|
|
|
.e-action {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.domain-name {
|
|
display: inline-block;
|
|
word-break: break-all;
|
|
.box-sizing(border-box);
|
|
}
|
|
|
|
&.disabled .domain-name {
|
|
color: #bbb;
|
|
}
|
|
|
|
.button-delete {
|
|
margin-right: 15px;
|
|
visibility: hidden;
|
|
.opacity(0);
|
|
}
|
|
|
|
.delete-access {
|
|
&.button-delete {
|
|
visibility: visible;
|
|
margin-right: 0;
|
|
.opacity(100);
|
|
}
|
|
}
|
|
|
|
.delete-domain, .disabled-domain {
|
|
cursor: pointer;
|
|
.opacity(50);
|
|
}
|
|
|
|
&.disabled .disabled-domain {
|
|
.opacity(50);
|
|
}
|
|
|
|
.delete-domain, .disabled-domain {
|
|
&:hover {
|
|
.opacity(100);
|
|
}
|
|
}
|
|
}
|
|
}
|