CSS: styles of table refactored
This commit is contained in:
parent
5affa10a7c
commit
74fe061e9a
@ -88,9 +88,9 @@
|
|||||||
data-src=`${endpoints.circles}`
|
data-src=`${endpoints.circles}`
|
||||||
fields='name, owner, buttons'
|
fields='name, owner, buttons'
|
||||||
|
|
||||||
class-name='w33 cell border'
|
class-name='w33 cell border cell-with-name'
|
||||||
class-owner='w33 cell border'
|
class-owner='w33 cell border cell-with-id-card'
|
||||||
class-buttons='w33 cell border'
|
class-buttons='w33 cell border cell-with-buttons'
|
||||||
|
|
||||||
widget-buttons="admin-circle-buttons"
|
widget-buttons="admin-circle-buttons"
|
||||||
action-buttons="buttons"
|
action-buttons="buttons"
|
||||||
|
@ -73,10 +73,10 @@
|
|||||||
data-src=`${endpoints.projects}`
|
data-src=`${endpoints.projects}`
|
||||||
fields='name, members, captain, buttons'
|
fields='name, members, captain, buttons'
|
||||||
|
|
||||||
class-name='w25 cell border hashtag'
|
class-name='w25 cell border cell-with-name hashtag'
|
||||||
class-members='w25 cell border'
|
class-members='w25 cell border'
|
||||||
class-captain='w25 cell border'
|
class-captain='w25 cell border cell-with-id-card'
|
||||||
class-buttons='w25 cell border'
|
class-buttons='w25 cell border cell-with-buttons'
|
||||||
|
|
||||||
widget-buttons="admin-project-buttons"
|
widget-buttons="admin-project-buttons"
|
||||||
action-buttons="buttons"
|
action-buttons="buttons"
|
||||||
|
@ -8,7 +8,7 @@ div.content-box__info
|
|||||||
sib-widget(name='team-template-edit')
|
sib-widget(name='team-template-edit')
|
||||||
template
|
template
|
||||||
sib-display(
|
sib-display(
|
||||||
class='w50 cell border'
|
class='w50 cell border cell-with-id-card'
|
||||||
data-src='${await value.user}'
|
data-src='${await value.user}'
|
||||||
fields='account.picture, sup(name, groups), sub(profile.city)'
|
fields='account.picture, sup(name, groups), sub(profile.city)'
|
||||||
|
|
||||||
|
@ -255,6 +255,7 @@ h5 {
|
|||||||
@import 'compat';
|
@import 'compat';
|
||||||
// Other base components
|
// Other base components
|
||||||
@import 'form';
|
@import 'form';
|
||||||
|
@import 'table';
|
||||||
@import 'header';
|
@import 'header';
|
||||||
@import 'menu-left';
|
@import 'menu-left';
|
||||||
|
|
||||||
|
193
src/styles/base/table.scss
Normal file
193
src/styles/base/table.scss
Normal file
@ -0,0 +1,193 @@
|
|||||||
|
#circle-information,
|
||||||
|
#circle-edit,
|
||||||
|
#admin-circle-list,
|
||||||
|
#admin-circle-create,
|
||||||
|
#admin-project-list,
|
||||||
|
#admin-project-create {
|
||||||
|
|
||||||
|
.content-box__info {
|
||||||
|
@extend %padding-block;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
|
||||||
|
.backlink {
|
||||||
|
text-align: right;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.table {
|
||||||
|
|
||||||
|
.table-header {
|
||||||
|
display: flex;
|
||||||
|
flex: 1;
|
||||||
|
font-size: 1.6rem;
|
||||||
|
font-weight: 600;
|
||||||
|
justify-content: space-around;
|
||||||
|
text-align: center;
|
||||||
|
|
||||||
|
&.grey-color {
|
||||||
|
background: $color-228-25-79;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
>* {
|
||||||
|
border-right: 1px solid white;
|
||||||
|
flex: 1;
|
||||||
|
padding: 2.1rem 0;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
>*:last-of-type {
|
||||||
|
border-right: 1px solid $color-228-25-79;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.table-body {
|
||||||
|
|
||||||
|
>div:first-of-type>sib-display>div,
|
||||||
|
team-template-edit[name='members'] {
|
||||||
|
display: flex;
|
||||||
|
border-left: 1px solid $color-228-25-79;
|
||||||
|
}
|
||||||
|
|
||||||
|
.border {
|
||||||
|
border-bottom: 1px solid $color-228-25-79;
|
||||||
|
border-right: 1px solid $color-228-25-79;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cell {
|
||||||
|
text-align: center;
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
|
.w25 {
|
||||||
|
width: 25%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.w33 {
|
||||||
|
width: 33.3333%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.w50 {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hashtag::before {
|
||||||
|
content: '#';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.cell-with-name {
|
||||||
|
color: $color-233-18-29;
|
||||||
|
font-weight: 600;
|
||||||
|
padding-top: 2.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cell-with-id-card>div,
|
||||||
|
/* for the table in circle-edit */
|
||||||
|
.cell-with-id-card>sib-display>div,
|
||||||
|
project-captain[name='user']>sib-display>div {
|
||||||
|
/* for the captain's cell in project-admin */
|
||||||
|
display: grid;
|
||||||
|
grid-column-gap: 1.6rem;
|
||||||
|
grid-template-columns: 7vh auto;
|
||||||
|
grid-template-rows: repeat(2, 5.2vh);
|
||||||
|
padding: 0 2.2rem;
|
||||||
|
|
||||||
|
>[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'] {
|
||||||
|
color: #7A7F85;
|
||||||
|
font-weight: 600;
|
||||||
|
margin-right: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
sib-multiple>div {
|
||||||
|
display: flex;
|
||||||
|
|
||||||
|
[name='groups'] {
|
||||||
|
@extend %tag-role;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
>[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: '@';
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.cell-with-buttons {
|
||||||
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
[name='button'] {
|
||||||
|
|
||||||
|
input[type='submit'] {
|
||||||
|
@extend .button,
|
||||||
|
.text-bold,
|
||||||
|
.text-uppercase,
|
||||||
|
.reversed,
|
||||||
|
.button-blue,
|
||||||
|
.bordered,
|
||||||
|
.btn-margin-left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
sib-ac-checker {
|
||||||
|
align-items: center;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -78,16 +78,15 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.table-body>div>sib-display>div>sib-display-value[name='name'] {
|
.cell-with-name {
|
||||||
color: $color-233-18-29;
|
color: $color-233-18-29;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
padding-top: 2.5rem;
|
padding-top: 2.5rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
team-template-edit>sib-display>div,
|
.cell-with-id-card>div, /* for the table in circle-edit */
|
||||||
[name='owner']>sib-display>div,
|
.cell-with-id-card>sib-display>div,
|
||||||
project-captain[name='user']>sib-display>div,
|
project-captain[name='user']>sib-display>div { /* for the captain's cell in project-admin */
|
||||||
[name='captain']>sib-display>div {
|
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-column-gap: 1.6rem;
|
grid-column-gap: 1.6rem;
|
||||||
grid-template-columns: 7vh auto;
|
grid-template-columns: 7vh auto;
|
||||||
@ -164,7 +163,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[name='buttons'] {
|
.cell-with-buttons {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
Loading…
Reference in New Issue
Block a user