mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-07 07:16:54 +00:00
* add csrf * caching * caching * caching * caching * security headers * csp and security headers * error handler csp * select user with display name * csp * user selection styling * username to loginname * regenerate grpc * regenerate * change to login name
83 lines
2.0 KiB
SCSS
83 lines
2.0 KiB
SCSS
// ---- LIGHT-THEME-------
|
|
html {
|
|
background-color: $backgroundColorLight;
|
|
color: $fontColorLight;
|
|
|
|
header .logo {
|
|
background-image: url($logoImgLight);
|
|
}
|
|
|
|
h1 {
|
|
color: $fontColorLight;
|
|
}
|
|
|
|
button {
|
|
background-color: $backgroundColorLight;
|
|
color: $primaryColorLight;
|
|
border: 2px solid $primaryColorLight;
|
|
|
|
&:hover {
|
|
background-color: $primaryColorHoverLight;
|
|
border: 2px solid $primaryColorHoverLight;
|
|
}
|
|
|
|
&.primary {
|
|
background-color: $primaryColor;
|
|
color: $fontColor;
|
|
border: none;
|
|
box-shadow: 0px 10px 30px $primaryColor;
|
|
&:hover {
|
|
background-color: $primaryColorHover;
|
|
}
|
|
}
|
|
|
|
&.clean {
|
|
color: $fontColorLight;
|
|
}
|
|
|
|
&.user-selection {
|
|
.profile-image {
|
|
@include retina-background-image($profileImgLight, "png", false, 100px, 100px);
|
|
}
|
|
|
|
&:hover {
|
|
background-color: $buttonBackgroundColorHover;
|
|
|
|
.profile-image {
|
|
@include retina-background-image($profileImgLight, "png", true, 100px, 100px);
|
|
}
|
|
}
|
|
}
|
|
|
|
&.other-user {
|
|
.other-user-image {
|
|
@include retina-background-image($otherUserImgLight, "png", false, 100px, 75px);
|
|
}
|
|
|
|
&:hover {
|
|
.other-user-image {
|
|
@include retina-background-image($otherUserImgLight, "png", true, 100px, 75px);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
input {
|
|
background-color: $backgroundColorLight;
|
|
color: $fontColorLight;
|
|
}
|
|
|
|
#qrcode {
|
|
svg rect[style*="fill:white"] {
|
|
fill: $backgroundColorLight !important;
|
|
}
|
|
|
|
svg rect[style*="fill:black"] {
|
|
fill: $fontColorLight !important;
|
|
}
|
|
}
|
|
|
|
footer {
|
|
background-image: url($footerimgLight);
|
|
}
|
|
} |