Skip to content

Commit ceebd02

Browse files
committed
Mobile dialogues use var(--header-height) not hardcoded
Signed-off-by: Andreas-Kainz <kainz.a@gmail.com> Change-Id: I4d4705d47252db5762a9762950e5ca1e52ca97e3
1 parent e7a4dc3 commit ceebd02

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

browser/css/device-mobile.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ textarea.cool-annotation-textarea {
169169
.toolbar-row {
170170
display: flex;
171171
flex-direction: row;
172-
height: 38px !important;
172+
height: var(--header-height);
173173
}
174174

175175
.insertshape-grid {

browser/css/mobilewizard.css

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ p.mobile-wizard.ui-combobox-text.selected {
464464

465465
.ui-tabs.mobile-wizard {
466466
text-align: center;
467-
height: 42px;
467+
height: var(--header-height);
468468
display: flex;
469469
width: 100%;
470470
padding: 0px;
@@ -481,8 +481,7 @@ p.mobile-wizard.ui-combobox-text.selected {
481481
.ui-tab.mobile-wizard {
482482
flex: auto;
483483
display: table-cell;
484-
height: 36px;
485-
line-height: 36px;
484+
line-height: var(--header-height);
486485
vertical-align: middle;
487486
margin: 0px 5%;
488487
border-radius: 10px;

0 commit comments

Comments
 (0)