Add CSS class for thread watcher lines with unread replies, rename replies quoting you class for consistency.
This commit is contained in:
parent
7a9ee9d764
commit
1b6fffe9f0
@ -67,7 +67,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Thread Watcher */
|
/* Thread Watcher */
|
||||||
:root.burichan .unread-quoting-you > a {
|
:root.burichan .replies-quoting-you > a {
|
||||||
color: #F00;
|
color: #F00;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -67,7 +67,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Thread Watcher */
|
/* Thread Watcher */
|
||||||
:root.futaba .unread-quoting-you > a {
|
:root.futaba .replies-quoting-you > a {
|
||||||
color: #F00;
|
color: #F00;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -67,7 +67,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Thread Watcher */
|
/* Thread Watcher */
|
||||||
:root.photon .unread-quoting-you > a {
|
:root.photon .replies-quoting-you > a {
|
||||||
color: #00F !important;
|
color: #00F !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -73,7 +73,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Thread Watcher */
|
/* Thread Watcher */
|
||||||
:root.tomorrow .unread-quoting-you > a {
|
:root.tomorrow .replies-quoting-you > a {
|
||||||
color: #F00 !important;
|
color: #F00 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -68,7 +68,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Thread Watcher */
|
/* Thread Watcher */
|
||||||
:root.yotsuba-b .unread-quoting-you > a {
|
:root.yotsuba-b .replies-quoting-you > a {
|
||||||
color: #F00;
|
color: #F00;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -67,7 +67,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Thread Watcher */
|
/* Thread Watcher */
|
||||||
:root.yotsuba .unread-quoting-you > a {
|
:root.yotsuba .replies-quoting-you > a {
|
||||||
color: #F00;
|
color: #F00;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -218,7 +218,8 @@ ThreadWatcher =
|
|||||||
$.addClass div, 'current' if g.VIEW is 'thread' and fullID is "#{g.BOARD}.#{g.THREADID}"
|
$.addClass div, 'current' if g.VIEW is 'thread' and fullID is "#{g.BOARD}.#{g.THREADID}"
|
||||||
$.addClass div, 'dead-thread' if data.isDead
|
$.addClass div, 'dead-thread' if data.isDead
|
||||||
if Conf['Show Unread Count']
|
if Conf['Show Unread Count']
|
||||||
$.addClass div, 'unread-quoting-you' if data.unreadQY
|
$.addClass div, 'replies-unread' if data.unread
|
||||||
|
$.addClass div, 'replies-quoting-you' if data.unreadQY
|
||||||
$.add div, [x, $.tn(' '), link]
|
$.add div, [x, $.tn(' '), link]
|
||||||
div
|
div
|
||||||
refresh: ->
|
refresh: ->
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user