Bug 1718196 - Revert back to 2px 3px padding-block on native XUL buttons, and add padding-inline of 5px r=emilio

Differential Revision: https://phabricator.services.mozilla.com/D118923
This commit is contained in:
Itiel 2021-06-29 18:01:55 +00:00
Родитель 20e551c8ed
Коммит 7285182be7
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -2104,7 +2104,9 @@ bool nsNativeThemeWin::GetWidgetPadding(nsDeviceContext* aContext,
} break;
case StyleAppearance::Button:
if (aFrame->GetContent()->IsXULElement()) {
top = bottom = 4;
top = 2;
bottom = 3;
left = right = 5;
}
break;
default: