2016-08-15 21:06:12 +00:00
|
|
|
.sketches-table-container {
|
|
|
|
overflow-y: scroll;
|
2017-07-11 15:37:43 +00:00
|
|
|
max-width: 100%;
|
|
|
|
width: #{1000 / $base-font-size}rem;
|
2017-07-24 15:12:11 +00:00
|
|
|
min-height: #{400 / $base-font-size}rem;
|
2016-08-15 21:06:12 +00:00
|
|
|
}
|
|
|
|
|
2016-07-05 20:04:14 +00:00
|
|
|
.sketches-table {
|
|
|
|
width: 100%;
|
2016-12-14 15:58:43 +00:00
|
|
|
padding: #{10 / $base-font-size}rem #{20 / $base-font-size}rem;
|
2016-08-17 19:53:25 +00:00
|
|
|
max-height: 100%;
|
2016-12-14 15:58:43 +00:00
|
|
|
border-spacing: 0;
|
2016-10-12 18:24:53 +00:00
|
|
|
& .sketch-list__trash-column {
|
2017-02-17 20:47:54 +00:00
|
|
|
width: #{23 / $base-font-size}rem;
|
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;
|
|
|
|
}
|
|
|
|
|
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;
|
2017-02-17 22:29:36 +00:00
|
|
|
cursor: pointer;
|
2016-12-14 15:58:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.sketches-table__row:nth-child(odd) {
|
|
|
|
@include themify() {
|
|
|
|
background: getThemifyVariable('console-header-background-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.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 21:06:12 +00:00
|
|
|
}
|
|
|
|
|
2016-10-12 18:24:53 +00:00
|
|
|
.visibility-toggle .sketch-list__trash-button {
|
|
|
|
@extend %hidden-element;
|
2017-02-17 20:47:54 +00:00
|
|
|
width:#{20 / $base-font-size}rem;
|
|
|
|
height:#{20 / $base-font-size}rem;
|
2016-10-12 18:24:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.visibility-toggle:hover .sketch-list__trash-button {
|
|
|
|
@include themify() {
|
|
|
|
background-color: transparent;
|
|
|
|
border: none;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 0;
|
|
|
|
position: initial;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
& g {
|
|
|
|
opacity: 1;
|
|
|
|
fill: getThemifyVariable('icon-hover-color');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-07-24 15:12:11 +00:00
|
|
|
|
|
|
|
.sketches-table__empty {
|
|
|
|
text-align: center;
|
|
|
|
font-size: #{16 / $base-font-size}rem;
|
|
|
|
}
|