mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 11:58:02 +00:00
42effd8702
* user grant filter * add filter input * org domain spinner and reload * user grant filter templates * single selection filter for grants, same dl btn * filter margin * lint style, remove duplicate code * project count as observable * deferred reload on delete * fix user grant formfield * lint styles * fix event propagation on pin, change selection * propagate counter change * admin warn, localstorage, i18n, sidenav impv * overlays * adapt toolbar elevationn, card * color vars, i18n, admin section * fix lint * selection clear on filter * ts lint * Update console/src/assets/i18n/de.json Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com> * Update console/src/assets/i18n/de.json Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com> * Update console/src/assets/i18n/en.json Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com> Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
28 lines
1.1 KiB
SCSS
28 lines
1.1 KiB
SCSS
@import 'src/app/modules/card/card';
|
|
@import './styles/table';
|
|
@import './styles/link.scss';
|
|
@import './styles/sidenav-list';
|
|
@import 'src/app/modules/avatar/avatar.component';
|
|
@import 'src/app/modules/changes/changes.component';
|
|
@import 'src/app/modules/detail-layout/detail-layout.component';
|
|
@import 'src/app/pages/projects/owned-projects/owned-project-detail/application-grid/application-grid.component';
|
|
@import 'src/app/modules/meta-layout/meta';
|
|
@import 'src/app/pages/users/user-detail/auth-user-detail/theme-setting/theme-card';
|
|
@import 'src/app/pages/users/user-detail/memberships/memberships.component';
|
|
@import 'src/app/app.component.scss';
|
|
|
|
@mixin component-themes($theme) {
|
|
@include avatar-theme($theme);
|
|
@include card-theme($theme);
|
|
@include table-theme($theme);
|
|
@include detail-layout-theme($theme);
|
|
@include sidenav-list-theme($theme);
|
|
@include application-grid-theme($theme);
|
|
@include membership-theme($theme);
|
|
@include changes-theme($theme);
|
|
@include meta-theme($theme);
|
|
@include theme-card($theme);
|
|
@include textvar($theme);
|
|
@include link-theme($theme);
|
|
}
|