Skip to content

Commit

Permalink
Please see changelog 12/5/2017 5:49 UTC
Browse files Browse the repository at this point in the history
  • Loading branch information
overdodactyl committed Dec 5, 2017
1 parent e680d4e commit 57cb1be
Show file tree
Hide file tree
Showing 5 changed files with 86 additions and 12 deletions.
38 changes: 38 additions & 0 deletions changelog.md
@@ -1,3 +1,41 @@
## 12/5/2017 5:49 UTC

* Changes to the address bar/search bar

* Added support for the search bar

* Changed the border color when in focus (from blue to the default accent color used in this repository)

* Increased the contrast found when hovering over an item in the search dropdown

* Sidebar

* Changed the outline color of icons from black to light gray

* Changed the width and color of the sidebar separator.

* Downloads drop down menu from the nav bar

* Altered colors to for consistency

* Added support for the "New Update Available" pop-up

* Windows specific fixes

* Increased spacing in context menus

* Removed white line between icons and entries

* Removed menu separators

* Extensions

* Fixed an issue that caused some extension drop downs to adapt the dark them and become unreadable

* Inverted the color of the Tree Style Tabs logo in the sidebar drop down

**Huge thanks to u/markdarkness for all the helpful suggestions, opinions, caught bugs, and code contributions for Windows specific problems**

## 12/4/2017 3:23 UTC

* Added `secure_connection_colors.css`, which changes the secure connection color (green), to the default primary accent color used in this repository.
Expand Down
35 changes: 28 additions & 7 deletions userChrome-files/dark_address_bar.css
Expand Up @@ -6,20 +6,32 @@
--panel-separator-color: var(--grey-60) !important;
}



#urlbar[focused=true],
.searchbar-textbox[focused=true] {
border: 1px solid var(--primary-accent-color) !important;
box-shadow: 0 1px 4px var(--primary-accent-color) !important;
}


/* URL Bar Drop Down */

#PopupAutoCompleteRichResult .autocomplete-richlistbox {
background-color: var(--grey-60) !important;
}

#PopupAutoCompleteRichResult .autocomplete-richlistitem {
border-bottom-color: var(--primary-light-color) !important;
}


/* Hover color */
.autocomplete-richlistitem:hover,
treechildren.searchbar-treebody::-moz-tree-row(hover) {
background-color: var(--grey-70) !important;
}


#PopupAutoCompleteRichResult .autocomplete-richlistitem {
border-bottom-color: var(--primary-light-color) !important;
}

.autocomplete-richlistitem .ac-title,
.autocomplete-richlistitem .ac-action,
Expand Down Expand Up @@ -75,9 +87,8 @@ treechildren.searchbar-treebody::-moz-tree-row(hover) {
}

/* Searchbar */
/* Why won't the menu items change color?? */

/* Changes header */

panel[type="autocomplete"], panel[type="autocomplete-richlistbox"], .autocomplete-history-popup {
color: var(--primary-light-color) !important;
background: var(--primary-dark-color) !important;
Expand All @@ -86,8 +97,18 @@ panel[type="autocomplete"], panel[type="autocomplete-richlistbox"], .autocomplet

/* Changes the hover color and text color */
.autocomplete-tree {
color: var(--primary-light-color) !important;
}

.searchbar-treebody::-moz-tree-row {
background-color: var(--grey-60) !important;
color: black !important;
}

.searchbar-treebody::-moz-tree-row(hover) {
background-color: background-color: var(--grey-70) !important;
}

.searchbar-treebody::-moz-tree-row(selected) {
background-color: var(--primary-accent-color) !important;
}

21 changes: 18 additions & 3 deletions userContent.css
Expand Up @@ -14,7 +14,12 @@
--primary-accent-color-dark: #007878; /* Darker cyan color */
}

@-moz-document url-prefix(about:about), url-prefix(about:crashes), url(about:debugging), url-prefix(about:downloads), url-prefix(about:privatebrowsing), url-prefix(about:buildconfig), url-prefix(about:networking),url-prefix(about:license), url(about:studies), url(about:telemetry), url(about:support), url(about:sessionrestore), url(about:neterror), url(about:home) {
@-moz-document url-prefix(about:about), url-prefix(about:crashes), url(about:debugging),
url-prefix(about:downloads), url-prefix(about:privatebrowsing),
url-prefix(about:buildconfig), url-prefix(about:networking),
url-prefix(about:license), url(about:studies), url(about:telemetry),
url(about:support), url(about:sessionrestore), url(about:neterror), url(about:home)
url(about:debugging#addons){
:root {
--in-content-page-color: var(--primary-light-color) !important;
--in-content-page-background: var(--dark-accent) !important;
Expand Down Expand Up @@ -49,7 +54,12 @@
}


@-moz-document url(about:blank), url(about:newtab), url(about:buildconfig), url(about:), url(about:accounts), url(about:cache), url(about:memory), url(about:mozilla), url(about:performance), url(about:plugins), url(about:profiles), url(about:rights), url(about:robots), url(about:serviceworkers), url(about:studies), url(about:sync-log), url(about:url-classifier), url(about:webrtc), url(https://www.mozilla.org/credits/), url(about:sessionrestore), url(about:addons), url(about:neterror), url(about:home) {
@-moz-document url(about:blank), url(about:newtab), url(about:buildconfig), url(about:), url(about:accounts),
url(about:cache), url(about:memory), url(about:mozilla), url(about:performance),
url(about:plugins), url(about:profiles), url(about:rights), url(about:robots), url(about:serviceworkers),
url(about:studies), url(about:sync-log), url(about:url-classifier), url(about:webrtc),
url(https://www.mozilla.org/credits/), url(about:sessionrestore), url(about:addons),
url(about:neterror), url(about:home), url(about:debugging#addons) {

html:not(#ublock0-epicker), html:not(#ublock0-epicker) body, #newtab-customize-overlay {
background: var(--primary-dark-color) !important;
Expand Down Expand Up @@ -214,7 +224,7 @@

}

@-moz-document url(about:addons) {
@-moz-document url(about:addons), url(about:debugging#addons) {

.detail-view-container {
color: var(--primary-light-color) !important;
Expand Down Expand Up @@ -356,6 +366,11 @@
background-color: #4a4a4f !important;
}

/* about:debugging#addons */
.addon-target-container {
background: var(--grey-80) !important;;
}

}


Expand Down
2 changes: 1 addition & 1 deletion webextension-tweaks/stylus.css
@@ -1,7 +1,7 @@
/* Alters the preferences page */
/* IMPORTANT: change the Internal UUID */

@-moz-document url-prefix("moz-extension://3c48cf03-2bbf-b240-b420-7bb4f1a44a8c/") {
@-moz-document url-prefix("moz-extension://19684a2f-ee86-d644-961c-ab8b8ad10aca/") {

body {
background: var(--primary-dark-color) !important;
Expand Down
2 changes: 1 addition & 1 deletion webextension-tweaks/tree_style_tabs.css
@@ -1,6 +1,6 @@
/* Alters the preferences page */

@-moz-document url-prefix("moz-extension://31c49f04-168c-0b4a-a5e4-b86c6c355db3/") {
@-moz-document url-prefix("moz-extension://2a3d122c-dc21-7f4c-a805-82cbd472de98/") {
p, ul {
color: var(--primary-light-color) !important;
}
Expand Down

0 comments on commit 57cb1be

Please sign in to comment.