mirror of
https://github.com/zitadel/zitadel.git
synced 2025-02-25 18:55:27 -06:00
* checkbox color * project grant preview * project grante expandable row * add grant detail component * proto regen * project grant members shared module * fix project grant members dialog * fix create dialog * lint * add avatar colors, meta component styling * light theme * dl report * styles * move grants out of user context, grant detail * i18n grant pipe * lint * user grants * clear expandable view project grants * fix project member routing * fix granted members routing * fix group label * rename project grant * disable zitadel grant members * fix routing user grant creation * rest member writes * ignore case searches * forkjoin observables for project search * fix grant creation with users * fix projectid reference * formfield table style, user grant dynamic load * show key if no displayvalue is set * Delete report.20200630.163913.44081.0.001.json Co-authored-by: Silvan <silvan.reusser@gmail.com>
152 lines
2.5 KiB
SCSS
152 lines
2.5 KiB
SCSS
h1 {
|
|
font-family: ailerons;
|
|
margin-top: 0;
|
|
}
|
|
|
|
.sub {
|
|
color: #8795a1;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.state-label {
|
|
font-size: .9rem;
|
|
color: #8795a1;
|
|
margin-bottom: .5rem;
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
margin: 0 -.5rem;
|
|
|
|
mat-form-field {
|
|
flex: 1 1 33%;
|
|
margin: 0 .5rem;
|
|
}
|
|
}
|
|
|
|
.table-header-row {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.col {
|
|
display: flex;
|
|
flex-direction: column;
|
|
.desc {
|
|
font-size: .8rem;
|
|
color: #8795a1;
|
|
}
|
|
.count {
|
|
font-size: 2rem;
|
|
}
|
|
}
|
|
|
|
.fill-space {
|
|
flex: 1;
|
|
}
|
|
|
|
.icon-button {
|
|
margin-right: .5rem;
|
|
}
|
|
|
|
.add-button {
|
|
border-radius: .5rem;
|
|
}
|
|
}
|
|
|
|
.domain {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: .5rem 0;
|
|
flex-wrap: wrap;
|
|
|
|
|
|
.title {
|
|
font-size: 16px;
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
.verified, .primary{
|
|
color: #5282c1;
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
.fill-space {
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
.new-desc {
|
|
font-size: 14px;
|
|
color: #818a8a;
|
|
}
|
|
|
|
.new-row {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
|
|
mat-form-field {
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
.side {
|
|
.details {
|
|
margin-bottom: 1rem;
|
|
border-bottom: 1px solid #81868a40;
|
|
padding-bottom: 1rem;
|
|
|
|
.row {
|
|
display: flex;
|
|
margin-bottom: 0.5rem;
|
|
align-items: center;
|
|
|
|
button {
|
|
display: none;
|
|
visibility: hidden;
|
|
}
|
|
|
|
&:hover {
|
|
button {
|
|
display: inline-block;
|
|
visibility: visible;
|
|
mat-icon {
|
|
font-size: 1.2rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.first {
|
|
flex: 1;
|
|
font-size: 0.8rem;
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
.fill-space {
|
|
flex: 1;
|
|
}
|
|
|
|
.second {
|
|
font-size: 0.8rem;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
margin-left: 1rem;
|
|
text-align: right;
|
|
}
|
|
|
|
a {
|
|
&:hover {
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
|
|
.side-section {
|
|
color: #8795a1;
|
|
}
|
|
}
|
|
}
|