mobile: Vex dialogs: Add extra fixes to account for width changes from external css

Change-Id: I3d96b4b24890bf73eb14f2ebc3c6cba9ab54adc1
Reviewed-on: https://gerrit.libreoffice.org/82191
Reviewed-by: Pedro Pinto da Silva <pedro.silva@collabora.com>
Reviewed-by: Muhammet Kara <muhammet.kara@collabora.com>
Tested-by: Muhammet Kara <muhammet.kara@collabora.com>
This commit is contained in:
Pedro Pinto Silva 2019-11-07 09:56:45 +01:00 committed by Muhammet Kara
parent 13df611403
commit 0e4465ca68

View file

@ -82,9 +82,9 @@
border-radius: 4px !important;
background-color: #fff !important;
width: 100%;
width: -moz-available;
width: -webkit-fill-available;
width: fill-available;
width: -moz-available !important;
width: -webkit-fill-available !important;
width: fill-available !important;
border: 4px solid #fff !important;
box-shadow: 0 0 1px 1px #dfdfdf;
}
@ -119,15 +119,20 @@
min-height: 100%;
position: absolute;
width: 100%;
width: -moz-available;
width: -webkit-fill-available;
width: fill-available;
width: -moz-available !important;
width: -webkit-fill-available !important;
width: fill-available !important;
top: 0;
background-color: white;
}
.vex.vex-theme-plain input {
font-size: 1.1em !important;
}
textarea.loleaflet-annotation-textarea {
min-width: -moz-available !important;
min-width: -webkit-fill-available !important;
min-width: fill-available !important;
}
button.vex-dialog-button-primary.vex-dialog-button.vex-first {
border: 1px solid #0b87e7 !important;
border-radius: 4px !important;
@ -139,6 +144,10 @@
background-color: #fff !important;
border: 1px solid #aaa !important;
}
.vex.vex-theme-plain .vex-dialog-button{
line-height: 1em !important;
height: auto !important;
}
.vex-overlay.loleaflet-user-idle-overlay {
background-color: #05396180;
}