mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-29 10:57:21 +00:00
* privatelabeling refresh, org context color * chore(deps): bump @grpc/grpc-js from 1.6.10 to 1.7.0 in /console (#4358) Bumps [@grpc/grpc-js](https://github.com/grpc/grpc-node) from 1.6.10 to 1.7.0. - [Release notes](https://github.com/grpc/grpc-node/releases) - [Commits](https://github.com/grpc/grpc-node/compare/@grpc/grpc-js@1.6.10...@grpc/grpc-js@1.7.0) --- updated-dependencies: - dependency-name: "@grpc/grpc-js" dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump ngx-color from 8.0.2 to 8.0.3 in /console (#4357) Bumps [ngx-color](https://github.com/scttcper/ngx-color) from 8.0.2 to 8.0.3. - [Release notes](https://github.com/scttcper/ngx-color/releases) - [Commits](https://github.com/scttcper/ngx-color/compare/v8.0.2...v8.0.3) --- updated-dependencies: - dependency-name: ngx-color dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps-dev): bump @types/node from 17.0.45 to 18.7.16 in /console (#4341) Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 17.0.45 to 18.7.16. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps-dev): bump jasmine-core from 4.2.0 to 4.4.0 in /console (#4317) Bumps [jasmine-core](https://github.com/jasmine/jasmine) from 4.2.0 to 4.4.0. - [Release notes](https://github.com/jasmine/jasmine/releases) - [Changelog](https://github.com/jasmine/jasmine/blob/main/RELEASE.md) - [Commits](https://github.com/jasmine/jasmine/compare/v4.2.0...v4.4.0) --- updated-dependencies: - dependency-name: jasmine-core dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps-dev): bump @types/jasmine from 4.0.3 to 4.3.0 in /console (#4279) Bumps [@types/jasmine](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jasmine) from 4.0.3 to 4.3.0. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jasmine) --- updated-dependencies: - dependency-name: "@types/jasmine" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * quicklink * cli core * material cdk * eslint * add grantid * show oidc config error * use prettier config, linter * rm stylelint, fix lint * prettier - ignore proto output * labelling * update contribution guide Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Elio Bischof <eliobischof@gmail.com>
71 lines
1.8 KiB
SCSS
71 lines
1.8 KiB
SCSS
@use '@angular/material' as mat;
|
|
|
|
@mixin input-theme($theme) {
|
|
$primary: map-get($theme, primary);
|
|
$primary-color: mat.get-color-from-palette($primary, 500);
|
|
$primary-light-color: mat.get-color-from-palette($primary, 200);
|
|
$warn: map-get($theme, warn);
|
|
$warn-color: mat.get-color-from-palette($warn, 500);
|
|
$foreground: map-get($theme, foreground);
|
|
$is-dark-theme: map-get($theme, is-dark);
|
|
|
|
[cnslInput],
|
|
.mat-select {
|
|
box-sizing: border-box;
|
|
padding-inline-start: 10px;
|
|
outline: none;
|
|
display: inline-block;
|
|
text-align: start;
|
|
cursor: text;
|
|
transform: all 0.2 linear;
|
|
font-size: 1rem;
|
|
border: none;
|
|
border: 1px solid if($is-dark-theme, #f9f7f775, #1a191954);
|
|
background-color: if($is-dark-theme, #00000040, #00000004);
|
|
border-radius: 4px;
|
|
height: 40px;
|
|
padding: 10px;
|
|
transition: border-color 0.15s ease-in-out, background-color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1),
|
|
color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
|
|
width: 100%;
|
|
color: mat.get-color-from-palette($foreground, text);
|
|
margin-bottom: 2px;
|
|
|
|
&:hover {
|
|
border-color: if($is-dark-theme, #e0e0e0, #1a1b1b);
|
|
}
|
|
|
|
&:active,
|
|
&:focus {
|
|
border-color: $primary-color;
|
|
}
|
|
|
|
&.ng-touched {
|
|
&.ng-invalid {
|
|
border-color: $warn-color;
|
|
}
|
|
}
|
|
|
|
&[disabled] {
|
|
border-color: if($is-dark-theme, #36373850, #cccdce50);
|
|
color: if($is-dark-theme, #ffffff80, #00000061);
|
|
|
|
&::placeholder {
|
|
color: if($is-dark-theme, #ffffff80, #00000061);
|
|
}
|
|
}
|
|
}
|
|
|
|
[cnslInput]::placeholder {
|
|
font-size: 14px;
|
|
color: map-get($foreground, placeholder-text);
|
|
font-style: italic;
|
|
}
|
|
|
|
.mat-paginator {
|
|
.mat-select {
|
|
background-color: inherit;
|
|
}
|
|
}
|
|
}
|