d80252d240
- On desktop keep using `(`...`)` around string - But make it possible to remove easily and automatically when on mobile - make sure there is a space right before that - On mobile we normally have less space horizontally and it's harder to read long line - So place git hash as a new line (it also has the advantage that both links [co and integrator] will now align with each other making it easier to spot and tap on them) Signed-off-by: Pedro Pinto Silva <pedro.silva@collabora.com> Change-Id: Ie43a5374e3617da2e5f9b7e19c61601ff935ce4a
24 lines
611 B
CSS
24 lines
611 B
CSS
/* CSS specific for desktop browsers. */
|
|
|
|
/* Related to selectionMarkers.css on formulabar*/
|
|
#tb_formulabar_item_formula .inputbar_selection_handles *{
|
|
background-size: 20px;
|
|
background-position-y: top;
|
|
width: 20px;
|
|
background-repeat: no-repeat;
|
|
margin-left: 1px !important;
|
|
transform: translateY(-12px);
|
|
}
|
|
#tb_formulabar_item_formula .inputbar_selection_handles .leaflet-selection-marker-start{
|
|
margin-left: -20px !important;
|
|
}
|
|
|
|
#coolwsd-version span:before,
|
|
#lokit-version > span:before {
|
|
content: ' (';
|
|
white-space: pre;
|
|
}
|
|
#coolwsd-version span:after,
|
|
#lokit-version > span:after {
|
|
content: ')';
|
|
}
|