fune/toolkit/content/widgets/marquee.css
Emilio Cobos Álvarez b9c1bf761c Bug 312971 - Unprefix -moz-read-write / -moz-read-only. r=edgar
And remove some duplicated tests from WPT.

Differential Revision: https://phabricator.services.mozilla.com/D75231
2020-05-14 16:46:08 +00:00

38 lines
792 B
CSS

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.horizontalContainer {
display: -moz-box;
overflow: hidden;
width: -moz-available;
}
.horizontalOuterDiv {
display: -moz-box;
}
.horizontalInnerDiv {
display: table;
border-spacing: 0;
}
.verticalContainer {
overflow: hidden;
width: -moz-available;
}
/* disable scrolling in contenteditable */
:host(:read-write) .horizontalOuterDiv,
:host(:read-write) .verticalInnerDiv {
margin: 0 !important;
padding: 0 !important;
}
/* PRINT ONLY rules */
@media print {
.horizontalOuterDiv,
.verticalInnerDiv {
margin: 0 !important;
padding: 0 !important;
}
}