This repository has been archived by the owner on Sep 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Theme the missing UI parts alongside many major improvements
Let's get out of beta!
- Loading branch information
1 parent
23f5e20
commit b14ed0d
Showing
6 changed files
with
179 additions
and
424 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
213 changes: 101 additions & 112 deletions
213
...avbar-noshrink/sidebery-beta-5.0.0b33.css → sidebery-beta.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,112 +1,101 @@ | ||
/* ⭐️⭐️⭐️ CAMPEÓN DEL MUNDO EDITION ⭐️⭐️⭐️ */ | ||
|
||
/* --- FORCE DARK THEME (I don't plan to support light theme) --- */ | ||
|
||
#root.root { | ||
--s-frame-bg: #1c1b22 !important; | ||
--s-frame-fg: #fbfbfe !important; | ||
--s-toolbar-bg: #2b2a33 !important; | ||
--s-toolbar-fg: #fbfbfe !important; | ||
--s-act-el-bg: #42414d !important; | ||
--s-act-el-fg: #fbfbfe !important; | ||
--s-popup-bg: #42414d !important; | ||
--s-popup-fg: #fbfbfe !important; | ||
--s-popup-border: #52525e !important; | ||
--tabs-bg-hover: #3b3948 !important; | ||
--tabs-activated-bg: #42414d !important; | ||
--tabs-activated-fg: #fbfbfe !important; | ||
--tabs-fg: #d4d4d4 !important; | ||
--tabs-progress-bg: rgba(255, 255, 255, 0.086); | ||
--tabs-lvl-opacity: 0.16; | ||
--frame-el-bg: transparent !important; | ||
--frame-bg: var(--s-frame-bg, #282828) !important; | ||
--frame-fg: var(--s-frame-fg, #ccc) !important; | ||
--frame-el-overlay-hover-bg: rgba(255, 255, 255, 0.086) !important; | ||
--frame-el-overlay-clicked-bg: rgba(255, 255, 255, 0.141) !important; | ||
--frame-el-overlay-selected-bg: rgba(255, 255, 255, 0.141) !important; | ||
--frame-el-overlay-selected-border: var(--s-accent, #47cfff) !important; | ||
--frame-scrollbar-color: rgba(255, 255, 255, 0.275) !important; | ||
--active-el-bg: var(--s-act-el-bg, rgba(255, 255, 255, 0.141)) !important; | ||
--active-el-fg: var(--s-act-el-fg, #fff); | ||
} | ||
|
||
/* --- NAVIGATION BAR --- */ | ||
|
||
.NavigationBar { | ||
/* display: none; uncomment this line to disable the 🇦🇷 flag and the stars */ | ||
height: 3rem; | ||
} | ||
|
||
.NavigationBar:before { | ||
content: ""; | ||
position: relative; | ||
height: 2.5rem; | ||
width: 100%; | ||
margin: auto; | ||
background: linear-gradient( | ||
180deg, | ||
#75aadb 30%, | ||
white 30%, | ||
white 70%, | ||
#75aadb 70% | ||
); | ||
mix-blend-mode: overlay; | ||
} | ||
|
||
.NavigationBar:after { | ||
content: "⭐️ ⭐️ ⭐️"; | ||
position: absolute; | ||
text-align: center; | ||
line-height: 45px; | ||
width: 100%; | ||
} | ||
|
||
.NavigationBar .main-items { | ||
display: none; | ||
} | ||
|
||
.NavigationBar .static-btns { | ||
order: -1; | ||
} | ||
|
||
/* Hidden on top of the star to the far left */ | ||
.NavigationBar #settings { | ||
position: absolute; | ||
height: 15px; | ||
width: 15px; | ||
top: 15px; | ||
left: 105px; | ||
filter: opacity(0%); | ||
} | ||
|
||
/* --- TABS --- */ | ||
|
||
#root.root { | ||
--tabs-height: 35px; | ||
--tabs-width: 35px; | ||
--tabs-pinned-height: var(--tabs-height); | ||
--tabs-pinned-width: var(--tabs-width); | ||
--tabs-fg: #d4d4d4; | ||
--tabs-bg-hover: #3b3948; | ||
--tabs-activated-bg: #42414d; | ||
--tabs-indent: 10px; | ||
} | ||
|
||
.Tab .close:hover { | ||
background: transparent !important; | ||
} | ||
|
||
.Tab .close > svg:hover { | ||
/* Styling the tab close button */ | ||
border-radius: 50px; | ||
background: #d10032; | ||
opacity: 100%; | ||
} | ||
|
||
.Tab .audio { | ||
background: transparent !important; | ||
} | ||
|
||
/* --- IMPROVEMENTS --- */ | ||
|
||
/* Testing some things; I'll add them soon */ | ||
/* --- BASE (DARK THEME, I don't plan to support light theme) --- */ | ||
|
||
#root_container { | ||
background: #2b2a33 !important; | ||
} | ||
|
||
#root.root { | ||
padding: 6px; | ||
border-top-right-radius: 6px; | ||
/* for sidebars placed to the right */ | ||
/* border-top-left-radius: 6px; */ | ||
--s-frame-bg: #1c1b22 !important; | ||
--s-frame-fg: #fbfbfe !important; | ||
--s-toolbar-bg: #2b2a33 !important; | ||
--s-toolbar-fg: #fbfbfe !important; | ||
--s-act-el-bg: #42414d !important; | ||
--s-act-el-fg: #fbfbfe !important; | ||
--s-popup-bg: #42414d !important; | ||
--s-popup-fg: #fbfbfe !important; | ||
--s-popup-border: #52525e !important; | ||
--tabs-bg-hover: #3b3948 !important; | ||
--tabs-activated-bg: #42414d !important; | ||
--tabs-activated-fg: #fbfbfe !important; | ||
--tabs-fg: #d4d4d4 !important; | ||
--tabs-progress-bg: rgba(255, 255, 255, 0.086); | ||
--tabs-lvl-opacity: 0.16; | ||
--frame-el-bg: transparent !important; | ||
--frame-bg: var(--s-frame-bg, #282828) !important; | ||
--frame-fg: var(--s-frame-fg, #ccc) !important; | ||
--frame-el-overlay-hover-bg: rgba(255, 255, 255, 0.086) !important; | ||
--frame-el-overlay-clicked-bg: rgba(255, 255, 255, 0.141) !important; | ||
--frame-el-overlay-selected-bg: rgba(255, 255, 255, 0.141) !important; | ||
--frame-scrollbar-color: rgba(255, 255, 255, 0.275) !important; | ||
--active-el-bg: var(--s-act-el-bg, rgba(255, 255, 255, 0.141)) !important; | ||
--active-el-fg: var(--s-act-el-fg, #fff); | ||
} | ||
|
||
/* --- NAV BAR --- */ | ||
|
||
#nav_bar { | ||
background-color: var(--s-frame-bg); | ||
border-radius: 3px; | ||
margin-bottom: 4px; | ||
} | ||
|
||
#nav_bar .audio { | ||
display: none; | ||
} | ||
|
||
.NavigationBar .main-items { | ||
margin-left: 2px; | ||
} | ||
|
||
.NavigationBar .static-btns { | ||
margin-right: 2px; | ||
} | ||
|
||
/* --- TABS --- */ | ||
|
||
#root.root { | ||
--tabs-height: 35px; | ||
--tabs-width: 35px; | ||
--tabs-pinned-height: var(--tabs-height); | ||
--tabs-pinned-width: var(--tabs-width); | ||
--tabs-indent: 16px; | ||
} | ||
|
||
.Tab { | ||
width: calc(100% - var(--tabs-margin) * 2); | ||
} | ||
|
||
.Tab .close:hover { | ||
background: transparent !important; | ||
} | ||
|
||
.Tab .close > svg:hover { | ||
border-radius: 50px; | ||
background: #d10032; | ||
opacity: 100%; | ||
} | ||
|
||
.Tab .audio { | ||
background: transparent !important; | ||
} | ||
|
||
.new-tab-btn { | ||
margin-top: 1px; | ||
} | ||
|
||
/* --- IMPROVEMENTS --- */ | ||
|
||
.transition-box { | ||
--tabs-lvl-opacity: 0.1; | ||
} | ||
|
||
.popup { | ||
max-width: 95%; | ||
margin: 35px 0 0 -10px; | ||
} | ||
|
||
/* I'll add more things as I test them */ |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.