[gnome-chat] theme: Fix borders



commit c3fea315b57e2ca218cb5a3136908a5d2b434b9e
Author: Carlos Soriano <carlos soriano89 gmail com>
Date:   Thu Jul 17 19:02:06 2014 +0200

    theme: Fix borders
    
    The others borders in the css are displayed because inherit the css
    class from frame. That doesn't happens with chat-sidebar, so we have
    to explicitely use border-style and border-color.
    Also, a typo prevented the header to have border.

 src/chat.css |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/src/chat.css b/src/chat.css
index 8b4f186..f95a10a 100644
--- a/src/chat.css
+++ b/src/chat.css
@@ -1,9 +1,13 @@
 .chat-sidebar:dir(ltr) {
     border-width: 0 1px 0 0;
+    border-style: solid;
+    border-color: @borders;
 }
 
 .chat-sidebar:dir(rtl) {
     border-width: 0 0 0 1px;
+    border-style: solid;
+    border-color: @borders;
 }
 
 .chat-status-area,
@@ -11,7 +15,7 @@
     border-width: 1px 0 0 0;
 }
 
-chat-left-header-bar:dir(ltr) {
+.chat-left-header-bar:dir(ltr) {
  border-right-width: 1px;
 }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]