wip darkmode

This commit is contained in:
Ahmed Bouhuolia
2025-08-04 12:25:27 +02:00
parent 456a9e1ad9
commit d9a716a46f
170 changed files with 2006 additions and 1018 deletions

View File

@@ -3,7 +3,6 @@
// General page
//---------------------------------
.preferences-page__inside-content--general {
.bp4-form-group {
max-width: 650px;
margin-bottom: 24px;
@@ -11,7 +10,7 @@
.bp4-label {
min-width: 190px;
font-weight: 600;
color: #38414e;
// color: #38414e;
}
.bp4-form-content {

View File

@@ -4,7 +4,7 @@
flex-direction: row;
flex: 1 0 0;
min-width: auto;
background-color: #fbfbfb;
background-color: var(--color-preferences-content-background);
}
.dashboard {
&__preferences-content {

View File

@@ -3,8 +3,8 @@
// Preferences sidebar.
// -----------------------------
.preferences-sidebar {
background: #eaeef6;
border-right: 1px solid #c6d0d9;
background: var(--color-sidebar-preferences-background);
border-right: 1px solid var(--color-sidebar-preferences-border);
min-width: 220px;
max-width: 220px;
height: 100%;
@@ -46,11 +46,11 @@
align-items: center;
height: 60px;
padding: 0 22px;
border-bottom: 1px solid #bbcbd0;
border-bottom: 1px solid var(--color-preferences-sidebar-head-border);
h2 {
font-size: 22px;
color: #3b3b4c;
color: var(--color-preferences-sidebar-head-text);
font-weight: 400;
margin: 0;
}
@@ -60,16 +60,23 @@
padding: 0;
background: transparent;
&.#{$ns}-menu {
&,
.bp4-dark & {
background: transparent;
}
}
.#{$ns}-menu-item {
padding: 8px 18px;
font-size: 15px;
font-weight: 400;
color: #333;
color: var(--color-sidebar-preferences-item-text);
&:hover,
&.#{$ns}-active {
background-color: rgba(255, 255, 255, 0.6);
color: #333;
background-color: var(--color-sidebar-preferences-item-hover-background);
color: var(--color-sidebar-preferences-item-hover-text);
}
}
}

View File

@@ -3,7 +3,6 @@
// Preferences topbar.
// -----------------------------
.preferences-topbar {
border-bottom: 1px solid #d2dde2;
min-height: 60px;
flex: 60px 0 0;
padding: 0 0 0 22px;
@@ -11,14 +10,15 @@
flex-direction: row;
justify-content: space-between;
align-items: center;
background-color: #fff;
background-color: var(--color-preferences-topbar-background);
border-bottom: 1px solid var(--color-preferences-topbar-border);
&__title {
h2 {
font-size: 22px;
font-weight: 400;
margin: 0;
color: #48485b;
color: var(--color-preferences-topbar-title);
}
}