Skip to content

Commit

Permalink
1.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Aris-t2 committed Dec 2, 2017
1 parent 744a9c6 commit f4c4899
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 48 deletions.
13 changes: 1 addition & 12 deletions classic/css/tabs/classic_squared_tabs.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@
/* tabs height for "classic tabs" */
:root {
--tab-min-height: 26px !important;
--tab-min-height_ntml: 27px !important;
--mlt_pinned_tab-min-height: 26px !important;
}
:root[uidensity=touch] {
--mlt_pinned_tab-min-height: 24px !important;
--mltabs-newtab-height: 27px !important;
}

/* adjust tab toolbars buttons for squared tabs */
Expand All @@ -24,13 +20,6 @@
padding: 3px !important;
}

/* remove tab fog */
#TabsToolbar:not(:-moz-lwtheme),
#TabsToolbar:not(:-moz-lwtheme)::before,
#TabsToolbar:not(:-moz-lwtheme)::after {
box-shadow: unset !important;
}

/*******************************************/
/**** default themes tab colors [start] ****/
/*******************************************/
Expand Down
11 changes: 1 addition & 10 deletions classic/css/tabs/classic_squared_tabs_australized.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,7 @@
/* tabs height for "classic tabs" */
:root {
--tab-min-height: 26px !important;
--tab-min-height_ntml: 27px !important;
--mlt_pinned_tab-min-height: 26px !important;
}
:root[uidensity=touch] {
--mlt_pinned_tab-min-height: 24px !important;
--mltabs-newtab-height: 27px !important;
}

/* adjust tab toolbars buttons for squared tabs */
Expand All @@ -24,11 +20,6 @@
padding: 3px !important;
}

/* remove tab fog *//*
#TabsToolbar:not(:-moz-lwtheme):-moz-any(::after,::before) {
box-shadow: none !important;
}
/*******************************************/
/**** default themes tab colors [start] ****/
/*******************************************/
Expand Down
39 changes: 16 additions & 23 deletions classic/css/tabs/tabs_multiple_lines.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,16 @@
/* all credits go to the original author: https://00.bulog.jp/archives/1476 *************/
/****************************************************************************************/


:root {
--tab-min-height_ntml: var(--tab-min-height);
--mlt_pinned_tab-min-height: calc(var(--tab-min-height) - 4px);
}
:root[uidensity=touch] {
--mlt_pinned_tab-min-height: calc(var(--tab-min-height) - 14px);
--tabs-end-position: 50px;
--tab-min-height: var(--tab-min-height);
--mltabs-newtab-height: var(--tab-min-height);
}

/* titlebar buttons */
#titlebar-buttonbox {
vertical-align: top !important;
display: block !important;
}

.tabbrowser-arrowscrollbox scrollbox {
Expand All @@ -33,36 +32,30 @@
display: block !important;
}

/* titlebar button height */
/*toolbarbutton.titlebar-button {
min-height: 31px !important;
}*/

/* tab size */
.tabbrowser-tab[pinned] {
min-height: var(--mlt_pinned_tab-min-height) !important;
/* additional space after tabs */
/*
.tabbrowser-tabs {
-moz-margin-end: var(--tabs-end-position) !important;
}
*/

.tabbrowser-tab:not([pinned]) {
/* tab size */
.tabbrowser-tab {
min-height: var(--tab-min-height) !important;
}

.tabbrowser-tabs .tabbrowser-tab {
max-height: var(--tab-min-height) !important;
vertical-align: top !important;
-moz-box-sizing: border-box !important;
min-height: var(--tab-min-height) !important;
}

/* 'new tab' tab size */
.tabs-newtab-button {
vertical-align: bottom !important;
min-height: var(--tab-min-height_ntml) !important;
height: var(--mltabs-newtab-height) !important;
}


/* Button for scrolling tabs to the left */
/* hide unneeded buttons */
.scrollbutton-up ,
.scrollbutton-down,
#TabsToolbar #alltabs-button{
display: none;
}
}
6 changes: 4 additions & 2 deletions classic/userChrome.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

/************************************************************************************************/
/* Custom CSS for Firefox ***********************************************************************/
/* version 1.4.4 ********************************************************************************/
/* version 1.4.5 ********************************************************************************/
/************************************************************************************************/

/*************************************************************************************************
Expand All @@ -21,7 +21,9 @@
ENABLING options: remove the combination of / and * before '@import'.
DISABLING options: add the combination of / and * before '@import'.
Some '@import' features might not work properly on macOS and Linux -> Firefox bug
FIREFOX BUGS (nothing CSS code can do about):
- some '@import' features might not work properly on macOS and Linux
- some '@import' features might not work properly, if multi-process mode (e10s) is disabled
CSS tweaks won't work, if '@namespace' references are used inside .css files!
Expand Down
4 changes: 3 additions & 1 deletion classic/userContent.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@
ENABLING options: remove the combination of / and * before '@import'.
DISABLING options: add the combination of / and * before '@import'.
Some '@import' features might not work properly on macOS and Linux -> Firefox bug
FIREFOX BUGS (nothing CSS code can do about):
- some '@import' features might not work properly on macOS and Linux
- some '@import' features might not work properly, if multi-process mode (e10s) is disabled
CSS tweaks won't work, if '@namespace' references are used inside .css files!
Expand Down

0 comments on commit f4c4899

Please sign in to comment.