Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasGollenstede committed Jan 6, 2016
1 parent 107b4d3 commit 215d147
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 15 deletions.
10 changes: 7 additions & 3 deletions context-menu-cleanup.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
24 changes: 23 additions & 1 deletion developer-edition-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,7 @@
* panels
*/

#widget-overflow,
#PanelUI-popup,
#downloadsPanel,
#identity-popup,
Expand All @@ -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
{
Expand All @@ -251,6 +262,13 @@
}


tooltip, statuspanel[type="overLink"],
menupopup
{
filter: invert(100%) hue-rotate(180deg);
padding: 1px;
}

/*
* plugin notification
*/
Expand All @@ -261,6 +279,11 @@
display: none;
}

.notificationbox-stack
{
position: fixed;
}

/*
* toolbarbuttons: hide dropmarker and open menu by default
*/
Expand All @@ -270,7 +293,6 @@
{
padding-right: 2px !important;
}

#nav-bar #greasemonkey-tbb dropmarker,
#nav-bar #cookieControllerPermMenubutton dropmarker
{
Expand Down
13 changes: 10 additions & 3 deletions dialogs-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down Expand Up @@ -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,
Expand All @@ -69,7 +75,8 @@
menupopup,
page,
prefwindow,
window
window,
#aboutDialog #leftBox
{
filter: invert(100%) hue-rotate(180deg);
}
Expand Down
1 change: 1 addition & 0 deletions mozilla-org-inverted.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
}

@-moz-document
domain("accounts.firefox.com"),
domain("bugzilla.mozilla.org"),
domain("hg.mozilla.org"),
domain("dxr.mozilla.org"),
Expand Down
29 changes: 21 additions & 8 deletions raw-text-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit 215d147

Please sign in to comment.