Bug 1274272 - followup: use float: left/right to ensure this keeps working when inline-start is not available, r=mikedeboer

MozReview-Commit-ID: 7VTz8mwyUN7

--HG--
extra : rebase_source : 610dc86551121706503369be11999c95ebab1395
This commit is contained in:
Gijs Kruitbosch 2016-05-26 14:27:45 +01:00
Родитель f75348efb3
Коммит e44407c910
1 изменённых файлов: 7 добавлений и 2 удалений

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

@ -66,13 +66,17 @@ p {
}
.list-row > ul > li {
float: inline-start;
float: left;
width: 220px;
line-height: 1.5em;
margin-inline-start: 1em;
margin-bottom: 0;
}
.list-row > ul > li:dir(rtl) {
float: right;
}
.title {
background-image: url("chrome://browser/skin/privatebrowsing/private-browsing.svg");
background-size: 64px;
@ -161,7 +165,7 @@ a.button {
}
.toggle + .toggle-btn::before {
float: inline-start;
float: left;
left: 9px;
visibility: hidden;
background-size: 16px;
@ -177,6 +181,7 @@ a.button {
}
.toggle + .toggle-btn:dir(rtl)::before {
float: right;
left: auto;
right: 9px;
}