Bug 1463355: Remove right margin/padding from split console close button in case of the platform is not 'mac'. r=nchevobbe

MozReview-Commit-ID: DB8yM4Ce5TS

--HG--
extra : rebase_source : b52f77ede07db656871714a1541d0d6bb95ddc9c
This commit is contained in:
Daisuke Akatsuka 2018-05-23 16:43:54 +09:00
Родитель 15328d6b4f
Коммит 18f4dad11c
1 изменённых файлов: 11 добавлений и 0 удалений

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

@ -559,6 +559,17 @@ a.learn-more-link.webconsole-learn-more-link {
/* We will need to display the close button in the right-top always. */
grid-column: -1 / -2;
grid-row: 1 / 2;
padding-inline-end: 0;
}
/* On OSX the cursor turns into a window-resizing cursor at the edges of the
* window, so bring the end of the close button in. */
:root[platform="mac"] .split-console-close-button-wrapper {
padding-inline-end: 3px;
}
#split-console-close-button {
margin-inline-end: 0;
}
.webconsole-filterbar-primary .devtools-plaininput {