mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-10 06:22:19 +00:00
feat(console): pinned org list, project grant detail view, state change, i18n, domain dialog, policy refactor, theme fixes, refactor user and projects (#449)
* pinned organisations * project grant detail, state update, user-list pad * rm entry components * members nav, i18n, disable actions on non active * add org domain dialog * mv password policy rm to detail view * prefix pinned orgs for userid, fix collapsed pad * fix app back navigation * rem pwd required validator * fix org item overflow * routing * move users modules to users page * reorganize projects * remove child init of translate * hide same preferred loginname
This commit is contained in:
@@ -55,20 +55,20 @@ $caos-dark-brand: (
|
||||
);
|
||||
|
||||
$caos-light-brand: (
|
||||
50: mat-color($mat-grey, 50),
|
||||
100: mat-color($mat-grey, 100),
|
||||
200: mat-color($mat-grey, 200),
|
||||
300: mat-color($mat-grey, 300),
|
||||
400: mat-color($mat-grey, 400),
|
||||
500: mat-color($mat-grey, 500),
|
||||
600: mat-color($mat-grey, 600),
|
||||
700: mat-color($mat-grey, 700),
|
||||
800: mat-color($mat-grey, 800),
|
||||
900: mat-color($mat-grey, 900),
|
||||
A100: mat-color($mat-grey, A100),
|
||||
A200: mat-color($mat-grey, A200),
|
||||
A300: mat-color($mat-grey, A300),
|
||||
A400: mat-color($mat-grey, A400),
|
||||
50: #ffffff,
|
||||
100: #dde6f3,
|
||||
200: #b4c9e4,
|
||||
300: #7fa3d1,
|
||||
400: #6992c9,
|
||||
500: #5282c1,
|
||||
600: #4072b4,
|
||||
700: #38649d,
|
||||
800: #305687,
|
||||
900: #284770,
|
||||
A100: #ffffff,
|
||||
A200: #dde6f3,
|
||||
A300: #6992c9,
|
||||
A400: #38649d,
|
||||
A500:#333333,
|
||||
A600: #000000,
|
||||
A700: #8795a1,
|
||||
@@ -125,6 +125,24 @@ $custom-typography: mat-typography-config(
|
||||
background-color: white;
|
||||
transition: background-color .5s ease-in-out;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||
box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||
background-color: #fafafa;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
background-color: #fafafa;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: #5282c1;
|
||||
border-radius: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.dark-theme {
|
||||
@@ -139,6 +157,24 @@ $custom-typography: mat-typography-config(
|
||||
.mat-dialog-container {
|
||||
background-color: #2d2e30;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||
box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
|
||||
background-color: #2d2e30;
|
||||
border-radius: 8px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
height: 6px;
|
||||
background-color: #2d2e30;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: #5282c1;
|
||||
border-radius: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.mat-dialog-container {
|
||||
|
||||
Reference in New Issue
Block a user