2017-01-11 01:22:39 -06:00
|
|
|
#document-container.parts-preview-document {
|
|
|
|
left: 214px;
|
2015-12-15 07:33:53 -06:00
|
|
|
}
|
|
|
|
|
2017-01-11 00:52:03 -06:00
|
|
|
#slide-sorter {
|
|
|
|
height: 100%
|
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;
|
|
|
|
text-align: center; margin: 1em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.preview-helper {
|
|
|
|
display: inline-block;
|
|
|
|
height: 100%;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.preview-img {
|
2017-03-20 03:28:33 -05:00
|
|
|
/* In draw docs, the width of previews are small, but we want a min of 180px to align it with document's left edge */
|
2018-09-17 06:17:31 -05:00
|
|
|
min-width: 180px;
|
2015-12-15 07:33:53 -06:00
|
|
|
vertical-align: middle;
|
2016-04-29 02:08:48 -05:00
|
|
|
max-width: 184px;
|
2015-12-15 07:33:53 -06:00
|
|
|
cursor: pointer;
|
|
|
|
border: 2px solid #dfdfdf;
|
|
|
|
}
|
|
|
|
|
2018-09-17 05:31:36 -05:00
|
|
|
/* The current part the user is on. */
|
|
|
|
.preview-img-currentpart {
|
|
|
|
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 {
|
|
|
|
border-color: #000000;
|
|
|
|
border-style: dotted;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Highlight where a slide can be dropped when reordering by drag-and-drop. */
|
2018-09-17 06:17:31 -05:00
|
|
|
.preview-img-dropsite {
|
2018-11-23 02:28:39 -06:00
|
|
|
border-bottom: 3px solid #b6b6b6;
|
2018-09-17 06:17:31 -05:00
|
|
|
}
|
2019-10-04 05:50:13 -05:00
|
|
|
|
|
|
|
/* Make it larger on larger displays */
|
|
|
|
@media (min-width: 768px),(min-device-height: 768px) {
|
|
|
|
.preview-img-dropsite {
|
|
|
|
border-bottom: 20px solid #b6b6b6;
|
|
|
|
}
|
|
|
|
}
|