diff --git a/context-menu-cleanup.css b/context-menu-cleanup.css index 193a83b..c516ed4 100644 --- a/context-menu-cleanup.css +++ b/context-menu-cleanup.css @@ -31,16 +31,20 @@ menu[label~="QuickFox"], menu[label~="Quickfox"], menuitem[label~="Report"], menuitem[label~="dTa"], -menuitem[label="DownThemAll!..."]{ +menuitem[label="DownThemAll!..."], +menuitem[disabled="true"] +{ display: none; } #context-openlinkintab, -#context-viewimage { +#context-viewimage +{ height: 35px; } -menuseparator { +menuseparator +{ -moz-appearance: none; height: 1px; margin: 0px; diff --git a/developer-edition-dark.css b/developer-edition-dark.css index f97829e..8fa268c 100644 --- a/developer-edition-dark.css +++ b/developer-edition-dark.css @@ -231,6 +231,7 @@ * panels */ + #widget-overflow, #PanelUI-popup, #downloadsPanel, #identity-popup, @@ -239,6 +240,16 @@ filter: invert(100%) hue-rotate(180deg); } + #PanelUI-multiView, + #PanelUI-multiView panelview, + #identity-popup-multiView, + #BMB_bookmarksPopup .panel-arrowcontent, + #downloadsPanel .panel-arrowcontent + { + background-color: #E6E9EC; /* inspector body color filtered */ + } + + #widget-overflow image, #PanelUI-popup .toolbarbutton-icon, #downloadsPanel .downloadTypeIcon { @@ -251,6 +262,13 @@ } + tooltip, statuspanel[type="overLink"], + menupopup + { + filter: invert(100%) hue-rotate(180deg); + padding: 1px; + } + /* * plugin notification */ @@ -261,6 +279,11 @@ display: none; } + .notificationbox-stack + { + position: fixed; + } + /* * toolbarbuttons: hide dropmarker and open menu by default */ @@ -270,7 +293,6 @@ { padding-right: 2px !important; } - #nav-bar #greasemonkey-tbb dropmarker, #nav-bar #cookieControllerPermMenubutton dropmarker { diff --git a/dialogs-dark.css b/dialogs-dark.css index af6a0c3..4a7df07 100644 --- a/dialogs-dark.css +++ b/dialogs-dark.css @@ -15,6 +15,7 @@ @-moz-document /* settings */ + url(chrome://browser/content/aboutDialog.xul), url(chrome://messenger/content/aboutDialog.xul), url(chrome://browser/content/preferences/connection.xul), url(chrome://messenger/content/preferences/connection.xul), url(chrome://browser/content/preferences/cookies.xul), url(chrome://messenger/content/preferences/cookies.xul), url(chrome://browser/content/preferences/fonts.xul), url(chrome://messenger/content/preferences/fonts.xul), @@ -58,9 +59,14 @@ url(chrome://greasemonkey/content/options.xul), url(chrome://greasemonkey/content/newscript.xul), url(chrome://greasemonkey/content/scriptprefs.xul), - url(chrome://lastpass/content/siteinfo.xul), + url(chrome://lastpass/content/changepw.xul), url(chrome://lastpass/content/creategrp.xul), - url(chrome://treestyletab/content/config.xul) + url(chrome://lastpass/content/home2.xul), + url(chrome://lastpass/content/login.xul), + url-prefix("chrome://lastpass/content/popupfilltab.xul"), + url(chrome://lastpass/content/siteinfo.xul), + url(chrome://treestyletab/content/config.xul), + url(chrome://stylish/content/install.xul) { dialog, @@ -69,7 +75,8 @@ menupopup, page, prefwindow, - window + window, + #aboutDialog #leftBox { filter: invert(100%) hue-rotate(180deg); } diff --git a/mozilla-org-inverted.css b/mozilla-org-inverted.css index 0b28038..231d167 100644 --- a/mozilla-org-inverted.css +++ b/mozilla-org-inverted.css @@ -54,6 +54,7 @@ } @-moz-document + domain("accounts.firefox.com"), domain("bugzilla.mozilla.org"), domain("hg.mozilla.org"), domain("dxr.mozilla.org"), diff --git a/raw-text-dark.css b/raw-text-dark.css index 43e73fe..63d23d7 100644 --- a/raw-text-dark.css +++ b/raw-text-dark.css @@ -4,22 +4,35 @@ * @author Niklas Gollenstede * @licence CC-BY-SA-4.0 or MIT * @description - * Turns the backround of raw text opened in Firefox black, and the text itself white. + * Turns the backround of raw text and html opened in Firefox dark, and the text itself white. * * If you have any issues with this style, please open a ticket at https://github.com/NiklasGollenstede/stylish */ @namespace url(http://www.w3.org/1999/xhtml); -body>pre:only-child { - filter: invert(100%) hue-rotate(180deg) brightness(300%); - background: white; - padding: 15px; - font-size: 16px; +body>pre:first-child { +} +body:not(.highlight)>pre:first-child { + filter: invert(100%) hue-rotate(180deg) contrast(90%) saturate(200%) brightness(125%); + background-color: #E6E9EC; /* inspector body color filtered */ + padding: 10px; + margin: -8px; +} +body#viewsource.highlight>pre { + filter: invert(100%) hue-rotate(180deg) contrast(90%) saturate(200%) brightness(125%); + background-color: #E6E9EC; /* inspector body color filtered */ position: fixed; top: 0px; left: 0px; - height: 100%; - width: 100%; + bottom: 0px; + right: 0px; overflow: scroll; + margin: 0px; + padding: 10px 50px; +} +pre[id]:before, +span[id]:before +{ + color: #25ffc9; }