mirror of
https://github.com/zitadel/zitadel.git
synced 2025-05-27 23:48:21 +00:00

* return error from changes * project member context, org-policies, state * project type seperation * chore(deps): bump grpc from 1.24.2 to 1.24.3 in /console (#183) Bumps [grpc](https://github.com/grpc/grpc-node) from 1.24.2 to 1.24.3. - [Release notes](https://github.com/grpc/grpc-node/releases) - [Commits](https://github.com/grpc/grpc-node/compare/grpc@1.24.2...grpc@1.24.3) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps): bump google-proto-files from 1.1.2 to 2.1.0 in /console (#176) Bumps [google-proto-files](https://github.com/googleapis/nodejs-proto-files) from 1.1.2 to 2.1.0. - [Release notes](https://github.com/googleapis/nodejs-proto-files/releases) - [Changelog](https://github.com/googleapis/nodejs-proto-files/blob/master/CHANGELOG.md) - [Commits](https://github.com/googleapis/nodejs-proto-files/compare/v1.1.2...v2.1.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * chore(deps-dev): bump karma-coverage-istanbul-reporter in /console (#169) Bumps [karma-coverage-istanbul-reporter](https://github.com/mattlewis92/karma-coverage-istanbul-reporter) from 3.0.2 to 3.0.3. - [Release notes](https://github.com/mattlewis92/karma-coverage-istanbul-reporter/releases) - [Changelog](https://github.com/mattlewis92/karma-coverage-istanbul-reporter/blob/master/CHANGELOG.md) - [Commits](https://github.com/mattlewis92/karma-coverage-istanbul-reporter/compare/v3.0.2...v3.0.3) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * update packages * update deps * lint * replace assets * add key, creationdate for roles * project grant members Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
242 lines
5.2 KiB
SCSS
242 lines
5.2 KiB
SCSS
|
|
.root-header {
|
|
position: relative;
|
|
z-index: 100;
|
|
display: flex;
|
|
height: 60px;
|
|
align-items: center;
|
|
padding: 0 1rem;
|
|
|
|
.logo {
|
|
height: 40px;
|
|
width: auto;
|
|
}
|
|
|
|
.title {
|
|
text-decoration: none;
|
|
color: white;
|
|
font-size: 1.2rem;
|
|
font-weight: 400;
|
|
margin-left: 1rem;
|
|
line-height: 1.2rem;
|
|
font-family: 'Rubik';
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
.context-menu {
|
|
border-radius: .5rem;
|
|
background-color: #2d2e30;
|
|
}
|
|
|
|
.fill-space {
|
|
flex: 1;
|
|
}
|
|
|
|
.iamreadwrite {
|
|
height: 8px;
|
|
width: 8px;
|
|
border-radius: 50%;
|
|
background: linear-gradient(to bottom right, rgb(240,140,53), rgb(233, 60, 231));
|
|
}
|
|
|
|
.icon-container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
position: relative;
|
|
user-select: none;
|
|
|
|
.docs {
|
|
text-decoration: none;
|
|
font-size: 1.4rem;
|
|
font-family: 'ailerons', sans-serif;
|
|
}
|
|
|
|
.avatar-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.avatar-circle {
|
|
height: 30px;
|
|
width: 30px;
|
|
font-size: 30px;
|
|
background-color: transparent;
|
|
border-radius: 50%;
|
|
animation: background-color .2s ease-in;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-left: .5rem;
|
|
|
|
.avatar {
|
|
display: block;
|
|
margin: auto auto;
|
|
height: 30px;
|
|
width: 30px;
|
|
line-height: 30px;
|
|
font-size: 30px;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
}
|
|
|
|
&:hover, &.active {
|
|
cursor: pointer;
|
|
background-color: #ffffff20;
|
|
}
|
|
}
|
|
|
|
.name {
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
|
|
.a_card {
|
|
position: absolute;
|
|
top: 60px;
|
|
right: 0;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
}
|
|
|
|
.main-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: calc(100vh - 60px);
|
|
width: 100%;
|
|
|
|
.side {
|
|
width: 300px;
|
|
border-right: none;
|
|
|
|
.side-column {
|
|
height: calc(100vh - 70px);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
|
|
.list {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
margin-top: 2rem;
|
|
|
|
.logout-icon {
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.fill-space {
|
|
flex: 1;
|
|
}
|
|
|
|
.nav-item {
|
|
display: flex;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
padding: 0.2rem 1rem;
|
|
// color: inherit;
|
|
margin-right: 0.5rem;
|
|
padding-right: 2rem;
|
|
|
|
.icon {
|
|
margin: 0.5rem 1rem;
|
|
}
|
|
|
|
.label {
|
|
margin-bottom: 0;
|
|
font-family: 'Rubik';
|
|
font-weight: 500;
|
|
font-size: .9rem;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: #00000010;
|
|
border-top-right-radius: 1.5rem;
|
|
border-bottom-right-radius: 1.5rem;
|
|
}
|
|
|
|
&.active {
|
|
border-top-right-radius: 1.5rem;
|
|
border-bottom-right-radius: 1.5rem;
|
|
}
|
|
}
|
|
|
|
.project-status {
|
|
padding: 1rem;
|
|
}
|
|
}
|
|
|
|
.fill-space {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.logout-button {
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
|
|
.primary-button {
|
|
margin: 1rem;
|
|
border-radius: 1.5rem;
|
|
height: 2.5rem;
|
|
padding: 0 1rem;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
.router {
|
|
height: 100%;
|
|
overflow: auto;
|
|
}
|
|
}
|
|
|
|
.theme-section {
|
|
display: block;
|
|
padding: 0 .5rem;
|
|
margin-top: 2rem;
|
|
align-self: flex-start;
|
|
border-radius: 1rem;
|
|
|
|
.round-light {
|
|
display: inline-block;
|
|
border-radius: 50%;
|
|
height: 30px;
|
|
width: 30px;
|
|
margin: .5rem;
|
|
cursor: pointer;
|
|
background: linear-gradient(315deg, #e6e6e6, #ffffff);
|
|
}
|
|
|
|
.round-dark {
|
|
display: inline-block;
|
|
border-radius: 50%;
|
|
height: 30px;
|
|
width: 30px;
|
|
margin: .5rem;
|
|
cursor: pointer;
|
|
background: linear-gradient(315deg, #000000, #000000);
|
|
}
|
|
}
|
|
}
|
|
|
|
.footer {
|
|
padding: 1rem;
|
|
a {
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
color: #81868a;
|
|
font-size: .8rem;
|
|
display: block;
|
|
margin-bottom: 1px;
|
|
font-weight: 300;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
} |