mirror of
https://github.com/black7375/Firefox-UI-Fix.git
synced 2025-12-06 02:30:54 -08:00
Add: Option - userContent.newTab.pocket_to_bottom
This commit is contained in:
parent
668d5acb10
commit
1320af24e5
3 changed files with 52 additions and 14 deletions
|
|
@ -78,6 +78,25 @@
|
|||
}
|
||||
}
|
||||
|
||||
/** Activity Stream - Pocket order to last **********************************/
|
||||
@include Option("userContent.newTab.pocket_to_bottom") {
|
||||
.body-wrapper.on {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.body-wrapper.on > .discovery-stream.ds-layout {
|
||||
flex-basis: 100%;
|
||||
}
|
||||
|
||||
.body-wrapper.on > .collapsible-section[data-section-id="topstories"],
|
||||
.home-section > #pocket-section,
|
||||
.home-section > .divider,
|
||||
.home-section > div:not(.section) {
|
||||
order: 2;
|
||||
}
|
||||
}
|
||||
|
||||
/** Activity Stream - Home Search Bar looks like proton *********************/
|
||||
@include Option("userContent.newTab.animate") {
|
||||
/* Dropdown Colors */
|
||||
|
|
|
|||
29
user.js
29
user.js
|
|
@ -148,22 +148,23 @@ user_pref("userChrome.icon.global_menu", true);
|
|||
user_pref("userChrome.icon.global_menubar", true);
|
||||
|
||||
// -- User Content -------------------------------------------------------------
|
||||
user_pref("userContent.player.ui", true);
|
||||
user_pref("userContent.player.icon", true);
|
||||
user_pref("userContent.player.noaudio", true);
|
||||
user_pref("userContent.player.size", true);
|
||||
user_pref("userContent.player.click_to_play", true);
|
||||
user_pref("userContent.player.animate", true);
|
||||
user_pref("userContent.player.ui", true);
|
||||
user_pref("userContent.player.icon", true);
|
||||
user_pref("userContent.player.noaudio", true);
|
||||
user_pref("userContent.player.size", true);
|
||||
user_pref("userContent.player.click_to_play", true);
|
||||
user_pref("userContent.player.animate", true);
|
||||
|
||||
user_pref("userContent.newTab.field_border", true);
|
||||
user_pref("userContent.newTab.full_icon", true);
|
||||
user_pref("userContent.newTab.animate", true);
|
||||
user_pref("userContent.newTab.searchbar", true);
|
||||
user_pref("userContent.newTab.field_border", true);
|
||||
user_pref("userContent.newTab.full_icon", true);
|
||||
user_pref("userContent.newTab.animate", true);
|
||||
user_pref("userContent.newTab.pocket_to_bottom", true);
|
||||
user_pref("userContent.newTab.searchbar", true);
|
||||
|
||||
user_pref("userContent.page.illustration", true);
|
||||
user_pref("userContent.page.proton_color", true);
|
||||
user_pref("userContent.page.dark_mode", true); // Need proton_color
|
||||
user_pref("userContent.page.proton", true); // Need proton_color
|
||||
user_pref("userContent.page.illustration", true);
|
||||
user_pref("userContent.page.proton_color", true);
|
||||
user_pref("userContent.page.dark_mode", true); // Need proton_color
|
||||
user_pref("userContent.page.proton", true); // Need proton_color
|
||||
|
||||
// ** Useful Options ***********************************************************
|
||||
// Integrated calculator at urlbar
|
||||
|
|
|
|||
|
|
@ -340,6 +340,24 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
/** Activity Stream - Pocket order to last **********************************/
|
||||
@supports -moz-bool-pref("userContent.newTab.pocket_to_bottom") {
|
||||
.body-wrapper.on {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.body-wrapper.on > .discovery-stream.ds-layout {
|
||||
flex-basis: 100%;
|
||||
}
|
||||
|
||||
.body-wrapper.on > .collapsible-section[data-section-id="topstories"],
|
||||
.home-section > #pocket-section,
|
||||
.home-section > .divider,
|
||||
.home-section > div:not(.section) {
|
||||
order: 2;
|
||||
}
|
||||
}
|
||||
/** Activity Stream - Home Search Bar looks like proton *********************/
|
||||
@supports -moz-bool-pref("userContent.newTab.animate") {
|
||||
/* Dropdown Colors */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue