Solved some missed dark mode color issues

This commit is contained in:
djmaze 2021-03-08 15:46:15 +01:00
parent e2d6528bf5
commit 4570b87232
4 changed files with 386 additions and 407 deletions

View file

@ -186,7 +186,7 @@ html.rl-no-preview-pane {
.listThreadUidDesc { .listThreadUidDesc {
font-size: 16px; font-size: 16px;
padding: 7px 20px 6px 20px; padding: 7px 20px 6px 20px;
background-color: #aaa; background-color: rgba(128,128,128,0.5);
border-bottom: 1px solid #888; border-bottom: 1px solid #888;
color: #fff; color: #fff;
cursor: pointer; cursor: pointer;
@ -335,18 +335,14 @@ html.rl-no-preview-pane {
.threads-len { .threads-len {
.threads-len-data { .threads-len-data {
background-color: #eee;
color: #666;
border-radius: 6px; border-radius: 6px;
padding: 2px 0 1px 6px; padding: 2px 0 1px 6px;
margin-right: 2px; margin-right: 2px;
border: 1px solid #ccc; border: 1px solid #ccc;
&:hover { &:hover {
background-color: #aaa; background-color: rgba(127,127,127,0.3);
border-color: #666; border-color: #666;
text-shadow: 0 1px 0 #999;
color: #fff;
} }
} }
} }

View file

@ -5,8 +5,6 @@
.messageView { .messageView {
z-index: 100;
.toolbar { .toolbar {
position: absolute; position: absolute;
top: 0; top: 0;
@ -47,10 +45,6 @@
} }
} }
.logoPlace {
text-align: center;
}
.b-message-view-desc { .b-message-view-desc {
text-align: center; text-align: center;
font-size: 24px; font-size: 24px;
@ -100,6 +94,7 @@
} }
} }
} }
}
.messageItemHeader { .messageItemHeader {
@ -150,8 +145,7 @@
.informationFull { .informationFull {
margin-top: 10px; margin-top: 10px;
border: 1px solid #ddd; border: 1px solid #999;
background-color: #fff;
border-radius: 5px; border-radius: 5px;
padding: 8px 0; padding: 8px 0;
overflow: hidden; overflow: hidden;
@ -175,7 +169,7 @@
} }
td:first-child { td:first-child {
border-right: 1px solid #ddd; border-right: 1px solid #999;
text-align: right; text-align: right;
width: 1%; width: 1%;
} }
@ -342,8 +336,6 @@
z-index: 2; z-index: 2;
} }
.bodyText {
.b-text-part { .b-text-part {
height: 100%; height: 100%;
@ -504,8 +496,6 @@
} }
} }
} }
}
}
&.message-focused .b-content { &.message-focused .b-content {
z-index: 101; z-index: 101;

View file

@ -31,13 +31,6 @@
vertical-align: middle; vertical-align: middle;
} }
.logoPlace {
margin: -5px 10px 0 0;
font-size: 25px;
line-height: 30px;
height: 40px;
}
.audioPlace { .audioPlace {
display: inline-block; display: inline-block;
font-size: 30px; font-size: 30px;

View file

@ -93,7 +93,7 @@
.legend, .legend,
.b-compose .b-header .e-identity, .b-compose .b-header .e-identity,
.messageView .b-content .messageItem { .messageView .messageItem {
color: #fff; color: #fff;
} }
@ -105,18 +105,18 @@
} }
.g-ui-link, .g-ui-link,
.messageView .b-content .messageItemHeader .informationShort a, .messageView .messageItemHeader .informationShort a,
.messageView .b-content .messageItem .bodyText .b-text-part a { .messageView .messageItem .bodyText .b-text-part a {
color: #6AE; color: #6AE;
} }
.messageView .b-content .messageItemHeader, .messageView .messageItemHeader,
.messageView .b-content .messageItem .pgpEncrypted, .messageView .messageItem .pgpEncrypted,
.messageView .b-content .messageItem .pgpSigned, .messageView .messageItem .pgpSigned,
.messageView .b-content .messageItem .readReceipt, .messageView .messageItem .readReceipt,
.messageView .b-content .messageItem .showImages, .messageView .messageItem .showImages,
.messageView .b-content .messageItem .attachmentsPlace, .messageView .messageItem .attachmentsPlace,
.messageView .b-content .messageItem .attachmentsControls { .messageView .messageItem .attachmentsControls {
background-color: #222; background-color: #222;
border-bottom-color: #444; border-bottom-color: #444;
} }