},\r
\r
saveSettings: function () {\r
- var theme = $('.theme', this.$el).val(),\r
- containers = $('#panels > .panel_container');\r
+ var theme = $('.theme', this.$el).val();\r
\r
// Clear any current theme\r
- containers.removeClass(function (i, css) {\r
+ kiwi.app.view.$el.removeClass(function (i, css) {\r
return (css.match (/\btheme_\S+/g) || []).join(' ');\r
});\r
\r
- if (theme) containers.addClass('theme_' + theme);\r
+ if (theme) kiwi.app.view.$el.addClass('theme_' + theme);\r
}\r
});\r
\r
initialize: function () {\r
this.set('title', 'Settings');\r
this.view = new View();\r
- window.s = this;\r
}\r
});\r
})();
\ No newline at end of file
/* Relaxed theme */
-.panel_container.theme_relaxed .messages .msg { border-bottom: 1px solid #DEDEDE; font-family:arial; font-size:0.9em; }
-.panel_container.theme_relaxed .messages .msg .time { width:6em; float:left; color:#777; display:none; }
-.panel_container.theme_relaxed .messages .msg .nick { width:11em; float:left; font-size:12px; font-family:Arial; text-align:left; padding: 5px; }
-.panel_container.theme_relaxed .messages .msg .text { margin-left:12em; border-left: 1px solid #DEDEDE; white-space:pre-wrap; word-wrap:break-word; font-family:Arial; padding:5px; }
-
-.panel_container.theme_relaxed .messages .msg.action .nick { display:none; }
-.panel_container.theme_relaxed .messages .msg.action .text { margin-left:9em; color:#009900; border-left:none; font-style:italic; }
-.panel_container.theme_relaxed .messages .msg.action.join { color:#009900; }
-.panel_container.theme_relaxed .messages .msg.action.part .text { color:#900; }
-.panel_container.theme_relaxed .messages .msg.action.quit .text { color:#900; }
-.panel_container.theme_relaxed .messages .msg.action.kick .text { color:#900; }
-.panel_container.theme_relaxed .messages .msg.status .nick { display:none; }
-.panel_container.theme_relaxed .messages .msg.status .text { color:#990000; margin-left:9em; border-left:none; font-weight:bold; }
-.panel_container.theme_relaxed .messages .msg.topic .nick { display:none; }
-.panel_container.theme_relaxed .messages .msg.topic .text { color:#009900; margin-left:9em; font-style: italic; border-left:none; }
-/*.panel_container.theme_relaxed .messages .msg.motd .nick { display:none; }*/
-.panel_container.theme_relaxed .messages .msg.motd { border:none; }
-.panel_container.theme_relaxed .messages .msg.motd .text { color:#666; }
-.panel_container.theme_relaxed .messages .msg.whois .nick { font-weight:normal; }
-.panel_container.theme_relaxed .messages .msg.whois .text { margin-left:18em; padding-left:1em; border-left:1px dashed #999; }
-.panel_container.theme_relaxed .messages .msg.error .text {
+#kiwi.theme_relaxed .messages .msg { border-bottom: 1px solid #DEDEDE; font-family:arial; font-size:0.9em; }
+#kiwi.theme_relaxed .messages .msg .time { width:6em; float:left; color:#777; display:none; }
+#kiwi.theme_relaxed .messages .msg .nick { width:11em; float:left; font-size:12px; font-family:Arial; text-align:left; padding: 5px; }
+#kiwi.theme_relaxed .messages .msg .text { margin-left:12em; border-left: 1px solid #DEDEDE; white-space:pre-wrap; word-wrap:break-word; font-family:Arial; padding:5px; }
+
+#kiwi.theme_relaxed .messages .msg.action .nick { display:none; }
+#kiwi.theme_relaxed .messages .msg.action .text { margin-left:9em; color:#009900; border-left:none; font-style:italic; }
+#kiwi.theme_relaxed .messages .msg.action.join { color:#009900; }
+#kiwi.theme_relaxed .messages .msg.action.part .text { color:#900; }
+#kiwi.theme_relaxed .messages .msg.action.quit .text { color:#900; }
+#kiwi.theme_relaxed .messages .msg.action.kick .text { color:#900; }
+#kiwi.theme_relaxed .messages .msg.status .nick { display:none; }
+#kiwi.theme_relaxed .messages .msg.status .text { color:#990000; margin-left:9em; border-left:none; font-weight:bold; }
+#kiwi.theme_relaxed .messages .msg.topic .nick { display:none; }
+#kiwi.theme_relaxed .messages .msg.topic .text { color:#009900; margin-left:9em; font-style: italic; border-left:none; }
+/*#kiwi.theme_relaxed .messages .msg.motd .nick { display:none; }*/
+#kiwi.theme_relaxed .messages .msg.motd { border:none; }
+#kiwi.theme_relaxed .messages .msg.motd .text { color:#666; }
+#kiwi.theme_relaxed .messages .msg.whois .nick { font-weight:normal; }
+#kiwi.theme_relaxed .messages .msg.whois .text { margin-left:18em; padding-left:1em; border-left:1px dashed #999; }
+#kiwi.theme_relaxed .messages .msg.error .text {
border:1px solid #A33F3F; background-color:#D28A8A;
padding:0.5em; margin-top:1em; margin-bottom:1em; margin-right:2em;
}
\ No newline at end of file