Skip to content
This repository has been archived by the owner on Sep 22, 2024. It is now read-only.

Commit

Permalink
Theme the missing UI parts alongside many major improvements
Browse files Browse the repository at this point in the history
Let's get out of beta!
  • Loading branch information
mgastonportillo committed Jul 1, 2023
1 parent 23f5e20 commit b14ed0d
Show file tree
Hide file tree
Showing 6 changed files with 179 additions and 424 deletions.
File renamed without changes.
File renamed without changes.
213 changes: 101 additions & 112 deletions ...avbar-noshrink/sidebery-beta-5.0.0b33.css → sidebery-beta.css
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 */
162 changes: 0 additions & 162 deletions sidebery-beta/sidebery-beta-5.0.0b33.css

This file was deleted.

Loading

0 comments on commit b14ed0d

Please sign in to comment.