Skip to content

Commit

Permalink
v1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Aris-t2 committed Oct 11, 2017
1 parent 8cacb54 commit 8ce5d01
Show file tree
Hide file tree
Showing 17 changed files with 298 additions and 44 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ Restart Firefox for changes to take effect.</br>
<b>Insert related tab after current tab</b> (suggestion: enabled)</br>
<i>browser.tabs.insertRelatedAfterCurrent</i></br>
</br>
<b>Hide 'http://' from url</b> (suggestion: disabled)</br>
<i>browser.urlbar.trimURLs</i></br>
</br>
<b>Open links in new tab/window</b></br>
<i>browser.link.open_newwindow.restriction</i> &gt; 0 (new tab instead window)</br>
</br>
<b>Preview tabs using 'Ctrl + Tab'</b></br>
<i>browser.ctrlTab.previews</i></br>
</br>
Expand Down Expand Up @@ -147,6 +153,4 @@ Restart Firefox for changes to take effect.</br>
<i>toolkit.telemetry.shutdownPingSender.enabled</i></br>
<i>toolkit.telemetry.unified</i></br>
<i>toolkit.telemetry.updatePing.enabled</i></br>
<i>browser.selfsupport.enabled</i></br>
<i>browser.selfsupport.url &gt; ""</i></br>

</br>
15 changes: 15 additions & 0 deletions classic/css/aboutaddons/addons_manager_alternative_appearance.css
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,21 @@
#nav-header #forward-btn {
visibility: hidden !important;
}

/* tweaks for small windows */
@media (max-width: 830px) {

.category {
padding-inline-start: 10px !important;
margin-inline-end: 0px !important;
}

.main-content {
padding-left: 28px !important;
padding-right: 28px !important;
}

}

}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

.category {
margin-inline-start: 0px !important;
padding-inline-end: 0px !important;
}

page,
Expand All @@ -25,23 +26,25 @@
}
}

#searchInput {
/*#searchInput {
margin-top: 0px !important;
}
}*/

#categories {
background: transparent !important;
}

.groupbox-body,
#dialogFrame{
background-color: white !important;
}

.search-container {
background: transparent !important;
position: absolute !important;
top: 20px !important;
}

.header-name {
visibility: collapse !important;
}
Expand Down Expand Up @@ -185,6 +188,21 @@
outline: unset !important;
}

/* tweaks for small windows */
@media (max-width: 830px) {

.category {
padding-inline-start: 10px !important;
margin-inline-end: 0px !important;
}

.main-content {
padding-left: 28px !important;
padding-right: 28px !important;
}

}

}

/* preference sub windows */
Expand Down Expand Up @@ -245,4 +263,5 @@
*[subdialog="true"] .autocomplete-tree treecols,
*[subdialog="true"] .autocomplete-tree treecol {
height: unset !important;
}
}

18 changes: 18 additions & 0 deletions classic/css/buttons/zoom_buttons_hide_reset.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/*AGENT_SHEET*/

/* Firefox 57+ userChrome.css tweaks ****************************************************/
/* code mostly taken from 'Classic Theme Restorer' & 'Classic Toolbar Buttons' add-ons **/
/* by Aris ([email protected])*********************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************************/

toolbar #zoom-controls > separator,
toolbar #zoom-controls > #zoom-reset-button{
visibility: collapse !important;
}
#nav-bar #zoom-in-button{
-moz-padding-start:2px !important;
}
#nav-bar #zoom-out-button{
-moz-padding-end:2px !important;
}
4 changes: 2 additions & 2 deletions classic/css/generalui/searchbar_hide_glassplus_indicator.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@


/* remove search indicators '+' sign */
.searchbar-search-button[addengines="true"] {
list-style-image: url("chrome://browser/skin/search-indicator.png") !important;
.searchbar-search-button[addengines=true] > .searchbar-search-icon-overlay {
visibility: hidden !important;
}
12 changes: 12 additions & 0 deletions classic/css/locationbar/go_button_in_location_bar_hidden.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*AGENT_SHEET*/

/* Firefox 57+ userChrome.css tweaks ****************************************************/
/* code mostly taken from 'Classic Theme Restorer' & 'Classic Toolbar Buttons' add-ons **/
/* by Aris ([email protected])*********************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************************/

/* hide urlbars go button */
#urlbar-container .urlbar-go-button{
visibility: collapse !important;
}
24 changes: 5 additions & 19 deletions classic/css/tabs/classic_squared_tabs.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,35 +34,31 @@
color: #000000 !important;
}

/* default grey tabs */
/* default tabs color */
#TabsToolbar:not(:-moz-lwtheme) .tabs-newtab-button,
#TabsToolbar:not(:-moz-lwtheme) .tabbrowser-tab .tab-content {
background-image: linear-gradient(to top,#aeaba5,#c1beb7,#c9c6be) !important;
}
/* selected tabs color */
#TabsToolbar:not(:-moz-lwtheme) .tabbrowser-tab .tab-content[selected="true"] {
background-image: linear-gradient(to top,#f9f9fa,#f9f9fa,#f9f9fa) !important;
}
/* hovered tabs color */
#TabsToolbar:not(:-moz-lwtheme) .tabs-newtab-button:hover,
#TabsToolbar:not(:-moz-lwtheme) .tabbrowser-tab:hover .tab-content:not([selected="true"]) {
background-image: linear-gradient(to top,#cac7c1,#d5d2cc,#e8e6e2) !important;
}

/* unloaded tab *//*
/* unloaded/pending tabs color *//*
#TabsToolbar:not(:-moz-lwtheme) .tabbrowser-tab[pending] .tab-content {
background: red !important;
}
/* unread tab *//*
/* unread tabs color *//*
#TabsToolbar:not(:-moz-lwtheme) .tabbrowser-tab[unread] .tab-content {
background: purple !important;
}
/* bold text on selected tab *//*
.tabbrowser-tab[selected="true"] {
font-weight: bold !important;
}
*/

/* default aeroblue tabs on Windows 7 & Vista */
@media (-moz-os-version: windows-win7),(-moz-os-version: windows-vista) {
@media not all and (-moz-windows-classic) {
Expand Down Expand Up @@ -244,16 +240,6 @@
margin-bottom: -8px !important;
}

/* tab close - always visible*/
#TabsToolbar #tabbrowser-tabs .tabbrowser-tab:not([pinned]):not([protected]) .tab-close-button {
visibility: visible !important;
display: block !important;
}
#TabsToolbar #tabbrowser-tabs .tabbrowser-tab:not([pinned]):not([protected])[faviconized="true"] .tab-close-button {
visibility: collapse !important;
display: none !important;
}

/*tab favicon position*/
.tabbrowser-tab:not([pinned]):not([locked]) .tab-throbber,
.tabbrowser-tab:not([pinned]) .tab-icon-image{
Expand Down
10 changes: 0 additions & 10 deletions classic/css/tabs/classic_squared_tabs_australized.css
Original file line number Diff line number Diff line change
Expand Up @@ -249,16 +249,6 @@
margin-bottom: -8px !important;
}

/* tab close - always visible*/
#TabsToolbar #tabbrowser-tabs .tabbrowser-tab:not([pinned]):not([protected]) .tab-close-button {
visibility: visible !important;
display: block !important;
}
#TabsToolbar #tabbrowser-tabs .tabbrowser-tab:not([pinned]):not([protected])[faviconized="true"] .tab-close-button {
visibility: collapse !important;
display: none !important;
}

/*tab favicon position*/
.tabbrowser-tab:not([pinned]):not([locked]) .tab-throbber,
.tabbrowser-tab:not([pinned]) .tab-icon-image{
Expand Down
118 changes: 118 additions & 0 deletions classic/css/tabs/custom_text_settings.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,118 @@
/*AGENT_SHEET*/

/* Firefox 57+ userChrome.css tweaks ****************************************************/
/* code mostly taken from 'Classic Theme Restorer' & 'Classic Toolbar Buttons' add-ons **/
/* by Aris ([email protected])*********************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************************/

/*******************************************/
/* default tab *****************************/

/* text color */
.tabbrowser-tab .tab-label {
color: black !important;
}
/* text shadow */
.tabbrowser-tab .tab-label {
text-shadow: 0px 1px 0px white,
0px 1px 4px white !important;
}
/*bold*//*
.tabbrowser-tab .tab-label {
font-weight: bold !important;
}
/* italic *//*
.tabbrowser-tab .tab-label {
font-style: italic !important;
}
/*******************************************/
/* selected tab ****************************/

/* text color */
.tabbrowser-tab[selected] .tab-label {
color: blue !important;
}
/* text shadow */
.tabbrowser-tab[selected] .tab-label {
text-shadow: 0px 1px 0px white,
0px 1px 4px white !important;
}
/*bold*/
.tabbrowser-tab[selected] .tab-label {
font-weight: bold !important;
}
/* italic *//*
.tabbrowser-tab[selected] .tab-label {
font-style: italic !important;
}
/*******************************************/
/* hovered tab ****************************/

/* text color *//*
.tabbrowser-tab:hover:not([selected]) .tab-label {
color: black !important;
}
/* text shadow */
.tabbrowser-tab:hover:not([selected]) .tab-label {
text-shadow: 0px 1px 0px white,
0px 1px 4px white !important;
}
/*bold*/
.tabbrowser-tab:hover:not([selected]) .tab-label {
font-weight: bold !important;
}
/* italic *//*
.tabbrowser-tab:hover:not([selected]) .tab-label {
font-style: italic !important;
}
/*******************************************/
/* unloaded/pending tab ********************/

/* text color */
.tabbrowser-tab[pending] .tab-label {
color: purple !important;
}
/* text shadow */
.tabbrowser-tab[pending] .tab-label {
text-shadow: 0px 1px 0px white,
0px 1px 4px white !important;
}
/*bold*/
.tabbrowser-tab[pending] .tab-label {
font-weight: bold !important;
}
/* italic */
.tabbrowser-tab[pending] .tab-label {
font-style: italic !important;
}


/*******************************************/
/* unread tab ******************************/

/* text color */
.tabbrowser-tab[unread] .tab-label {
color: red !important;
}
/* text shadow */
.tabbrowser-tab[unread] .tab-label {
text-shadow: 0px 1px 0px white,
0px 1px 4px white !important;
}
/*bold*/
.tabbrowser-tab[unread] .tab-label {
font-weight: bold !important;
}
/* italic */
.tabbrowser-tab[unread] .tab-label {
font-style: italic !important;
}

/**/
17 changes: 17 additions & 0 deletions classic/css/tabs/pinnedtab_hide_empty_icon.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/*AGENT_SHEET*/

/* Firefox 57+ userChrome.css tweaks ****************************************************/
/* code mostly taken from 'Classic Theme Restorer' & 'Classic Toolbar Buttons' add-ons **/
/* by Aris ([email protected])*********************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************************/

.tabbrowser-tab[pinned] .tab-icon-image:not([src]) {
visibility: hidden !important;
}

.tabbrowser-tab[pinned] .tab-text {
display: none !important;
}

/**/
12 changes: 12 additions & 0 deletions classic/css/tabs/show_alltabs_button.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*AGENT_SHEET*/

/* Firefox 57+ userChrome.css tweaks ****************************************************/
/* code mostly taken from 'Classic Theme Restorer' & 'Classic Toolbar Buttons' add-ons **/
/* by Aris ([email protected])*********************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************************/

#alltabs-button{
visibility: visible !important;
}

19 changes: 19 additions & 0 deletions classic/css/tabs/tab_close_always_visible.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/*AGENT_SHEET*/

/* Firefox 57+ userChrome.css tweaks ****************************************************/
/* code mostly taken from 'Classic Theme Restorer' & 'Classic Toolbar Buttons' add-ons **/
/* by Aris ([email protected])*********************************************************/
/* Github: https://github.com/aris-t2/customcssforfx ************************************/
/****************************************************************************************/

/* tab close - always visible*/
#TabsToolbar #tabbrowser-tabs .tabbrowser-tab:not([pinned]):not([protected]) .tab-close-button {
visibility: visible !important;
display: block !important;
}
#TabsToolbar #tabbrowser-tabs .tabbrowser-tab:not([pinned]):not([protected])[faviconized="true"] .tab-close-button {
visibility: collapse !important;
display: none !important;
}

/**/
Loading

0 comments on commit 8ce5d01

Please sign in to comment.