libreoffice-online/loleaflet/css/partsPreviewControl.css
Pedro Pinto Silva ef48e44c0e Mobile: change all media queries to:
- Include phablet size
- Ensure that the mobile css rules do not kick in when on Desktop (900px window)
-- Detect if the primary input mechanism cannot hover at all or cannot conveniently hover (hover:none)
-- Detect if at least one input mechanism includes a pointing device of limited accuracy (any-pointer:coarse)

Change-Id: Idf1494acbd52ecd40e9082c8cf6f4ce88ecf9ac6
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/88862
Tested-by: Pedro Pinto da Silva <pedro.silva@collabora.com>
Reviewed-by: Pedro Pinto da Silva <pedro.silva@collabora.com>
2020-02-17 15:53:33 +01:00

92 lines
1.9 KiB
CSS

#document-container.parts-preview-document {
left: 214px;
}
#slide-sorter {
height: 100%
}
#sidebar-panel {
height: 100%
}
.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 {
/* 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;
vertical-align: middle;
max-width: 164px;
cursor: pointer;
border: 2px solid #dfdfdf;
margin-left: 20px;
}
@media screen (max-width: 900px) and (orientation: potrait) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (orientation: portrait) and (any-pointer: coarse) and (hover: none){
#slide-sorter {
max-height: 60px;
}
.preview-img {
min-width: 60px;
max-width: 60px;
}
.preview-frame {
max-height: 60px;
max-width: initial;
display: table-cell;
padding-right: 1em;
}
}
@media screen (max-width: 900px) and (orientation: landscape) and (any-pointer: coarse) and (hover: none), (max-height: 900px) and (orientation: landscape) and (any-pointer: coarse) and (hover: none){
#slide-sorter {
max-width: 120px;
}
.preview-img {
min-width: 40px;
max-width: 40px;
margin-left: 8px;
}
.preview-frame {
max-height: initial;
max-width: 66px;
display: block;
}
}
/* The current part the user is on. */
.preview-img-currentpart {
border-color: #000000;
border-style: solid;
}
/* 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. */
.preview-img-dropsite {
border-bottom: 3px solid #b6b6b6;
}
/* Make it larger on larger displays */
@media (min-width: 768px),(min-device-height: 768px) {
.preview-img-dropsite {
border-bottom: 20px solid #b6b6b6;
}
}