1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
/*
# 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/.
*/
/*
Global styles for extensions page from chrome://browser/content/extension.css
They are applied to sidebar contents automatically but not provided for
in-page contents, so we manually define them here.
*/
html,
body {
box-sizing: border-box;
cursor: default;
display: flex;
flex-direction: column;
font: caption;
font-weight: normal; /* This is required to cancel unexpected bold weight produced by the "caption" system font name on Windows 7 Classic theme. See also: https://github.com/piroor/treestyletab/issues/2636 */
margin-block: 0;
margin-inline: 0;
padding-block: 0;
padding-inline: 0;
-moz-user-select: none;
* {
box-sizing: border-box;
text-align: start;
}
}
|