Skip to content

Commit a7f1db0

Browse files
author
J Beshir
committed
Change logo and menu images to new Iris graphics.
1 parent 751b772 commit a7f1db0

File tree

13 files changed

+21
-46
lines changed

13 files changed

+21
-46
lines changed

css/qui.mcss

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
bg_topic=408080
22
bg_lines=408080
33
bg_tabbar=3C7878
4+
bg_tab_dropdown=418282
45
bg_tab_hover=408080
56
bg_tab_selected=408080
67
bg_menu=408080
78
bg_menu_hover=397373
8-
bg_header=#418282
9+
bg_header=418282
910
bg_nicklist=408080
1011
bg_chanlist_header=397373
1112
bg_chanlist_1=408080
@@ -24,6 +25,7 @@ bg_chanlist_border=336666
2425
bg_lastpositionbar=336666
2526
fg_default_text=408080
2627
fg_topic_text=59B3B3
28+
fg_tabbar_dropdown_text=408080
2729
fg_tabbar_hilight_text=408080
2830
fg_sec_title_text=408080
2931
fg_sec_link_text=408080
@@ -148,9 +150,9 @@ input:not([type]),input[type="text"],input[type="password"] {
148150
}
149151

150152
.qwebirc-qui .tabbar {
153+
margin-left: 27px;
151154
font-size: 0.8em;
152155
color: $(fg_sec_tabbar_text);
153-
margin-left: 38px;
154156
line-height: 24px;
155157
}
156158

@@ -269,11 +271,10 @@ div#noscript {
269271
}
270272

271273
.qwebirc-qui .outertabbar .dropdown-tab {
274+
float: left;
275+
width: 24px;
272276
cursor: pointer;
273277
cursor: hand;
274-
float: left;
275-
padding: 4px;
276-
width: 30px;
277278
}
278279

279280
.qwebirc-qui .dropdownmenu {

iris.png

36.9 KB
Loading

js/ui/frontends/qui.js

+3-36
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ qwebirc.ui.QUI = new Class({
2121

2222
this.outerTabs = this.qjsui.top;
2323

24-
this.tabs = new Element("div");
25-
this.tabs.addClass("tabbar");
24+
this.tabs = new Element("div", { "class":"tabbar" });
2625

2726
this.__createDropdownMenu();
2827

@@ -88,18 +87,11 @@ qwebirc.ui.QUI = new Class({
8887
e.set("text", x.text);
8988
dropdownMenu.appendChild(e);
9089
}.bind(this));
91-
90+
9291
var dropdown = new Element("div");
9392
dropdown.addClass("dropdown-tab");
94-
dropdown.appendChild(new Element("img", {src: this.session.config.frontend.static_base_url + "images/icon.png", title: "menu", alt: "menu"}));
95-
dropdown.setStyle("opacity", 1);
93+
dropdown.appendChild(new Element("img", {src: this.session.config.frontend.static_base_url + "images/menu.png", title: "menu", alt: "menu"}));
9694

97-
var dropdownEffect = new Fx.Tween(dropdown, {duration: "long", property: "opacity", link: "chain"});
98-
dropdownEffect.start(0.25);
99-
dropdownEffect.start(1);
100-
dropdownEffect.start(0.33);
101-
dropdownEffect.start(1);
102-
10395
this.outerTabs.appendChild(dropdown);
10496
dropdownMenu.show = function(x) {
10597
new Event(x).stop();
@@ -120,31 +112,6 @@ qwebirc.ui.QUI = new Class({
120112
dropdown.addEvent("mousedown", function(e) { new Event(e).stop(); });
121113
dropdown.addEvent("click", dropdownMenu.show);
122114
},
123-
__createDropdownHint: function() {
124-
var dropdownhint = new Element("div");
125-
dropdownhint.addClass("dropdownhint");
126-
dropdownhint.set("text", "Click the icon for the main menu.");
127-
dropdownhint.setStyle("top", this.outerTabs.getSize().y + 5);
128-
129-
this.parentElement.appendChild(dropdownhint);
130-
new Fx.Morph(dropdownhint, {duration: "normal", transition: Fx.Transitions.Sine.easeOut}).start({left: [900, 5]});
131-
132-
var hider = function() {
133-
new Fx.Morph(dropdownhint, {duration: "long"}).start({left: [5, -900]});
134-
}.delay(4000, this);
135-
136-
var hider2 = function() {
137-
if(dropdownhint.hidden)
138-
return;
139-
this.parentElement.removeChild(dropdownhint);
140-
dropdownhint.hidden = 1;
141-
}.bind(this);
142-
hider2.delay(4000);
143-
this.hideHint = hider2;
144-
145-
document.addEvent("mousedown", hider2);
146-
document.addEvent("keypress", hider2);
147-
},
148115
createInput: function() {
149116
var form = new Element("form");
150117
this.input.appendChild(form);

qwebirc.pdn

-168 KB
Binary file not shown.

qwebirc.png

-11.6 KB
Binary file not shown.

qwebirc/engines/adminengine.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
<div class="header">
1111
<table>
1212
<tr>
13-
<td><img src="/images/qwebircsmall.png" alt="qwebirc" title="qwebirc"/></td>
13+
<td><img src="/images/iris.png" alt="Iris" title="Iris"/></td>
1414
<td>&nbsp;&nbsp;&nbsp;&nbsp;</td>
15-
<td align="center"><div class="title">qwebirc</div><div class="version">AdminEngine</div></td>
15+
<td align="center"><div class="title">Iris</div><div class="version">AdminEngine</div></td>
1616
</tr>
1717
</table>
1818
</div>

static/favicon.ico

100644100755
-256 Bytes
Binary file not shown.

static/images/favicon.png

373 Bytes
Loading

static/images/icon.png

-3.46 KB
Binary file not shown.

static/images/iris.png

9.47 KB
Loading

static/images/menu.png

1.45 KB
Loading

static/images/qwebircsmall.png

-6.98 KB
Binary file not shown.

static/panes/about.html

+10-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
<div class="header">
2-
<h1>Iris</h1>
3-
<h2>Pre-Alpha Release - <span class="version" /></h2>
2+
<table>
3+
<td class="aboutlogo" style="padding-right: 1em;">
4+
<img src="/images/iris.png" alt="Iris">
5+
</td>
6+
<td>
7+
<h1>Iris</h1>
8+
<h2><span class="version" /></h2>
9+
</td>
10+
</table>
411
</div>
512

613
<p class="copyright">
@@ -22,7 +29,7 @@ <h2>Pre-Alpha Release - <span class="version" /></h2>
2229
MooTools v1.2 -- <a href="http://mootools.net/" target="new">http://mootools.net/</a><br/>
2330
Copyright &copy; 2006-2008 Valerio Proietti, MIT license.
2431
</li>
25-
<li>qwebirc icon -- <a href="http://meeb.org/" target="new">http://meeb.org/</a></li>
32+
<li>Iris icons -- Justin Sidwell</li>
2633
<li>
2734
SoundManager 2 -- <a href="http://www.schillmania.com/projects/soundmanager2/" target="new">http://www.schillmania.com/projects/soundmanager2/</a><br/>
2835
Copyright &copy; 2007 Scott Schiller (schillmania.com), BSD license.

0 commit comments

Comments
 (0)