54 lines
1.4 KiB
SCSS
54 lines
1.4 KiB
SCSS
/* ui-version: 5 (do not change when modifying theme for yourself) */
|
|
|
|
/* Variables */
|
|
|
|
/* FONTS */
|
|
$font-mono: "Input Mono", "Inconsolata", monospace;
|
|
$font-sans: "Input Sans", "Roboto", sans-serif;
|
|
$font-family-default: $font-mono;
|
|
|
|
/* COLOURS */
|
|
$signed: #BFBF00 !global;
|
|
$encrypted: #99cc66 !global;
|
|
|
|
/* GPG STUFF */
|
|
.body_part.encrypted, .body_part.encrypted.signed {
|
|
border-left: 2px dashed $encrypted !important;
|
|
}
|
|
.body_part.signed {
|
|
border-left: 2px dashed $signed !important;
|
|
}
|
|
|
|
/* SMALLER THREAD_VIEW */
|
|
body:not(.nohide) .email.hide .header_container .preview {
|
|
display: none !important;
|
|
}
|
|
body:not(.nohide) .email.hide .header_container {
|
|
padding: 2px !important;
|
|
}
|
|
body:not(.nohide) .email.hide .header_container .attachment.icon {
|
|
float: left;
|
|
height: 12px;
|
|
}
|
|
body:not(.nohide) .email.hide .header_container .subject, body:not(.nohide) .email.hide .header_container .tags {
|
|
float: left;
|
|
}
|
|
|
|
/* TV: MARK FLAGGED HIDDEN MAILS */
|
|
body:not(.nohide) .email.hide.nm-flagged {
|
|
background-color: #ffe2de !important;
|
|
}
|
|
body:not(.nohide) .email.hide.nm-flagged .header_container .subject {
|
|
font-weight: 700;
|
|
}
|
|
/* TV: MARK UNREAD HIDDEN MAILS */
|
|
body:not(.nohide) .email.hide.nm-unread {
|
|
background-color: #dedfff !important;
|
|
}
|
|
body:not(.nohide) .email.hide.nm-unread .header_container .subject {
|
|
font-weight: 700;
|
|
}
|
|
|
|
@import '/usr/share/astroid/ui/thread-view.scss';
|
|
|