2017-01-11 00:52:03 -06:00
|
|
|
#slide-sorter {
|
2021-07-05 05:53:55 -05:00
|
|
|
height: calc(100% - 36px); /*minus #presentation-toolbar*/
|
2021-03-02 12:18:13 -06:00
|
|
|
white-space: nowrap;
|
|
|
|
overflow-x: hidden;
|
2021-04-08 05:29:01 -05:00
|
|
|
overflow-y: visible;
|
2021-04-06 04:03:27 -05:00
|
|
|
background: #dfdfdf;
|
|
|
|
scrollbar-color: #ccc #dfdfdf;
|
|
|
|
scrollbar-width: thin;
|
2015-12-15 07:33:53 -06:00
|
|
|
}
|
|
|
|
|
2018-08-12 21:05:45 -05:00
|
|
|
#sidebar-panel {
|
|
|
|
height: 100%
|
|
|
|
}
|
|
|
|
|
2015-12-15 07:33:53 -06:00
|
|
|
.preview-frame {
|
|
|
|
max-width: 190px;
|
|
|
|
white-space: nowrap;
|
2019-10-08 17:04:16 -05:00
|
|
|
text-align: center;
|
|
|
|
margin: 1em 0;
|
2020-09-03 09:41:01 -05:00
|
|
|
}
|
2015-12-15 07:33:53 -06:00
|
|
|
|
|
|
|
.preview-helper {
|
|
|
|
display: inline-block;
|
|
|
|
height: 100%;
|
|
|
|
vertical-align: middle;
|
2020-09-03 09:41:01 -05:00
|
|
|
}
|
2015-12-15 07:33:53 -06:00
|
|
|
|
|
|
|
.preview-img {
|
2019-11-20 08:28:46 -06:00
|
|
|
/* In draw docs, the width of previews are small, but we want a min of 160px to align it with document's left edge */
|
|
|
|
min-width: 160px;
|
2015-12-15 07:33:53 -06:00
|
|
|
vertical-align: middle;
|
2019-11-20 08:28:46 -06:00
|
|
|
max-width: 164px;
|
2015-12-15 07:33:53 -06:00
|
|
|
cursor: pointer;
|
|
|
|
border: 2px solid #dfdfdf;
|
2021-03-02 12:18:13 -06:00
|
|
|
margin-left: 10px;
|
|
|
|
margin-right: 10px;
|
2020-09-03 09:41:01 -05:00
|
|
|
}
|
2020-02-06 05:27:49 -06:00
|
|
|
|
2018-09-17 05:31:36 -05:00
|
|
|
/* The current part the user is on. */
|
|
|
|
.preview-img-currentpart {
|
2020-09-03 09:41:01 -05:00
|
|
|
border-color: #000000;
|
|
|
|
border-style: solid;
|
2015-12-15 07:33:53 -06:00
|
|
|
}
|
2018-09-17 06:17:31 -05:00
|
|
|
|
2018-09-17 05:31:36 -05:00
|
|
|
/* One of (potentially many) selected parts, but not the current. */
|
|
|
|
.preview-img-selectedpart {
|
2020-09-03 09:41:01 -05:00
|
|
|
border-color: #0b87e780 !important;
|
|
|
|
border-style: solid;
|
2018-09-17 05:31:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Highlight where a slide can be dropped when reordering by drag-and-drop. */
|
2018-09-17 06:17:31 -05:00
|
|
|
.preview-img-dropsite {
|
2021-03-16 05:22:12 -05:00
|
|
|
border-bottom: 20px solid var(--gray-color);
|
2019-10-04 05:50:13 -05:00
|
|
|
}
|