From cc5aec5591ff6f78c7dddbb23c042e8b5777c767 Mon Sep 17 00:00:00 2001 From: SirStendec Date: Sat, 19 Nov 2016 01:59:03 -0500 Subject: [PATCH] 3.5.373. Fix global emotes bug. Fix API stupidity with not passing all attributes of emotes/emote sets/badges. Add badge click_action function. Add support for target-msg-id CLEARMESSAGE tag. Add alternate mode tab-completion handling. Also older changes because I'm bad at commiting. Closes #55 --- changelog.html | 41 ++++++++--------- dark.css | 42 +++++++++-------- old_changes.html | 21 +++++++++ src/badges.js | 10 +++- src/ember/chat-input.js | 73 +++++++++++++++++++++++------ src/ember/line.js | 13 ++++-- src/ember/room.js | 4 +- src/emoticons.js | 4 +- src/ext/api.js | 99 ++++++++++++---------------------------- src/less/dark-clips.less | 15 ++++++ src/main.js | 2 +- style.css | 21 ++++++--- 12 files changed, 203 insertions(+), 142 deletions(-) diff --git a/changelog.html b/changelog.html index 1c81016f..05dadb02 100644 --- a/changelog.html +++ b/changelog.html @@ -1,3 +1,23 @@ +
3.5.373
+ + +
3.5.372
+ + +
3.5.371
+ +
3.5.370
-
3.5.362
- - -
3.5.361
- - -
3.5.360
- -
View Older
\ No newline at end of file diff --git a/dark.css b/dark.css index 8fd79320..bc8e0c5a 100644 --- a/dark.css +++ b/dark.css @@ -381,6 +381,8 @@ body.ffz-dark:not([data-page="teams#show"]), color: #fff; } +.ffz-dark .button--hollow { box-shadow: inset 0 0 0 1px #4b367c } + .ffz-dark .panel-formatting .panel h3 { color: inherit; } @@ -1443,49 +1445,51 @@ body.ffz-dark:not([data-page="teams#show"]), /* Search Panel */ -.ffz-dark[data-current-path="user.channel.index.index"] .searchPanel { background-color: rgba(16,16,16,0.9) } +.ffz-dark[data-current-path="user.channel.index.index"] .search-panel { background-color: rgba(16,16,16,0.9) } -.ffz-dark .searchPanel { +.ffz-dark .search-panel { background-color: #101010; color: #C3C3C3; } -.ffz-dark .searchPanel--fly:before, -.ffz-dark .searchPanel--fly:after { +.ffz-dark .search-panel--fly:before, +.ffz-dark .search-panel--fly:after { border-bottom-color: #404040; } -.ffz-dark .titleBar { +.ffz-dark .search-panel__title-bar { background-color: #090909; } -.ffz-dark .searchPanel, -.ffz-dark .titleBar, -.ffz-dark .titleBar__back { +.ffz-dark .search-panel, +.ffz-dark .search-panel__title-bar, +.ffz-dark .search-panel__title-back { border-color: rgba(255,255,255,0.2) } -.ffz-dark .titleBar__title { color: #999 } +.ffz-dark .search-panel__title { color: #999 } -.ffz-dark .titleBar__back:hover, -.ffz-dark .resultView__titlesep.isActive { background-color: #222 } - -.ffz-dark .searchPanel .card__body--overlay .card__title { - text-shadow: 1px 1px #000, -1px 1px #000, -1px -1px #000, 1px -1px #000; -} +.ffz-dark .search-panel__title-back:hover, +.ffz-dark .search-result-view__block.isActive { background-color: #222 } +.ffz-dark .search-result-view__titlesep:hover, .ffz-dark .card__title a:hover, .ffz-dark .card__info a:hover { color: #ccd; } -.ffz-dark .resultView__item .card__info span, -.ffz-dark .resultView__item .card__title, -.ffz-dark .resultView__titlesep.isActive .resultView__titleMore { color: #a68ed2 } -.ffz-dark .resultView__titlesep { +.ffz-dark .search-result-view__block .card__info span, +.ffz-dark .search-result-view__block .card__title, +.ffz-dark .search-result-view__title-more { color: #a68ed2 !important } +.ffz-dark .search-result-view__titlesep { background-color: #090909; } +.ffz-dark .search-result-view__block .card__layout:hover .card__info span, +.ffz-dark .search-result-view__block .card__layout:hover .card__title { + color: #fff !important +} + /* Channel Redesign */ diff --git a/old_changes.html b/old_changes.html index 4f15d559..310f1b8c 100644 --- a/old_changes.html +++ b/old_changes.html @@ -1,3 +1,24 @@ +
3.5.362
+ + +
3.5.361
+ + +
3.5.360
+ +
3.5.359