From 72ce4eede7f2f0b30edb870f533d17ef1ba0ae38 Mon Sep 17 00:00:00 2001 From: Damien Churchill Date: Wed, 25 Feb 2009 17:34:59 +0000 Subject: [PATCH] add the deluge icon to the main title bar --- deluge/ui/web/css/deluge.css | 4 ++++ deluge/ui/web/js/deluge-ui.js | 1 + 2 files changed, 5 insertions(+) diff --git a/deluge/ui/web/css/deluge.css b/deluge/ui/web/css/deluge.css index e47722056..dd688d426 100644 --- a/deluge/ui/web/css/deluge.css +++ b/deluge/ui/web/css/deluge.css @@ -7,6 +7,10 @@ html, body { height:100%; } +.x-deluge-main-panel { + background-image: url('/icons/16/deluge.png'); +} + .deluge-torrents td, .x-deluge-peers td { height: 16px; line-height: 16px; diff --git a/deluge/ui/web/js/deluge-ui.js b/deluge/ui/web/js/deluge-ui.js index 45d2c0e18..f1d9ac9d9 100644 --- a/deluge/ui/web/js/deluge-ui.js +++ b/deluge/ui/web/js/deluge-ui.js @@ -28,6 +28,7 @@ Deluge.Ui = { Ext.state.Manager.setProvider(new Ext.state.CookieProvider()); this.MainPanel = new Ext.Panel({ id: 'mainPanel', + iconCls: 'x-deluge-main-panel', title: 'Deluge', layout: 'border', tbar: Deluge.ToolBar.Bar,