This repository has been archived on 2023-01-25. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
mail-config/astroid/ui/thread-view.scss

54 lines
1.4 KiB
SCSS
Raw Normal View History

/* ui-version: 5 (do not change when modifying theme for yourself) */
2017-04-13 12:28:53 +02:00
/* 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';
2017-04-13 12:28:53 +02:00