I like this character better.

This commit is contained in:
Zixaphir 2013-06-01 17:11:08 -07:00
parent 689a045a55
commit 697078b084
9 changed files with 31 additions and 28 deletions

View File

@ -1,3 +1,6 @@
**zixaphir**:
- Changed close character from '×' to '✖'
## v2.1.0 ## v2.1.0
*2013-06-01* *2013-06-01*

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -686,7 +686,7 @@ th {
z-index: 18; z-index: 18;
border-width: 1px 0 0 1px; border-width: 1px 0 0 1px;
border-style: solid; border-style: solid;
content: 'X'; content: '';
display: block; display: block;
position: fixed; position: fixed;
bottom: 0; bottom: 0;
@ -2050,7 +2050,7 @@ article li {
content: '?'; content: '?';
} }
.closeIcon::after { .closeIcon::after {
content: '×'; content: '';
} }
/* Front Page */ /* Front Page */
#logo { #logo {

View File

@ -5,12 +5,12 @@
<option value=new>New thread</option> <option value=new>New thread</option>
</select> </select>
</div> </div>
<a href=javascript:; class=close title=Close>×</a> <a href=javascript:; class=close title=Close></a>
</div> </div>
<form> <form>
<div class=persona> <div class=persona>
<input name=name data-name=name list="list-name" placeholder=Name class=field size=1 tabindex=10> <input name=name data-name=name list="list-name" placeholder=Name class=field size=1 tabindex=10>
<input name=email data-name=email list="list-email" placeholder=E-mail class=field size=1 tabindex=20> <input name=email data-name=email list="list-email" placeholder=E-mail class=field size=1 tabindex=20>
<input name=sub data-name=sub list="list-sub" placeholder=Subject class=field size=1 tabindex=30> <input name=sub data-name=sub list="list-sub" placeholder=Subject class=field size=1 tabindex=30>
</div> </div>
<div class=textarea> <div class=textarea>
@ -32,7 +32,7 @@
<span class=description>Spoiler</span> <span class=description>Spoiler</span>
<a id=dump-button title='Dump list'>+</a> <a id=dump-button title='Dump list'>+</a>
<span class=description>Dump</span> <span class=description>Dump</span>
<a id=qr-filerm href=javascript:; title='Remove file'>×</a> <a id=qr-filerm href=javascript:; title='Remove file'></a>
<span class=description>Remove File</span> <span class=description>Remove File</span>
</span> </span>
</span> </span>

View File

@ -1,7 +1,7 @@
class Notification class Notification
constructor: (type, content, @timeout) -> constructor: (type, content, @timeout) ->
@el = $.el 'div', @el = $.el 'div',
innerHTML: '<a href=javascript:; class=close title=Close>×</a><div class=message></div>' innerHTML: '<a href=javascript:; class=close title=Close></a><div class=message></div>'
@el.style.opacity = 0 @el.style.opacity = 0
@setType type @setType type
$.on @el.firstElementChild, 'click', @close $.on @el.firstElementChild, 'click', @close

View File

@ -3,7 +3,7 @@ ThreadWatcher =
return unless Conf['Thread Watcher'] return unless Conf['Thread Watcher']
@dialog = UI.dialog 'watcher', 'top: 50px; left: 0px;', @dialog = UI.dialog 'watcher', 'top: 50px; left: 0px;',
'<div class=move>Thread Watcher<a class=close href=javascript:;>×</a></div>' '<div class=move>Thread Watcher<a class=close href=javascript:;></a></div>'
$.on d, 'QRPostSuccessful', @cb.post $.on d, 'QRPostSuccessful', @cb.post
$.sync 'WatchedThreads', @refresh $.sync 'WatchedThreads', @refresh
@ -39,7 +39,7 @@ ThreadWatcher =
for board of watched for board of watched
for id, props of watched[board] for id, props of watched[board]
x = $.el 'a', x = $.el 'a',
textContent: '×' textContent: ''
className: 'close' className: 'close'
href: 'javascript:;' href: 'javascript:;'
$.on x, 'click', ThreadWatcher.cb.x $.on x, 'click', ThreadWatcher.cb.x

View File

@ -493,7 +493,7 @@ QR =
className: 'qr-preview' className: 'qr-preview'
draggable: true draggable: true
href: 'javascript:;' href: 'javascript:;'
innerHTML: '<a class=remove>×</a><label hidden><input type=checkbox> Spoiler</label><span></span>' innerHTML: '<a class=remove></a><label hidden><input type=checkbox> Spoiler</label><span></span>'
@nodes = @nodes =
el: el el: el