I like this character better.
This commit is contained in:
parent
689a045a55
commit
697078b084
@ -1,3 +1,6 @@
|
||||
**zixaphir**:
|
||||
- Changed close character from '×' to '✖'
|
||||
|
||||
## v2.1.0
|
||||
*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
@ -686,7 +686,7 @@ th {
|
||||
z-index: 18;
|
||||
border-width: 1px 0 0 1px;
|
||||
border-style: solid;
|
||||
content: 'X';
|
||||
content: '✖';
|
||||
display: block;
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
@ -2050,7 +2050,7 @@ article li {
|
||||
content: '?';
|
||||
}
|
||||
.closeIcon::after {
|
||||
content: '×';
|
||||
content: '✖';
|
||||
}
|
||||
/* Front Page */
|
||||
#logo {
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
<option value=new>New thread</option>
|
||||
</select>
|
||||
</div>
|
||||
<a href=javascript:; class=close title=Close>×</a>
|
||||
<a href=javascript:; class=close title=Close>✖</a>
|
||||
</div>
|
||||
<form>
|
||||
<div class=persona>
|
||||
@ -32,7 +32,7 @@
|
||||
<span class=description>Spoiler</span>
|
||||
<a id=dump-button title='Dump list'>+</a>
|
||||
<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>
|
||||
</span>
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
class Notification
|
||||
constructor: (type, content, @timeout) ->
|
||||
@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
|
||||
@setType type
|
||||
$.on @el.firstElementChild, 'click', @close
|
||||
|
||||
@ -3,7 +3,7 @@ ThreadWatcher =
|
||||
return unless Conf['Thread Watcher']
|
||||
|
||||
@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
|
||||
$.sync 'WatchedThreads', @refresh
|
||||
@ -39,7 +39,7 @@ ThreadWatcher =
|
||||
for board of watched
|
||||
for id, props of watched[board]
|
||||
x = $.el 'a',
|
||||
textContent: '×'
|
||||
textContent: '✖'
|
||||
className: 'close'
|
||||
href: 'javascript:;'
|
||||
$.on x, 'click', ThreadWatcher.cb.x
|
||||
|
||||
@ -493,7 +493,7 @@ QR =
|
||||
className: 'qr-preview'
|
||||
draggable: true
|
||||
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 =
|
||||
el: el
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user