Lose the double border line. Simplify the colors. git-svn-id: svn://10.0.0.236/trunk@158915 18797224-902f-48f8-a5cc-f745e15eee43
47 lines
1.4 KiB
CSS
47 lines
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;
|
|
}
|
|
|