// ==UserScript==
// @name Allmystery Sea Green
// @namespace http://allmystery.de
// @description Allmystery light theme (black on lightgreen)
// @author Kybela
// @include https://www.allmystery.de/*
// @run-at document-start
// @version v0.0.29
// ==/UserScript==
(function() {var css = [
"body,.userinfo a, .poster, .blog-entry, .blog-entry a, .blog-entry div,[rel=\"next\"], #show_gb_post_wrap, .profile_links, .profile_links * a, .header_info, .wikiversioninfo, .wikiversioninfo a,.uicon, .icon-warn, .icon-edit,.header_info small, .header_info cite, .icon-edit::before, .thread-closed, .Info-Message-Inside, .Info-Message-Inside a,i.thread-wiki + a,.fbeitrag,.gotoext::before, .gotoext, .gotoext a, .resultinfo, #se, .post-content a, .highlighted, .quick-thread, .quick-user, .btn.icon-right, .result_threads a,.results.maincontent a big, .results.maincontent a, #chat-messages, .detailinfo a, .paginator, .paginator a, .threadHeaderLinks a span, .header_info, .header_info div, .paginator.paginatorBottom, .paginator.paginatorBottom a, .videoitem,.realtime_writers, #realtime_writers_content,#realtime_writers, .paginatorLinks, .pl .pl_selected, .pl, div#blogs-functions a, .thread_vote_container_count, .icon-right, .thread_vote_container_sub, .thread_vote_voteable.thread_vote_container, .info, .name, .api-message, .area,.header-button, small a, .titelg, .nice-doc, .nice-doc li a, .user_view a, .nice-doc a, div.last a, .in, .ena_posts, .ena_l, .ena_l a, .ena_r, .ena_r a, h2 a, h3 , .blogs-prevpost,.pnMessage,.message, .messageFunctions, .message_info,cite,.jump,.at-user, .gotoext, .toFirstUnreadPost,.threadHolder,.atu, .marker, .fh,.fd, blockquote, .finfo,.nu, .finfo_func, .icon-thread, .nice-header, .nice-title, .moreLinks, .post-content,.post_links a, .bnu, .preview-content, .thread-container, .posts-count, .last-post, div.last-post a span, a .last-post, div a .last-post, div.last-post a , .thread-category",
" {",
" background-color: #f9fff9 !important;",
" color: #000 !important;",
" }",
"",
" .adSkyscraperHolder, .adcontainer, div.brave-box.mcell:nth-of-type(3), div.brave-box.mcell_inhalt:nth-of-type(4) > div:nth-of-type(1), div.brave-box.mcell_inhalt:nth-of-type(4),div.brave-box.mcell:nth-of-type(7),div.brave-box.mcell_inhalt:nth-of-type(8),.brave-box.mcell, .brave-box.mcell_inhalt,div.mcell:nth-of-type(5),div.mcell_inhalt:nth-of-type(6),div.mcell_inhalt:nth-of-type(7),div.mcell_inhalt:nth-of-type(9),a.mcell:nth-of-type(3),a.mcell:nth-of-type(4),a.mcell:nth-of-type(5)",
" {",
" display: none !important;",
" }",
"",
" .newPostsInfo, .header_info, .marker, #marker",
" {",
" color: white !important;",
" }",
"",
" .header_info small, .header_info cite, .thread-closed i",
" {",
" color: #000 !important;",
" }",
"",
" a.bnu, a.atu",
" {",
" color: #000099 !important;",
" font-weight: bold !important;",
" }",
"",
" .finfo,.area, .fbeitrag, .threadHolder, .in, .username-info, .blogs-prevpost, a.blogs-prevpost",
" {",
" border-top-color: black !important;",
" border-top-style: solid !important;",
" border-top-width: 1px !important;",
" }",
"",
" .highlighted",
" {",
" text-decoration: underline !important;",
" }",
"",
"",
"",
" div.warn div a, div.warn, div.warn div, .header_info_warning",
" {",
" background-color: #ffe6d9 !important;",
" color: #000000 !important;",
" }",
"",
".uicon-base ",
"{",
"background-color:#000;",
"}",
"",
"",
"#blogs-new_entry, #banner, .message a, .messageFunctions a, .blogs-prevpost, .blogs-prevpost span, .blogs-prevpost span a, strong,.icon-status, i.icon-cancel, i.icon-flag, a.deleteMessage, a.reportMessage, .sub_info, .sub_info a, .sub_info_p, .sub_info_p a, .thread_add_info, .thread_add_info * a, .profile_posts a, .created_threads a, .header_info, div.header_info ",
"{",
"color:#000 !important;",
"}",
"",
"div.post-content blockquote, blockquote",
"{",
"color:#37006f !important;",
"}",
"",
" textarea",
" {",
" background-color: #ffffff !important;",
" }"
].join("\n");
if (typeof GM_addStyle != "undefined") {
GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
addStyle(css);
} else {
var node = document.createElement("style");
node.type = "text/css";
node.appendChild(document.createTextNode(css));
var heads = document.getElementsByTagName("head");
if (heads.length > 0) {
heads[0].appendChild(node);
} else {
// no head yet, stick it whereever
document.documentElement.appendChild(node);
}
}
})();