38 lines
806 B
CSS
38 lines
806 B
CSS
.oauth2-scope {
|
|
background: #292929;
|
|
border-radius: 4px;
|
|
padding: 4px 8px;
|
|
}
|
|
|
|
.oauth2-scope-header {
|
|
border-bottom: 1px solid #494949;
|
|
}
|
|
|
|
.oauth2-scope-perms {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
margin: 4px 0;
|
|
}
|
|
|
|
.oauth2-scope-perm {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
}
|
|
.oauth2-scope-perm-icon {
|
|
width: 16px;
|
|
height: 16px;
|
|
mask: url('/images/circle-check-regular.svg') no-repeat center;
|
|
flex: 0 0 auto;
|
|
background-color: #0a0;
|
|
margin: 2px;
|
|
}
|
|
.oauth2-scope-perm-icon-warn {
|
|
mask: url('/images/circle-regular.svg') no-repeat center, url('/images/exclamation-solid.svg') no-repeat center center / 10px 10px;
|
|
background-color: #c80;
|
|
}
|
|
.oauth2-scope-perm-text {
|
|
font-size: .8em;
|
|
line-height: 1.4em;
|
|
}
|