Ported blockquote changes to Tinymce css, so it looks alike when you edit a message...
authorthe_mgt <themgt@uncensored.citadel.org>
Wed, 18 May 2011 19:25:17 +0000 (21:25 +0200)
committerWilfried Goesgens <dothebart@citadel.org>
Sun, 4 Sep 2011 20:46:23 +0000 (20:46 +0000)
Also left a note in message.css that both files are connected.

webcit/static/styles/message.css
webcit/static/styles/webcit-tinymce.css

index c3060c6b3e5a42a301e2a730bd8fcc01571e999d..d5b959138119e5fd86c4b9d760bc490b47119bba 100644 (file)
@@ -75,8 +75,9 @@
        margin-left: 0.3em;
 }
 
-/* make blockquotes in messages distingushable */
+/* Blockquotes in messages need to be distingushable */
 /* there is a lot of cascading happen io order to make it look beautiful */
+/* if you make changes here, port them to WEBCIT-TINYMCE.css! */
 .message_content blockquote {
        border: 1px solid #5C646B;
         border-radius: 8px;
@@ -106,6 +107,8 @@ blockquote .message_content {
        behavior: url(/static/styles/PIE.htc);
        background-color: #deded0;
 }
+/* --- End of blockquoting block --- */
+
 
 .message img {
        max-width: 700px;
index 9819ff3417f9bc27800d5cd3716f865fb266bb9c..ac3f353c5711ce3ca0c02733bbb8bf681455e4c4 100644 (file)
@@ -68,7 +68,6 @@ blockquote{
 /* there is a lot of cascading happen io order to make it look beautiful */
 .message_content blockquote {
        border: 1px solid #5C646B;
-       border-top: 0px;
         border-radius: 8px;
         -webkit-border-radius: 8px;
         -moz-border-radius: 8px;   
@@ -78,14 +77,9 @@ blockquote{
         behavior: url(/static/styles/PIE.htc);
 }
 
-/*remove top border of blockquote INSIDE of blockquotes*/
-.message_content blockquote blockquote {
-       border-top: none;
-}
-
 /*but draw a top border if message inside blockquote was quoted with header!*/
 blockquote .message_header {          
-        border-top: 1px solid #5C646B;  
+        border-top: 1px solid transparent;  
         border-radius: 8px 8px 0px 0px;
         -webkit-border-radius: 8px 8px 0px 0px;
         -moz-border-radius: 8px 8px 0px 0px;