diff --git a/CHANGELOG.md b/CHANGELOG.md
index 417cc0bdc..6de3d317e 100755
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,9 @@ Sometimes the changelog has notes (not comprehensive) acknowledging people's wor
### v1.11.14
+**v1.11.14.11** *(2015-10-31)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.14.11/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.14.11/builds/4chan-X-noupdate.crx "Chromium version")]
+- Match Halloween theme colors for users who haven't blocked it.
+
**v1.11.14.10** *(2015-10-31)* - [[Firefox](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.14.10/builds/4chan-X-noupdate.user.js "Firefox version")] [[Chromium](https://raw.githubusercontent.com/ccd0/4chan-x/1.11.14.10/builds/4chan-X-noupdate.crx "Chromium version")]
- Fix 4chan X UI elements becoming transparent during Halloween theme.
diff --git a/builds/4chan-X-beta.crx b/builds/4chan-X-beta.crx
index 2311bc577..8b4d61bcd 100644
Binary files a/builds/4chan-X-beta.crx and b/builds/4chan-X-beta.crx differ
diff --git a/builds/4chan-X-beta.meta.js b/builds/4chan-X-beta.meta.js
index 59198887d..bbaaf9153 100644
--- a/builds/4chan-X-beta.meta.js
+++ b/builds/4chan-X-beta.meta.js
@@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X beta
-// @version 1.11.14.10
+// @version 1.11.14.11
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
diff --git a/builds/4chan-X-beta.user.js b/builds/4chan-X-beta.user.js
index c1a88b881..d8811cda3 100644
--- a/builds/4chan-X-beta.user.js
+++ b/builds/4chan-X-beta.user.js
@@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X beta
-// @version 1.11.14.10
+// @version 1.11.14.11
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@@ -414,7 +414,7 @@
doc = d.documentElement;
g = {
- VERSION: '1.11.14.10',
+ VERSION: '1.11.14.11',
NAMESPACE: '4chan X.',
boards: {}
};
@@ -8556,7 +8556,7 @@
return this.conn.target = iframe;
},
setupJS: function() {
- return $.globalEval('(function() {\n function render() {\n var container = document.querySelector("#qr .captcha-container");\n container.dataset.widgetID = window.grecaptcha.render(container, {\n sitekey: \'6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc\',\n theme: document.documentElement.classList.contains(\'tomorrow\') ? \'dark\' : \'light\',\n callback: function(response) {\n window.dispatchEvent(new CustomEvent("captcha:success", {detail: response}));\n }\n });\n }\n if (window.grecaptcha) {\n render();\n } else {\n var cbNative = window.onRecaptchaLoaded;\n window.onRecaptchaLoaded = function() {\n render();\n cbNative();\n }\n }\n})();');
+ return $.globalEval('(function() {\n function render() {\n var container = document.querySelector("#qr .captcha-container");\n container.dataset.widgetID = window.grecaptcha.render(container, {\n sitekey: \'6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc\',\n theme: (document.documentElement.classList.contains(\'tomorrow\') || document.documentElement.classList.contains(\'spooky\')) ? \'dark\' : \'light\',\n callback: function(response) {\n window.dispatchEvent(new CustomEvent("captcha:success", {detail: response}));\n }\n });\n }\n if (window.grecaptcha) {\n render();\n } else {\n var cbNative = window.onRecaptchaLoaded;\n window.onRecaptchaLoaded = function() {\n render();\n cbNative();\n }\n }\n})();');
},
afterSetup: function(mutations) {
var iframe, k, len1, len2, mutation, node, q, ref, textarea;
@@ -17462,7 +17462,14 @@
return Main.setClass();
},
setClass: function() {
- var mainStyleSheet, setStyle, style, styleSheets;
+ var mainStyleSheet, setStyle, spooky, style, styleSheets;
+ if ((spooky = $('link[rel="stylesheet"][href^="//s.4cdn.org/css/spooky."]', d.head))) {
+ spooky.removeAttribute('media');
+ if (getComputedStyle(d.body).color === 'rgb(196, 151, 86)') {
+ $.addClass(doc, 'spooky');
+ return;
+ }
+ }
if (g.VIEW === 'catalog') {
$.addClass(doc, $.id('base-css').href.match(/catalog_(\w+)/)[1].replace('_new', '').replace(/_+/g, '-'));
return;
@@ -20876,6 +20883,126 @@
":root.photon div.boardTitle {\n" +
" font-family: sans-serif !important;\n" +
" text-shadow: 1px 1px 1px rgba(0,74,153,0.6);\n" +
+"}\n" +
+"/* General */\n" +
+":root.spooky .dialog {\n" +
+" background-color: #171526;\n" +
+" border-color: #707070;\n" +
+"}\n" +
+":root.spooky .field:focus,\n" +
+":root.spooky .field.focus {\n" +
+" border-color: #98E;\n" +
+"}\n" +
+"/* Header */\n" +
+":root.spooky #header-bar.dialog {\n" +
+" background-color: rgba(23,21,38,0.98);\n" +
+"}\n" +
+":root.spooky:not(.fixed) #header-bar, :root.spooky #notifications {\n" +
+" font-size: 9pt;\n" +
+"}\n" +
+":root.spooky #header-bar, :root.spooky #notifications {\n" +
+" color: #C49756;\n" +
+"}\n" +
+":root.spooky #board-list a, :root.spooky #shortcuts a {\n" +
+" color: #FE9600;\n" +
+"}\n" +
+":root.spooky.fixed #custom-board-list .current:hover {\n" +
+" border-bottom-color: rgba(255,0,0,0.2);\n" +
+"}\n" +
+"/* Settings */\n" +
+":root.spooky #fourchanx-settings fieldset, :root.spooky .section-main div::before {\n" +
+" border-color: #707070;\n" +
+"}\n" +
+":root.spooky .suboption-list > div:last-of-type {\n" +
+" background-color: #171526;\n" +
+"}\n" +
+"/* Quote */\n" +
+":root.spooky .catalog-thread > .comment > span.quote, :root.spooky #arc-list span.quote {\n" +
+" color: #634C2C;\n" +
+"}\n" +
+":root.spooky .backlink.deadlink {\n" +
+" color: #FE9600 !important;\n" +
+"}\n" +
+":root.spooky .inline {\n" +
+" border-color: #707070;\n" +
+" background-color: rgba(255, 255, 255, .14);\n" +
+"}\n" +
+"/* QR */\n" +
+".spooky #dump-list::-webkit-scrollbar-thumb {\n" +
+" background-color: #171526;\n" +
+" border-color: #707070;\n" +
+"}\n" +
+":root.spooky .qr-preview {\n" +
+" background-color: rgba(0, 0, 0, .15);\n" +
+"}\n" +
+":root.spooky #qr .field {\n" +
+" background-color: rgb(26, 27, 29);\n" +
+" color: rgb(197,200,198);\n" +
+" border-color: rgb(40, 41, 42);\n" +
+"}\n" +
+":root.spooky #qr .field:focus,\n" +
+":root.spooky #qr .field.focus {\n" +
+" border-color: rgb(254, 150, 0) !important;\n" +
+" background-color: rgb(30,32,36);\n" +
+"}\n" +
+":root.spooky .persona button {\n" +
+" background: linear-gradient(to bottom, #2E3035, #222427) no-repeat;\n" +
+" color: rgb(197,200,198);\n" +
+" border-color: rgb(40, 41, 42);\n" +
+" outline: none;\n" +
+"}\n" +
+":root.spooky .persona button::-moz-focus-inner {\n" +
+" border: none;\n" +
+"}\n" +
+":root.spooky .persona button:focus {\n" +
+" border-color: rgb(254, 150, 0);\n" +
+"}\n" +
+":root.spooky #qr.sjis-preview #sjis-toggle,\n" +
+":root.spooky #qr.tex-preview #tex-preview-button {\n" +
+" background: rgb(26, 27, 29);\n" +
+"}\n" +
+":root.spooky #qr select,\n" +
+":root.spooky #file-n-submit > input,\n" +
+":root.spooky #qr-draw-button {\n" +
+" border-color: rgb(40, 41, 42);\n" +
+"}\n" +
+":root.spooky #qr-filename {\n" +
+" color: rgb(197,200,198);\n" +
+"}\n" +
+":root.spooky .qr-link {\n" +
+" border-color: rgb(8, 6, 23) rgb(8, 6, 23) rgb(0, 0, 8);\n" +
+" background: linear-gradient(#262435, #171526) repeat scroll 0% 0% transparent;\n" +
+"}\n" +
+":root.spooky .qr-link:hover {\n" +
+" background: #1A1829;\n" +
+"}\n" +
+"/* Menu */\n" +
+":root.spooky #menu {\n" +
+" color: #FE9600;\n" +
+"}\n" +
+":root.spooky .entry {\n" +
+" font-size: 10pt;\n" +
+"}\n" +
+":root.spooky .focused.entry {\n" +
+" background: rgba(255, 255, 255, .33);\n" +
+"}\n" +
+"/* Unread */\n" +
+":root.spooky #unread-line {\n" +
+" border-color: rgb(197, 200, 198);\n" +
+"}\n" +
+"/* Thread Watcher */\n" +
+":root.spooky .replies-quoting-you > a, :root.spooky #watcher-link.disabled.replies-quoting-you {\n" +
+" color: #F00 !important;\n" +
+"}\n" +
+"/* Watcher Favicon */\n" +
+":root.spooky .watch-thread-link\n" +
+"{\n" +
+" background-image: url(\"data:image/svg+xml,\");\n" +
+"}\n" +
+"/* Board Title */\n" +
+":root.spooky div.boardTitle {\n" +
+" font-family: sans-serif !important;\n" +
+" text-shadow: 1px 1px 1px rgba(105,10,15,0.6);\n" +
"}",
cssWWW: "#captcha-cnt {\n" +
" height: auto;\n" +
diff --git a/builds/4chan-X-noupdate.crx b/builds/4chan-X-noupdate.crx
index b6ba3beed..6271fdeea 100644
Binary files a/builds/4chan-X-noupdate.crx and b/builds/4chan-X-noupdate.crx differ
diff --git a/builds/4chan-X-noupdate.user.js b/builds/4chan-X-noupdate.user.js
index f8d490493..84b9a3957 100644
--- a/builds/4chan-X-noupdate.user.js
+++ b/builds/4chan-X-noupdate.user.js
@@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
-// @version 1.11.14.10
+// @version 1.11.14.11
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@@ -414,7 +414,7 @@
doc = d.documentElement;
g = {
- VERSION: '1.11.14.10',
+ VERSION: '1.11.14.11',
NAMESPACE: '4chan X.',
boards: {}
};
@@ -8556,7 +8556,7 @@
return this.conn.target = iframe;
},
setupJS: function() {
- return $.globalEval('(function() {\n function render() {\n var container = document.querySelector("#qr .captcha-container");\n container.dataset.widgetID = window.grecaptcha.render(container, {\n sitekey: \'6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc\',\n theme: document.documentElement.classList.contains(\'tomorrow\') ? \'dark\' : \'light\',\n callback: function(response) {\n window.dispatchEvent(new CustomEvent("captcha:success", {detail: response}));\n }\n });\n }\n if (window.grecaptcha) {\n render();\n } else {\n var cbNative = window.onRecaptchaLoaded;\n window.onRecaptchaLoaded = function() {\n render();\n cbNative();\n }\n }\n})();');
+ return $.globalEval('(function() {\n function render() {\n var container = document.querySelector("#qr .captcha-container");\n container.dataset.widgetID = window.grecaptcha.render(container, {\n sitekey: \'6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc\',\n theme: (document.documentElement.classList.contains(\'tomorrow\') || document.documentElement.classList.contains(\'spooky\')) ? \'dark\' : \'light\',\n callback: function(response) {\n window.dispatchEvent(new CustomEvent("captcha:success", {detail: response}));\n }\n });\n }\n if (window.grecaptcha) {\n render();\n } else {\n var cbNative = window.onRecaptchaLoaded;\n window.onRecaptchaLoaded = function() {\n render();\n cbNative();\n }\n }\n})();');
},
afterSetup: function(mutations) {
var iframe, k, len1, len2, mutation, node, q, ref, textarea;
@@ -17462,7 +17462,14 @@
return Main.setClass();
},
setClass: function() {
- var mainStyleSheet, setStyle, style, styleSheets;
+ var mainStyleSheet, setStyle, spooky, style, styleSheets;
+ if ((spooky = $('link[rel="stylesheet"][href^="//s.4cdn.org/css/spooky."]', d.head))) {
+ spooky.removeAttribute('media');
+ if (getComputedStyle(d.body).color === 'rgb(196, 151, 86)') {
+ $.addClass(doc, 'spooky');
+ return;
+ }
+ }
if (g.VIEW === 'catalog') {
$.addClass(doc, $.id('base-css').href.match(/catalog_(\w+)/)[1].replace('_new', '').replace(/_+/g, '-'));
return;
@@ -20876,6 +20883,126 @@
":root.photon div.boardTitle {\n" +
" font-family: sans-serif !important;\n" +
" text-shadow: 1px 1px 1px rgba(0,74,153,0.6);\n" +
+"}\n" +
+"/* General */\n" +
+":root.spooky .dialog {\n" +
+" background-color: #171526;\n" +
+" border-color: #707070;\n" +
+"}\n" +
+":root.spooky .field:focus,\n" +
+":root.spooky .field.focus {\n" +
+" border-color: #98E;\n" +
+"}\n" +
+"/* Header */\n" +
+":root.spooky #header-bar.dialog {\n" +
+" background-color: rgba(23,21,38,0.98);\n" +
+"}\n" +
+":root.spooky:not(.fixed) #header-bar, :root.spooky #notifications {\n" +
+" font-size: 9pt;\n" +
+"}\n" +
+":root.spooky #header-bar, :root.spooky #notifications {\n" +
+" color: #C49756;\n" +
+"}\n" +
+":root.spooky #board-list a, :root.spooky #shortcuts a {\n" +
+" color: #FE9600;\n" +
+"}\n" +
+":root.spooky.fixed #custom-board-list .current:hover {\n" +
+" border-bottom-color: rgba(255,0,0,0.2);\n" +
+"}\n" +
+"/* Settings */\n" +
+":root.spooky #fourchanx-settings fieldset, :root.spooky .section-main div::before {\n" +
+" border-color: #707070;\n" +
+"}\n" +
+":root.spooky .suboption-list > div:last-of-type {\n" +
+" background-color: #171526;\n" +
+"}\n" +
+"/* Quote */\n" +
+":root.spooky .catalog-thread > .comment > span.quote, :root.spooky #arc-list span.quote {\n" +
+" color: #634C2C;\n" +
+"}\n" +
+":root.spooky .backlink.deadlink {\n" +
+" color: #FE9600 !important;\n" +
+"}\n" +
+":root.spooky .inline {\n" +
+" border-color: #707070;\n" +
+" background-color: rgba(255, 255, 255, .14);\n" +
+"}\n" +
+"/* QR */\n" +
+".spooky #dump-list::-webkit-scrollbar-thumb {\n" +
+" background-color: #171526;\n" +
+" border-color: #707070;\n" +
+"}\n" +
+":root.spooky .qr-preview {\n" +
+" background-color: rgba(0, 0, 0, .15);\n" +
+"}\n" +
+":root.spooky #qr .field {\n" +
+" background-color: rgb(26, 27, 29);\n" +
+" color: rgb(197,200,198);\n" +
+" border-color: rgb(40, 41, 42);\n" +
+"}\n" +
+":root.spooky #qr .field:focus,\n" +
+":root.spooky #qr .field.focus {\n" +
+" border-color: rgb(254, 150, 0) !important;\n" +
+" background-color: rgb(30,32,36);\n" +
+"}\n" +
+":root.spooky .persona button {\n" +
+" background: linear-gradient(to bottom, #2E3035, #222427) no-repeat;\n" +
+" color: rgb(197,200,198);\n" +
+" border-color: rgb(40, 41, 42);\n" +
+" outline: none;\n" +
+"}\n" +
+":root.spooky .persona button::-moz-focus-inner {\n" +
+" border: none;\n" +
+"}\n" +
+":root.spooky .persona button:focus {\n" +
+" border-color: rgb(254, 150, 0);\n" +
+"}\n" +
+":root.spooky #qr.sjis-preview #sjis-toggle,\n" +
+":root.spooky #qr.tex-preview #tex-preview-button {\n" +
+" background: rgb(26, 27, 29);\n" +
+"}\n" +
+":root.spooky #qr select,\n" +
+":root.spooky #file-n-submit > input,\n" +
+":root.spooky #qr-draw-button {\n" +
+" border-color: rgb(40, 41, 42);\n" +
+"}\n" +
+":root.spooky #qr-filename {\n" +
+" color: rgb(197,200,198);\n" +
+"}\n" +
+":root.spooky .qr-link {\n" +
+" border-color: rgb(8, 6, 23) rgb(8, 6, 23) rgb(0, 0, 8);\n" +
+" background: linear-gradient(#262435, #171526) repeat scroll 0% 0% transparent;\n" +
+"}\n" +
+":root.spooky .qr-link:hover {\n" +
+" background: #1A1829;\n" +
+"}\n" +
+"/* Menu */\n" +
+":root.spooky #menu {\n" +
+" color: #FE9600;\n" +
+"}\n" +
+":root.spooky .entry {\n" +
+" font-size: 10pt;\n" +
+"}\n" +
+":root.spooky .focused.entry {\n" +
+" background: rgba(255, 255, 255, .33);\n" +
+"}\n" +
+"/* Unread */\n" +
+":root.spooky #unread-line {\n" +
+" border-color: rgb(197, 200, 198);\n" +
+"}\n" +
+"/* Thread Watcher */\n" +
+":root.spooky .replies-quoting-you > a, :root.spooky #watcher-link.disabled.replies-quoting-you {\n" +
+" color: #F00 !important;\n" +
+"}\n" +
+"/* Watcher Favicon */\n" +
+":root.spooky .watch-thread-link\n" +
+"{\n" +
+" background-image: url(\"data:image/svg+xml,\");\n" +
+"}\n" +
+"/* Board Title */\n" +
+":root.spooky div.boardTitle {\n" +
+" font-family: sans-serif !important;\n" +
+" text-shadow: 1px 1px 1px rgba(105,10,15,0.6);\n" +
"}",
cssWWW: "#captcha-cnt {\n" +
" height: auto;\n" +
diff --git a/builds/4chan-X.crx b/builds/4chan-X.crx
index 21354751f..6a58af6df 100644
Binary files a/builds/4chan-X.crx and b/builds/4chan-X.crx differ
diff --git a/builds/4chan-X.meta.js b/builds/4chan-X.meta.js
index 7bf364e73..269b91876 100644
--- a/builds/4chan-X.meta.js
+++ b/builds/4chan-X.meta.js
@@ -1,6 +1,6 @@
// ==UserScript==
// @name 4chan X
-// @version 1.11.14.10
+// @version 1.11.14.11
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
diff --git a/builds/4chan-X.user.js b/builds/4chan-X.user.js
index d49bc6c6e..127b80707 100644
--- a/builds/4chan-X.user.js
+++ b/builds/4chan-X.user.js
@@ -1,7 +1,7 @@
// Generated by CoffeeScript
// ==UserScript==
// @name 4chan X
-// @version 1.11.14.10
+// @version 1.11.14.11
// @minGMVer 1.14
// @minFFVer 26
// @namespace 4chan-X
@@ -414,7 +414,7 @@
doc = d.documentElement;
g = {
- VERSION: '1.11.14.10',
+ VERSION: '1.11.14.11',
NAMESPACE: '4chan X.',
boards: {}
};
@@ -8556,7 +8556,7 @@
return this.conn.target = iframe;
},
setupJS: function() {
- return $.globalEval('(function() {\n function render() {\n var container = document.querySelector("#qr .captcha-container");\n container.dataset.widgetID = window.grecaptcha.render(container, {\n sitekey: \'6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc\',\n theme: document.documentElement.classList.contains(\'tomorrow\') ? \'dark\' : \'light\',\n callback: function(response) {\n window.dispatchEvent(new CustomEvent("captcha:success", {detail: response}));\n }\n });\n }\n if (window.grecaptcha) {\n render();\n } else {\n var cbNative = window.onRecaptchaLoaded;\n window.onRecaptchaLoaded = function() {\n render();\n cbNative();\n }\n }\n})();');
+ return $.globalEval('(function() {\n function render() {\n var container = document.querySelector("#qr .captcha-container");\n container.dataset.widgetID = window.grecaptcha.render(container, {\n sitekey: \'6Ldp2bsSAAAAAAJ5uyx_lx34lJeEpTLVkP5k04qc\',\n theme: (document.documentElement.classList.contains(\'tomorrow\') || document.documentElement.classList.contains(\'spooky\')) ? \'dark\' : \'light\',\n callback: function(response) {\n window.dispatchEvent(new CustomEvent("captcha:success", {detail: response}));\n }\n });\n }\n if (window.grecaptcha) {\n render();\n } else {\n var cbNative = window.onRecaptchaLoaded;\n window.onRecaptchaLoaded = function() {\n render();\n cbNative();\n }\n }\n})();');
},
afterSetup: function(mutations) {
var iframe, k, len1, len2, mutation, node, q, ref, textarea;
@@ -17462,7 +17462,14 @@
return Main.setClass();
},
setClass: function() {
- var mainStyleSheet, setStyle, style, styleSheets;
+ var mainStyleSheet, setStyle, spooky, style, styleSheets;
+ if ((spooky = $('link[rel="stylesheet"][href^="//s.4cdn.org/css/spooky."]', d.head))) {
+ spooky.removeAttribute('media');
+ if (getComputedStyle(d.body).color === 'rgb(196, 151, 86)') {
+ $.addClass(doc, 'spooky');
+ return;
+ }
+ }
if (g.VIEW === 'catalog') {
$.addClass(doc, $.id('base-css').href.match(/catalog_(\w+)/)[1].replace('_new', '').replace(/_+/g, '-'));
return;
@@ -20876,6 +20883,126 @@
":root.photon div.boardTitle {\n" +
" font-family: sans-serif !important;\n" +
" text-shadow: 1px 1px 1px rgba(0,74,153,0.6);\n" +
+"}\n" +
+"/* General */\n" +
+":root.spooky .dialog {\n" +
+" background-color: #171526;\n" +
+" border-color: #707070;\n" +
+"}\n" +
+":root.spooky .field:focus,\n" +
+":root.spooky .field.focus {\n" +
+" border-color: #98E;\n" +
+"}\n" +
+"/* Header */\n" +
+":root.spooky #header-bar.dialog {\n" +
+" background-color: rgba(23,21,38,0.98);\n" +
+"}\n" +
+":root.spooky:not(.fixed) #header-bar, :root.spooky #notifications {\n" +
+" font-size: 9pt;\n" +
+"}\n" +
+":root.spooky #header-bar, :root.spooky #notifications {\n" +
+" color: #C49756;\n" +
+"}\n" +
+":root.spooky #board-list a, :root.spooky #shortcuts a {\n" +
+" color: #FE9600;\n" +
+"}\n" +
+":root.spooky.fixed #custom-board-list .current:hover {\n" +
+" border-bottom-color: rgba(255,0,0,0.2);\n" +
+"}\n" +
+"/* Settings */\n" +
+":root.spooky #fourchanx-settings fieldset, :root.spooky .section-main div::before {\n" +
+" border-color: #707070;\n" +
+"}\n" +
+":root.spooky .suboption-list > div:last-of-type {\n" +
+" background-color: #171526;\n" +
+"}\n" +
+"/* Quote */\n" +
+":root.spooky .catalog-thread > .comment > span.quote, :root.spooky #arc-list span.quote {\n" +
+" color: #634C2C;\n" +
+"}\n" +
+":root.spooky .backlink.deadlink {\n" +
+" color: #FE9600 !important;\n" +
+"}\n" +
+":root.spooky .inline {\n" +
+" border-color: #707070;\n" +
+" background-color: rgba(255, 255, 255, .14);\n" +
+"}\n" +
+"/* QR */\n" +
+".spooky #dump-list::-webkit-scrollbar-thumb {\n" +
+" background-color: #171526;\n" +
+" border-color: #707070;\n" +
+"}\n" +
+":root.spooky .qr-preview {\n" +
+" background-color: rgba(0, 0, 0, .15);\n" +
+"}\n" +
+":root.spooky #qr .field {\n" +
+" background-color: rgb(26, 27, 29);\n" +
+" color: rgb(197,200,198);\n" +
+" border-color: rgb(40, 41, 42);\n" +
+"}\n" +
+":root.spooky #qr .field:focus,\n" +
+":root.spooky #qr .field.focus {\n" +
+" border-color: rgb(254, 150, 0) !important;\n" +
+" background-color: rgb(30,32,36);\n" +
+"}\n" +
+":root.spooky .persona button {\n" +
+" background: linear-gradient(to bottom, #2E3035, #222427) no-repeat;\n" +
+" color: rgb(197,200,198);\n" +
+" border-color: rgb(40, 41, 42);\n" +
+" outline: none;\n" +
+"}\n" +
+":root.spooky .persona button::-moz-focus-inner {\n" +
+" border: none;\n" +
+"}\n" +
+":root.spooky .persona button:focus {\n" +
+" border-color: rgb(254, 150, 0);\n" +
+"}\n" +
+":root.spooky #qr.sjis-preview #sjis-toggle,\n" +
+":root.spooky #qr.tex-preview #tex-preview-button {\n" +
+" background: rgb(26, 27, 29);\n" +
+"}\n" +
+":root.spooky #qr select,\n" +
+":root.spooky #file-n-submit > input,\n" +
+":root.spooky #qr-draw-button {\n" +
+" border-color: rgb(40, 41, 42);\n" +
+"}\n" +
+":root.spooky #qr-filename {\n" +
+" color: rgb(197,200,198);\n" +
+"}\n" +
+":root.spooky .qr-link {\n" +
+" border-color: rgb(8, 6, 23) rgb(8, 6, 23) rgb(0, 0, 8);\n" +
+" background: linear-gradient(#262435, #171526) repeat scroll 0% 0% transparent;\n" +
+"}\n" +
+":root.spooky .qr-link:hover {\n" +
+" background: #1A1829;\n" +
+"}\n" +
+"/* Menu */\n" +
+":root.spooky #menu {\n" +
+" color: #FE9600;\n" +
+"}\n" +
+":root.spooky .entry {\n" +
+" font-size: 10pt;\n" +
+"}\n" +
+":root.spooky .focused.entry {\n" +
+" background: rgba(255, 255, 255, .33);\n" +
+"}\n" +
+"/* Unread */\n" +
+":root.spooky #unread-line {\n" +
+" border-color: rgb(197, 200, 198);\n" +
+"}\n" +
+"/* Thread Watcher */\n" +
+":root.spooky .replies-quoting-you > a, :root.spooky #watcher-link.disabled.replies-quoting-you {\n" +
+" color: #F00 !important;\n" +
+"}\n" +
+"/* Watcher Favicon */\n" +
+":root.spooky .watch-thread-link\n" +
+"{\n" +
+" background-image: url(\"data:image/svg+xml,\");\n" +
+"}\n" +
+"/* Board Title */\n" +
+":root.spooky div.boardTitle {\n" +
+" font-family: sans-serif !important;\n" +
+" text-shadow: 1px 1px 1px rgba(105,10,15,0.6);\n" +
"}",
cssWWW: "#captcha-cnt {\n" +
" height: auto;\n" +
diff --git a/builds/4chan-X.zip b/builds/4chan-X.zip
index 0b864f891..225030f5b 100644
Binary files a/builds/4chan-X.zip and b/builds/4chan-X.zip differ
diff --git a/builds/updates-beta.xml b/builds/updates-beta.xml
index 16e7bb994..10174a403 100644
--- a/builds/updates-beta.xml
+++ b/builds/updates-beta.xml
@@ -1,7 +1,7 @@
-
+
diff --git a/builds/updates.xml b/builds/updates.xml
index 1cd1fc874..e781df268 100644
--- a/builds/updates.xml
+++ b/builds/updates.xml
@@ -1,7 +1,7 @@
-
+
diff --git a/package.json b/package.json
index a1ebfd03d..68ea96f66 100644
--- a/package.json
+++ b/package.json
@@ -4,8 +4,8 @@
"meta": {
"name": "4chan X",
"fork": "ccd0",
- "version": "1.11.14.10",
- "date": "2015-10-31T18:40:53.889Z",
+ "version": "1.11.14.11",
+ "date": "2015-10-31T23:51:18.230Z",
"page": "https://www.4chan-x.net/",
"downloads": "https://www.4chan-x.net/builds/",
"oldVersions": "https://raw.githubusercontent.com/ccd0/4chan-x/",