зеркало из https://github.com/mozilla/gecko-dev.git
47 строки
1.4 KiB
CSS
47 строки
1.4 KiB
CSS
/* ===== messageQuotes.css =================================================
|
|
== Shared styles such as block quote colors and signature style
|
|
== between the message body during
|
|
== message display and the mail editor instance for mail compose.
|
|
======================================================================= */
|
|
|
|
/* ::::: signature ::::: */
|
|
|
|
.moz-txt-sig,
|
|
.moz-signature {
|
|
color: gray;
|
|
}
|
|
|
|
.moz-txt-sig > a,
|
|
.moz-signature > a {
|
|
color: #7777FF; /* light blue */
|
|
}
|
|
|
|
/* ::::: colorize block quote borders. We only go 7 levels deep ::::: */
|
|
|
|
blockquote[type=cite] {
|
|
padding: 0em .5em .5em 1em !important;
|
|
border-right: 2px solid blue !important;
|
|
border-left: 2px solid blue !important;
|
|
}
|
|
|
|
blockquote[type=cite] blockquote[type=cite] {
|
|
border-right: 2px solid maroon !important;
|
|
border-left: 2px solid maroon !important;
|
|
}
|
|
|
|
blockquote[type=cite] blockquote[type=cite] blockquote[type=cite] {
|
|
border-right: 2px solid teal !important;
|
|
border-left: 2px solid teal !important;
|
|
}
|
|
|
|
blockquote[type=cite] blockquote[type=cite] blockquote[type=cite] blockquote[type=cite] {
|
|
border-right: 2px solid purple !important;
|
|
border-left: 2px solid purple !important;
|
|
}
|
|
|
|
blockquote[type=cite] blockquote[type=cite] blockquote[type=cite] blockquote[type=cite] blockquote[type=cite] {
|
|
border-right: 2px solid green !important;
|
|
border-left: 2px solid green !important;
|
|
}
|
|
|