Skip to content

Commit

Permalink
change in appearance and repositioning
Browse files Browse the repository at this point in the history
  • Loading branch information
Ponchale committed Oct 26, 2023
1 parent 3a164cf commit bd0b828
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions floorp/browser/app/profile/000-floorp.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pref("floorp.multitab.bottommode", false);
pref("browser.display.statusbar", false);


pref("floorp.browser.sidebar.right", true);// サイドバーの右側を表示
pref("floorp.browser.sidebar.right", false);// サイドバーの右側を表示
pref("floorp.browser.sidebar.enable", true);// サイドバーを表示

// url:URL width:幅 userAgent:userAgent usercontext:コンテナタブ
Expand Down Expand Up @@ -326,8 +326,8 @@ pref("layout.css.has-selector.enabled", true);
pref("userChrome.tab.connect_to_window", true); // Original, Photon
pref("userChrome.tab.color_like_toolbar", true); // Original, Photon

pref("userChrome.tab.lepton_like_padding", true); // Original
pref("userChrome.tab.photon_like_padding", false); // Photon
pref("userChrome.tab.lepton_like_padding", false); // Original
pref("userChrome.tab.photon_like_padding", true); // Photon

pref("userChrome.tab.dynamic_separator", true); // Original, Proton
pref("userChrome.tab.static_separator", false); // Photon
Expand All @@ -347,7 +347,7 @@ pref("userChrome.tab.bottom_rounded_corner", true);

// Photon Only
pref("userChrome.tab.photon_like_contextline", false);
pref("userChrome.rounding.square_tab", false);
pref("userChrome.rounding.square_tab", true);

// == Theme Compatibility Settings =============================================
// pref("userChrome.compatibility.accent_color", true); // Firefox v103 Below
Expand Down
8 changes: 4 additions & 4 deletions floorp/browser/base/content/browser-design.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ function setPhotonUI() {
Services.prefs.setBoolPref("userChrome.icon.panel_photon", true);

Services.prefs.setBoolPref("userChrome.tab.box_shadow", false);
Services.prefs.setBoolPref("userChrome.tab.bottom_rounded_corner", false);
Services.prefs.setBoolPref("userChrome.tab.bottom_rounded_corner", true);

Services.prefs.setBoolPref("userChrome.tab.photon_like_contextline", true);
Services.prefs.setBoolPref("userChrome.rounding.square_tab", true);
Expand Down Expand Up @@ -163,7 +163,7 @@ function setLeptonUI() {
Services.prefs.setBoolPref("userChrome.tab.bottom_rounded_corner", true);

Services.prefs.setBoolPref("userChrome.tab.photon_like_contextline", false);
Services.prefs.setBoolPref("userChrome.rounding.square_tab", false);
Services.prefs.setBoolPref("userChrome.rounding.square_tab", true);
setBrowserDesign();
}

Expand Down Expand Up @@ -192,10 +192,10 @@ function setProtonFixUI() {
Services.prefs.setBoolPref("userChrome.icon.panel_photon", false);

Services.prefs.setBoolPref("userChrome.tab.box_shadow", false);
Services.prefs.setBoolPref("userChrome.tab.bottom_rounded_corner", false);
Services.prefs.setBoolPref("userChrome.tab.bottom_rounded_corner", true);

Services.prefs.setBoolPref("userChrome.tab.photon_like_contextline", false);
Services.prefs.setBoolPref("userChrome.rounding.square_tab", false);
Services.prefs.setBoolPref("userChrome.rounding.square_tab", true);

setBrowserDesign();
}

0 comments on commit bd0b828

Please sign in to comment.