60 lines
743 B
Plaintext
60 lines
743 B
Plaintext
/* Basic stylesheet for the Textual Email Viewer App */
|
|
|
|
Label#task_prompt {
|
|
padding: 1;
|
|
color: rgb(128,128,128);
|
|
}
|
|
|
|
Label#task_prompt_label {
|
|
padding: 1;
|
|
color: rgb(255, 216, 102);
|
|
}
|
|
|
|
Label#message_label {
|
|
padding: 1;
|
|
}
|
|
|
|
StatusTitle {
|
|
dock: top;
|
|
width: 100%;
|
|
height: 1;
|
|
color: $text;
|
|
background: rgb(64, 62, 65);
|
|
content-align: center middle;
|
|
}
|
|
|
|
EnvelopeHeader {
|
|
dock: top;
|
|
margin-top: 1;
|
|
width: 100%;
|
|
max-height: 2;
|
|
tint: $primary 10%;
|
|
}
|
|
|
|
Markdown {
|
|
padding: 1 2;
|
|
}
|
|
|
|
ListView {
|
|
dock: left;
|
|
width: 30%;
|
|
height: 100%;
|
|
padding: 0;
|
|
}
|
|
|
|
.email_subject {
|
|
width: 100%;
|
|
padding: 0
|
|
}
|
|
|
|
.header_key {
|
|
tint: gray 20%;
|
|
min-width: 10;
|
|
}
|
|
|
|
.header_value {
|
|
padding:0 1 0 0;
|
|
height: auto;
|
|
width: auto;
|
|
}
|