2016-09-08 01:51:54 +00:00
|
|
|
.sketch-list {
|
|
|
|
@extend %modal;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
flex-flow: column;
|
|
|
|
width: #{1000 / $base-font-size}rem;
|
|
|
|
height: 80%;
|
2016-12-14 15:58:43 +00:00
|
|
|
outline: none;
|
2016-09-08 01:51:54 +00:00
|
|
|
}
|
|
|
|
|
2016-08-15 21:06:12 +00:00
|
|
|
.sketch-list__header {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2016-12-14 15:58:43 +00:00
|
|
|
}
|
|
|
|
|
2016-12-19 22:49:35 +00:00
|
|
|
.sketch-list__header-title {
|
2016-12-14 15:58:43 +00:00
|
|
|
padding: #{40 / $base-font-size}rem #{16 / $base-font-size}rem #{12 / $base-font-size}rem #{21 / $base-font-size}rem;
|
2016-08-15 21:06:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.sketches-table-container {
|
|
|
|
flex: 1 0 0%;
|
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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
|
|
|
}
|
|
|
|
|
|
|
|
.sketch-list__exit-button {
|
2016-09-13 20:42:06 +00:00
|
|
|
@include themify() {
|
|
|
|
@extend %icon;
|
|
|
|
}
|
2016-12-14 15:58:43 +00:00
|
|
|
margin: #{12 / $base-font-size}rem #{16 / $base-font-size}rem;
|
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');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|