mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-07 00:17:03 +03:00
Reduce some HTML elements
This commit is contained in:
parent
6800c76e40
commit
a725f20034
2 changed files with 11 additions and 18 deletions
|
|
@ -211,9 +211,11 @@ html:not(rl-mobile) {
|
||||||
border-left-color: #ccc;
|
border-left-color: #ccc;
|
||||||
}
|
}
|
||||||
|
|
||||||
.importantMark {
|
.priorityHigh::before {
|
||||||
color:red;
|
content: '!'; /*❗*/
|
||||||
margin-right:5px
|
color: red;
|
||||||
|
font-weight: bolder;
|
||||||
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.deleted {
|
&.deleted {
|
||||||
|
|
@ -269,7 +271,7 @@ html:not(rl-mobile) {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
|
|
||||||
.threads-len span {
|
.threads-len {
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
border: 1px solid #ccc;
|
border: 1px solid #ccc;
|
||||||
font-size: 11px;
|
font-size: 11px;
|
||||||
|
|
@ -280,6 +282,9 @@ html:not(rl-mobile) {
|
||||||
border-color: #666;
|
border-color: #666;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.threads-len::after {
|
||||||
|
content: ' ›';
|
||||||
|
}
|
||||||
|
|
||||||
.replyFlag, .forwardFlag {
|
.replyFlag, .forwardFlag {
|
||||||
margin-right: 0.25em;
|
margin-right: 0.25em;
|
||||||
|
|
@ -322,10 +327,6 @@ html:not(rl-mobile) {
|
||||||
border-bottom-color: rgba(57, 140, 242, 0.2);
|
border-bottom-color: rgba(57, 140, 242, 0.2);
|
||||||
border-left-color: #398CF2;
|
border-left-color: #398CF2;
|
||||||
z-index: 101;
|
z-index: 101;
|
||||||
|
|
||||||
+ .messageListItem {
|
|
||||||
border-bottom-color: rgba(57, 140, 242, 0.3);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.flagParent {
|
.flagParent {
|
||||||
|
|
|
||||||
|
|
@ -139,19 +139,11 @@
|
||||||
<i data-bind="css: attachmentIconClass"></i>
|
<i data-bind="css: attachmentIconClass"></i>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="subjectParent actionHandle">
|
<div class="subjectParent actionHandle" data-bind="css: {'priorityHigh': isImportant}, text: subject || $root.emptySubjectValue"></div>
|
||||||
<!-- ko if: isImportant --><b class="importantMark">!</b><!-- /ko -->
|
|
||||||
<!-- ko text: subject || $root.emptySubjectValue --><!-- /ko -->
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="sizeParent actionHandle" data-bind="text: friendlySize()"></div>
|
<div class="sizeParent actionHandle" data-bind="text: friendlySize()"></div>
|
||||||
|
|
||||||
<div class="threads-len" data-bind="visible: 1 < threadsLen()">
|
<div class="threads-len" data-bind="visible: 1 < threadsLen(), text: threadsLen"></div>
|
||||||
<span>
|
|
||||||
<!-- ko text: threadsLen --><!-- /ko -->
|
|
||||||
›
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<time class="actionHandle" data-moment-format="SHORT" data-moment-format-title="FULL" data-bind="moment: dateTimeStampInUTC"></time>
|
<time class="actionHandle" data-moment-format="SHORT" data-moment-format-title="FULL" data-bind="moment: dateTimeStampInUTC"></time>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue