replace server icon with font-awesome
authorPepijn de Vos <pepijndevos@gmail.com>
Tue, 9 Apr 2013 17:38:57 +0000 (19:38 +0200)
committerPepijn de Vos <pepijndevos@gmail.com>
Tue, 9 Apr 2013 17:38:57 +0000 (19:38 +0200)
client/assets/css/style.css
client/assets/dev/view.js

index 351b492c77c5ef07d02a0633d9cb93c768e99fef..1351d02b1255685e02d25c2ce49fc9f81848cc9e 100644 (file)
@@ -311,7 +311,8 @@ html, body { height:100%; }
 #kiwi.theme_relaxed #toolbar .panellist .active { padding-right:23px; }
 #kiwi.theme_relaxed #toolbar .panellist li .part:before { content:"\f00d"; }
 
-#kiwi.theme_relaxed #toolbar .panellist li.server span { background:url(../img/server_tab.png) no-repeat; padding-left:23px; }
+#kiwi.theme_relaxed #toolbar .panellist li.server span { padding-left: 5px; }
+#kiwi.theme_relaxed #toolbar .panellist li.server:before { content: "\f0ec"; }
 
 /* Tab texts are within a span */
 #kiwi.theme_relaxed #toolbar .panellist li span  { line-height:20px; vertical-align:middle; display:inline-block; }
@@ -642,7 +643,8 @@ html, body { height:100%; }
 #kiwi.theme_mini #toolbar .panellist .active { padding-right:23px; }
 #kiwi.theme_mini #toolbar .panellist li .part:before { content:"\f00d"; }
 
-#kiwi.theme_mini #toolbar .panellist li.server span { background:url(../img/server_tab.png) no-repeat; padding-left:23px; }
+#kiwi.theme_mini #toolbar .panellist li.server span { padding-left:5px; }
+#kiwi.theme_mini #toolbar .panellist li.server:before { content: "\f0ec"; }
 
 /* Tab texts are within a span */
 #kiwi.theme_mini #toolbar .panellist li span  { line-height:20px; vertical-align:middle; display:inline-block; }
@@ -902,7 +904,8 @@ html, body { height:100%; }
 #kiwi.theme_cli #toolbar .panellist .active { padding-right:23px; }
 #kiwi.theme_cli #toolbar .panellist li .part:before { content:"\f00d"; }
 
-#kiwi.theme_cli #toolbar .panellist li.server span { background:url(../img/server_tab.png) no-repeat; padding-left:23px; }
+#kiwi.theme_cli #toolbar .panellist li.server span { padding-left:5px; }
+#kiwi.theme_cli #toolbar .panellist li.server:before { content: "\f0ec"; }
 
 /* Tab texts are within a span */
 #kiwi.theme_cli #toolbar .panellist li span  { line-height:20px; vertical-align:middle; display:inline-block; }
index d77bfb2accba661e78fb2b6a275251e8d26e2aef..df3ca247312856484cb00f0f04b9631a25455446 100644 (file)
@@ -713,6 +713,7 @@ _kiwi.view.Tabs = Backbone.View.extend({
 \r
         if (panel.isServer()) {\r
             panel.tab.addClass('server');\r
+            panel.tab.addClass('icon-nonexistant');\r
         }\r
 \r
         panel.tab.data('panel_id', panel.cid)\r