2016-08-15 23:06:12 +02:00
|
|
|
.sketches-table-container {
|
2019-08-21 17:28:38 +02:00
|
|
|
overflow-y: auto;
|
2017-07-11 17:37:43 +02:00
|
|
|
max-width: 100%;
|
2020-04-02 19:43:34 +02:00
|
|
|
min-height: 100%;
|
2016-08-15 23:06:12 +02:00
|
|
|
}
|
|
|
|
|
2016-07-05 22:04:14 +02:00
|
|
|
.sketches-table {
|
|
|
|
width: 100%;
|
2019-09-12 01:05:15 +02:00
|
|
|
|
2016-08-17 21:53:25 +02:00
|
|
|
max-height: 100%;
|
2016-12-14 16:58:43 +01:00
|
|
|
border-spacing: 0;
|
2019-06-19 22:21:25 +02:00
|
|
|
& .sketch-list__dropdown-column {
|
|
|
|
width: #{60 / $base-font-size}rem;
|
|
|
|
position: relative;
|
2016-10-12 20:24:53 +02:00
|
|
|
}
|
2016-07-05 22:04:14 +02:00
|
|
|
}
|
|
|
|
|
2016-12-14 16:58:43 +01:00
|
|
|
.sketches-table thead th {
|
|
|
|
height: #{32 / $base-font-size}rem;
|
2019-09-24 23:52:45 +02:00
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
2020-04-25 00:39:56 +02:00
|
|
|
z-index: 1;
|
2019-09-24 23:52:45 +02:00
|
|
|
@include themify() {
|
|
|
|
background-color: getThemifyVariable('background-color');
|
|
|
|
}
|
2016-12-14 16:58:43 +01:00
|
|
|
}
|
|
|
|
|
2019-06-06 23:17:33 +02:00
|
|
|
.sketch-list__sort-button {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
height: #{35 / $base-font-size}rem;
|
2020-04-26 12:43:58 +02:00
|
|
|
|
|
|
|
& .isvg {
|
|
|
|
margin-left: #{8 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
2019-06-06 23:17:33 +02:00
|
|
|
& svg {
|
|
|
|
@include themify() {
|
|
|
|
fill: getThemifyVariable('inactive-text-color')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sketches-table__header {
|
|
|
|
border-bottom: 2px dashed transparent;
|
|
|
|
padding: #{3 / $base-font-size}rem 0;
|
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('inactive-text-color')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sketches-table__header--selected {
|
|
|
|
@include themify() {
|
|
|
|
border-color: getThemifyVariable('logo-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-19 22:21:25 +02:00
|
|
|
.sketches-table thead th:nth-child(1){
|
|
|
|
padding-left: #{12 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
2016-07-05 22:04:14 +02:00
|
|
|
.sketches-table__row {
|
|
|
|
margin: #{10 / $base-font-size}rem;
|
2016-12-14 16:58:43 +01:00
|
|
|
height: #{72 / $base-font-size}rem;
|
|
|
|
font-size: #{16 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sketches-table__row:nth-child(odd) {
|
|
|
|
@include themify() {
|
2019-05-22 14:25:19 +02:00
|
|
|
background: getThemifyVariable('table-row-stripe-color');
|
2016-12-14 16:58:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-19 22:21:25 +02:00
|
|
|
.sketches-table__row > th:nth-child(1) {
|
|
|
|
padding-left: #{12 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
2019-09-11 20:06:24 +02:00
|
|
|
.sketches-table__row > td {
|
|
|
|
padding-left: #{8 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
2016-12-14 16:58:43 +01:00
|
|
|
.sketches-table__row a {
|
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('primary-text-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sketches-table thead {
|
|
|
|
font-size: #{12 / $base-font-size}rem;
|
|
|
|
@include themify() {
|
|
|
|
color: getThemifyVariable('inactive-text-color')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.sketches-table th {
|
|
|
|
font-weight: normal;
|
2016-08-15 23:06:12 +02:00
|
|
|
}
|
|
|
|
|
2019-10-19 19:20:00 +02:00
|
|
|
|
2019-06-19 22:21:25 +02:00
|
|
|
.sketch-list__dropdown-button {
|
|
|
|
width:#{25 / $base-font-size}rem;
|
|
|
|
height:#{25 / $base-font-size}rem;
|
|
|
|
@include themify() {
|
2020-04-30 00:34:37 +02:00
|
|
|
& polygon, & path {
|
2020-04-22 23:45:48 +02:00
|
|
|
fill: getThemifyVariable('inactive-text-color');
|
2016-10-12 20:24:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-24 17:12:11 +02:00
|
|
|
|
2019-10-19 19:20:00 +02:00
|
|
|
.sketches-table__name {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
2019-11-04 22:04:38 +01:00
|
|
|
.sketches-table__icon-cell {
|
|
|
|
width: #{35 / $base-font-size}rem;
|
|
|
|
}
|
|
|
|
|
2019-06-19 22:21:25 +02:00
|
|
|
.sketch-list__action-dialogue {
|
|
|
|
@extend %dropdown-open-right;
|
|
|
|
top: 63%;
|
|
|
|
right: calc(100% - 26px);
|
|
|
|
}
|
|
|
|
|
2017-07-24 17:12:11 +02:00
|
|
|
.sketches-table__empty {
|
|
|
|
text-align: center;
|
|
|
|
font-size: #{16 / $base-font-size}rem;
|
2019-08-11 11:08:17 +02:00
|
|
|
padding: #{42 / $base-font-size}rem 0;
|
2017-07-24 17:12:11 +02:00
|
|
|
}
|