libreoffice-online/loleaflet/css/selectionMarkers.css
Ashod Nakashian fd978cf98e Revert "Desktop: Calc: formular bar: Decrease size of selection..."
The commit in question breaks clicking into the Formula-Bar.
With that commit, the Formula-Bar doesn't take focus upon clicking
most of the time, and only rarely does so (possibly depending on
the precise location of the click).

This reverts commit b906c6985a.

Change-Id: I2ff6b531b479c265935cbc44af4d2cbbaa7c418b
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/91050
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Ashod Nakashian <ashnakash@gmail.com>
2020-03-25 14:07:06 +01:00

36 lines
836 B
CSS

.leaflet-selection-marker-start {
position: absolute;
margin-left: -28px;
width: 30px;
height: 44px;
background-image: url('images/handle_start.svg');
}
.leaflet-selection-marker-end {
position: absolute;
margin-left: -2px;
width: 30px;
height: 44px;
background-image: url('images/handle_end.svg');
}
.leaflet-cursor-handler {
margin-left: -14px;
width: 30px;
height: 44px;
background-image: url('images/cursor-handler.svg');
}
.inputbar_selection_handles * {
z-index: 1;
}
#tb_formulabar_item_formula .inputbar_selection_handles{
/*display: none;*/
}
@media (max-width: 767px), (max-device-height: 767px) and (pointer: coarse) {
#tb_formulabar_item_formula, #tb_formulabar_item_address {
height: 54px !important;
}
#tb_formulabar_item_formula > div, #tb_formulabar_item_address > div {
margin-top: -16px;
}
}