Add important to really hide tab-close-button margin on touch density

This commit is contained in:
MrOtherGuy 2019-02-05 08:17:03 +02:00
parent de85770d94
commit 931f9b1292
3 changed files with 5 additions and 2 deletions

View file

@ -21,7 +21,7 @@
padding-left: var(--window-drag-space-width);
}
/* 1px margin on touch density causes tabs to be too high */
.tab-close-button{ margin-top: 0 }
.tab-close-button{ margin-top: 0 !important }
/* Hide dropdown placeholder */
#urlbar-container:not(:hover) .urlbar-history-dropmarker{margin-inline-start: -28px;}

View file

@ -35,7 +35,7 @@
z-index: 3;
}
/* 1px margin on touch density causes tabs to be too high */
.tab-close-button{ margin-top: 0 }
.tab-close-button{ margin-top: 0 !important }
/* Hide dropdown placeholder */
#urlbar-container:not(:hover) .urlbar-history-dropmarker{margin-inline-start: -28px;}

View file

@ -34,5 +34,8 @@
padding-right: calc(3 * 46px + var(--window-drag-space-width));
}
/* 1px margin on touch density causes tabs to be too high */
.tab-close-button{ margin-top: 0 !important }
/* Hide dropdown placeholder */
#urlbar-container:not(:hover) .urlbar-history-dropmarker{margin-inline-start: -28px;}