hubl/src/styles/layout/circle/circle-edit.scss

236 lines
4.7 KiB
SCSS
Raw Normal View History

2019-10-30 15:42:51 +00:00
#circle-edit,
#admin-circle-list {
2019-10-18 08:26:08 +00:00
2019-10-25 13:35:14 +00:00
.table-header {
background: $color-228-25-79;
color: white;
display: flex;
font-size: 1.6rem;
font-weight: 600;
justify-content: space-around;
text-align: center;
>*{
2019-10-30 15:42:51 +00:00
border-right: 1px solid white;
2019-10-25 13:35:14 +00:00
flex: 1;
padding: 1rem;
width: 50%;
2019-10-25 13:06:39 +00:00
}
2019-10-17 14:06:22 +00:00
2019-10-25 13:35:14 +00:00
>*:last-of-type {
2019-10-30 15:42:51 +00:00
border-right: 1px solid $color-228-25-79;
2019-10-17 14:06:22 +00:00
2019-10-25 13:35:14 +00:00
@media (max-width: 1220px) {
display: none;
}
}
}
2019-10-25 13:06:39 +00:00
.table-body.test>div>sib-display>div {
border-bottom: 1px solid $color-228-25-79;
display: flex;
justify-content: space-around;
>* {
flex: 1;
border-left: 1px solid $color-228-25-79;
text-align: center;
}
>*:last-child {
border-right: 1px solid $color-228-25-79;
}
>sib-display-value[name='name'] {
color: #3C3F57;
font-weight: 600;
}
>sib-set-default[name='own'] {
display: grid;
grid-column-gap: 1.6rem;
grid-template-columns: 7vh auto;
grid-template-rows: repeat(2, 5.2vh);
>[name$='account.picture'] {
align-items: center;
align-self: center;
background-color: $color-213-20-91;
border-radius: 50%;
display: flex;
grid-column: 1 / span 1;
grid-row: 1 / span 2;
height: 7vh;
justify-content: center;
overflow: hidden;
position: relative;
width: 7vh;
img {
background-color: white;
height: 100%;
left: 0;
object-fit: cover;
position: absolute;
top: 0;
width: 100%;
}
object {
height: 45%;
width: 45%;
}
}
>[name='sup'] {
align-self: end;
display: flex;
grid-column: 2 / span 1;
grid-row: 1 / span 1;
margin-bottom: 0.50rem;
[name$='name'] {
font-weight: 600;
margin-right: 1rem;
}
}
>[name='sub'] {
align-self: start;
grid-column: 2 / span 1;
grid-row: 2 / span 1;
margin-top: 0.50rem;
>[name$='username']:not(:empty) {
align-items: center;
display: flex;
&::before {
content: '@';
}
}
}
}
}
2019-10-25 13:35:14 +00:00
.table-body div team-template-edit {
2019-10-25 13:06:39 +00:00
display: flex;
2019-10-25 13:35:14 +00:00
justify-content: space-between;
2019-10-25 13:06:39 +00:00
2019-10-25 13:35:14 +00:00
>* {
border-bottom: 1px solid $color-228-25-79;
flex: 1;
width: 50%;
}
2019-10-18 13:39:56 +00:00
2019-10-25 13:35:14 +00:00
sib-display {
border-left: 1px solid $color-228-25-79;
padding: 0 2.2rem;
}
2019-10-23 07:57:34 +00:00
2019-10-25 13:35:14 +00:00
sib-ac-checker {
align-items: center;
2019-10-30 15:42:51 +00:00
border-left: 1px solid $color-228-25-79;
2019-10-25 13:35:14 +00:00
border-right: 1px solid $color-228-25-79;
display: flex;
justify-content: flex-end;
padding: 2.7rem 2.2rem;
@media (max-width: 1220px) {
display: none;
}
}
2019-10-23 07:57:34 +00:00
}
2019-10-18 13:39:56 +00:00
2019-10-25 13:35:14 +00:00
.member-select.color {
2019-10-18 13:39:56 +00:00
2019-10-25 13:35:14 +00:00
.ss-main {
color: $color-233-18-29;
}
2019-10-18 13:39:56 +00:00
}
2019-10-25 13:35:14 +00:00
sib-multiple[widget='team-template-edit'] {
2019-10-18 13:39:56 +00:00
2019-10-25 13:35:14 +00:00
label {
display: none;
2019-10-18 13:39:56 +00:00
}
2019-10-25 13:35:14 +00:00
>div>team-template-edit>sib-display>div {
display: grid;
grid-column-gap: 1.6rem;
grid-template-columns: 7vh auto;
grid-template-rows: repeat(2, 5.2vh);
2019-10-18 13:39:56 +00:00
>[name$='account.picture'] {
2019-10-25 13:35:14 +00:00
align-items: center;
align-self: center;
background-color: $color-213-20-91;
border-radius: 50%;
display: flex;
grid-column: 1 / span 1;
grid-row: 1 / span 2;
height: 7vh;
justify-content: center;
overflow: hidden;
position: relative;
width: 7vh;
img {
background-color: white;
height: 100%;
left: 0;
object-fit: cover;
position: absolute;
top: 0;
width: 100%;
}
object {
height: 45%;
width: 45%;
}
2019-10-18 13:39:56 +00:00
}
2019-10-25 13:35:14 +00:00
>[name='sup'] {
align-self: end;
display: flex;
2019-10-25 13:35:14 +00:00
grid-column: 2 / span 1;
grid-row: 1 / span 1;
margin-bottom: 0.50rem;
2019-10-18 13:39:56 +00:00
[name$='name'] {
2019-10-25 13:35:14 +00:00
font-weight: 600;
margin-right: 1rem;
2019-10-18 13:39:56 +00:00
}
2019-10-25 13:35:14 +00:00
sib-multiple {
display: flex;
2019-10-25 13:35:14 +00:00
[name='groups'] {
@extend %user-role;
}
}
}
2019-10-25 13:35:14 +00:00
>[name='sub'] {
align-self: start;
grid-column: 2 / span 1;
grid-row: 2 / span 1;
margin-top: 0.50rem;
>[name$='profile.city']:not(:empty) {
@include mdi('atom');
align-items: center;
display: flex;
&::before {
color: $color-43-100-50;
margin-right: 0.50rem;
}
}
}
2019-10-18 13:39:56 +00:00
}
}
2019-10-25 13:35:14 +00:00
}