mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-26 07:27:36 +00:00
feat(console): show and clear admin views, fix iam member (#334)
* gen auth, get my user changes * iam view * use table for admin views * fix pagination for views * fix themeing transition * transition * lint
This commit is contained in:
@@ -12,6 +12,7 @@
|
||||
|
||||
.card {
|
||||
background-color: $primary-dark;
|
||||
transition: background-color .5s ease-in-out;
|
||||
border: 1px solid rgba($border-color, .2);
|
||||
box-sizing: border-box;
|
||||
border-radius: .5rem;
|
||||
|
@@ -18,7 +18,9 @@
|
||||
margin: 1rem;
|
||||
border-radius: 16px;
|
||||
border: 1px solid $accent-color;
|
||||
background: $primary-dark;
|
||||
background-color: $primary-dark;
|
||||
transition: background-color .5s ease-in-out;
|
||||
|
||||
|
||||
&.add {
|
||||
background: $accent-color;
|
||||
|
@@ -50,6 +50,7 @@
|
||||
.root-header {
|
||||
@include mat-elevation(3);
|
||||
background: $primary-dark !important;
|
||||
transition: background .5s ease-in-out;
|
||||
}
|
||||
|
||||
.admin-line {
|
||||
|
@@ -9,6 +9,7 @@
|
||||
.mat-table,
|
||||
mat-paginator {
|
||||
background-color: $secondary-dark !important;
|
||||
transition: background-color .5s ease-in-out;
|
||||
|
||||
&.background-style {
|
||||
background-color: $primary-dark !important;
|
||||
|
27
console/src/styles/theme-card.scss
Normal file
27
console/src/styles/theme-card.scss
Normal file
@@ -0,0 +1,27 @@
|
||||
@import '~@angular/material/theming';
|
||||
|
||||
@mixin theme-card($theme) {
|
||||
$accent: map-get($theme, accent);
|
||||
$background: map-get($theme, background);
|
||||
$background-color: mat-color($background, card);
|
||||
$primary: map-get($theme, primary);
|
||||
$primary-color: mat-color($primary, 500);
|
||||
$primary-dark: mat-color($primary, A800);
|
||||
$border-color: mat-color($primary, A700);
|
||||
$border-selected-color: mat-color($primary, A600);
|
||||
|
||||
.theme-conent {
|
||||
background-color: $primary-dark;
|
||||
transition: background-color .5s ease-in-out;
|
||||
}
|
||||
|
||||
.theme-app {
|
||||
background-color: $primary-dark;
|
||||
transition: background-color .5s ease-in-out;
|
||||
}
|
||||
|
||||
.crescent {
|
||||
background-color: $primary-dark;
|
||||
transition: background background-color .5s ease-in-out;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user