Bug 1369786 - Remove drag space at the start of the tab strip in maximized windows. r=dao

The drag space at the start of the tab strip is meant to appear in
non-maximized windows but not in maximized ones.
This commit is contained in:
Ekanan Ketunuti 2017-06-06 18:20:58 +07:00
Родитель 14cefed850
Коммит ef1b602718
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -6,11 +6,11 @@
%ifdef CAN_DRAW_IN_TITLEBAR
/* Add space for dragging the window */
%ifdef MENUBAR_CAN_AUTOHIDE
:root[tabsintitlebar] #toolbar-menubar[autohide=true] ~ #TabsToolbar {
:root[tabsintitlebar][sizemode=normal] #toolbar-menubar[autohide=true] ~ #TabsToolbar {
padding-inline-start: 40px;
}
%else
:root[tabsintitlebar] #TabsToolbar {
:root[tabsintitlebar][sizemode=normal] #TabsToolbar {
padding-inline-start: 40px;
}
%endif