hubl/src/styles/base/table.scss

232 lines
3.6 KiB
SCSS
Raw Normal View History

/* Display and positioning of the table and its elements */
.table-wrapper {
overflow: auto;
position: relative;
width: 100%;
2020-06-16 13:52:10 +00:00
margin-bottom: 6rem;
@include breakpoint(lg) {
margin-bottom: 0;
}
.table {
border-collapse: collapse;
display: table;
2020-06-10 10:22:22 +00:00
margin-bottom: 20px;
overflow: auto;
table-layout: fixed;
width: 100%;
max-width: 100%;
2020-05-08 13:27:44 +00:00
}
.table-header {
display: table-header-group;
text-align: center;
vertical-align: middle;
&>div {
display: table-cell;
white-space: nowrap;
}
2020-06-09 13:15:34 +00:00
}
.table-body {
display: table-row-group;
&>div {
display: contents;
2020-06-18 18:02:54 +00:00
&>solid-display {
display: table-row;
&>div {
display: contents;
&>* {
2020-06-11 13:20:20 +00:00
border-bottom: 1px solid var(--color-table-border);
display: table-cell;
text-align: center;
vertical-align: middle;
}
}
}
/*&>solid-multiple {
display: contents;*/
2020-06-09 13:15:34 +00:00
&>div {
display: contents;
2020-01-08 16:29:23 +00:00
&>hubl-team-template-edit {
display: table-row;
2020-01-08 16:29:23 +00:00
&>* {
2020-06-11 13:20:20 +00:00
border-bottom: 1px solid var(--color-table-border);
display: table-cell;
text-align: center;
vertical-align: middle;
}
}
}
/*}*/
2020-01-08 16:29:23 +00:00
}
}
}
2020-01-08 16:29:23 +00:00
2020-06-11 13:20:20 +00:00
/* Styles of the table and its elements */
.table {
border-left: 1px solid var(--color-table-border);
border-right: 1px solid var(--color-table-border);
}
.table-header {
font-size: 1.6rem;
font-weight: 600;
&.grey-color {
background: var(--color-table-header-background);
color: var(--color-table-header-text);
}
>*:not(:last-child) {
border-right: 1px solid var(--color-white);
padding: 2.1rem 0;
text-align: center;
}
}
2020-01-08 16:29:23 +00:00
.table-body,
.table-header {
2020-05-08 13:27:44 +00:00
.border {
border-right: 1px solid var(--color-table-border);
}
}
.table-body,
.table-header {
2020-05-08 13:27:44 +00:00
/* Fix. Could disappear when we can add .class on set fields */
[name^='cell-1'] {
@extend .w280;
@extend .border;
}
2020-01-08 16:29:23 +00:00
.w280 {
width: 280px;
}
2020-10-13 16:18:13 +00:00
.w450 {
width: 450px;
}
.w370 {
width: 370px;
}
.w230 {
width: 230px;
}
.w70 {
width: 70px;
}
2020-04-08 10:57:05 +00:00
.w162 {
width: 162px;
}
2020-05-29 16:12:29 +00:00
.hashtag::before {
content: '#';
}
}
2020-05-29 16:12:29 +00:00
/* Styles of specific cells */
2020-05-29 16:12:29 +00:00
.cell-with-buttons {
text-align: center;
2020-05-29 16:12:29 +00:00
[name='button'] {
input[type='submit'] {
@extend
.button,
.text-bold,
.text-uppercase,
.reversed,
.button-secondary,
.bordered,
.desktop-btn-margin__left;
}
}
&.is-spaced {
padding: 0.8rem 2.2rem;
}
}
.cell-with-name {
color: var(--color-secondary);
font-weight: 600;
padding-left: 2rem;
text-align: left;
}
/* Styles of elements inside cells */
.table {
.user-thumb.is-spaced,
[name='user-thumb'] {
padding: 0.8rem 2.2rem;
}
}
2020-06-18 18:02:54 +00:00
.table solid-ac-checker {
text-align: center;
}
.circle-join {
position: relative;
width: 181px;
margin: 0 auto;
min-width: 181px;
input {
height: 29px;
left: -1px;
position: absolute;
top: -1px;
width: 102%;
padding-left: 14px !important;
}
&.button.with-icon::before {
margin-left: 6px;
}
2020-01-08 16:29:23 +00:00
}
.circle-leave {
position: relative;
2020-06-15 15:48:36 +00:00
width: 164px;
margin: 0 auto;
min-width: 164px;
&>button {
height: 29px;
padding-left: 13px;
position: absolute;
left: 1px;
top: -1px;
width: 106%;
}
&.button.with-icon::before {
font-size: 1.6rem;
margin-right: 2rem !important;
margin-left: -50px;
}
}