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