mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 06:05:44 +00:00
d097996b85
This patch was generated by the command: find . -name "*.css" -exec sed -i -f mozpropsub {} \; in the root of a mozilla-central tree, with the file mozpropsub containing the contents: s/-moz-padding-end\>/padding-inline-end/g s/-moz-padding-start\>/padding-inline-start/g s/-moz-margin-end\>/margin-inline-end/g s/-moz-margin-start\>/margin-inline-start/g s/-moz-border-end\>/border-inline-end/g s/-moz-border-end-color\>/border-inline-end-color/g s/-moz-border-end-style\>/border-inline-end-style/g s/-moz-border-end-width\>/border-inline-end-width/g s/-moz-border-start\>/border-inline-start/g s/-moz-border-start-color\>/border-inline-start-color/g s/-moz-border-start-style\>/border-inline-start-style/g s/-moz-border-start-width\>/border-inline-start-width/g While I didn't manually review all the changes, I did review the list of files, and manually reviewed the changes in the files that I thought were more interesting. Note that there are a few tests that should be fixed up as well, but I'll do that in a later patch. MozReview-Commit-ID: EiQTuuV0MNQ
115 lines
2.1 KiB
CSS
115 lines
2.1 KiB
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/. */
|
|
|
|
@import "defines.css";
|
|
|
|
html {
|
|
font-family: "Clear Sans",sans-serif;
|
|
font-size: 14px;
|
|
background-color: var(--color_about_background);
|
|
-moz-text-size-adjust: none;
|
|
-moz-user-select: none;
|
|
--icon-size: 1.8em;
|
|
--icon-margin: 1.35em;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
}
|
|
|
|
input {
|
|
-moz-user-select: text;
|
|
}
|
|
|
|
.header {
|
|
color: #363B40;
|
|
font-size: 1.1em;
|
|
font-weight: bold;
|
|
background-color: #f5f5f5;
|
|
border-bottom: 2px solid;
|
|
-moz-border-bottom-colors: #FF9500;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
height: 48px;
|
|
}
|
|
|
|
.header > div {
|
|
flex: 1;
|
|
padding: 10px;
|
|
padding-inline-start: 16px;
|
|
}
|
|
|
|
#header-button {
|
|
background-repeat: no-repeat;
|
|
background-position: center center;
|
|
background-size: 33px 33px;
|
|
flex: 0;
|
|
height: 100%;
|
|
}
|
|
|
|
.list {
|
|
padding: 0px;
|
|
margin: 0px;
|
|
width: 100%;
|
|
}
|
|
|
|
.list-item {
|
|
color: #363B40;
|
|
background-color: var(--color_about_item);
|
|
border-bottom: 1px solid var(--color_about_item_border);
|
|
position: relative;
|
|
list-style-type: none;
|
|
list-style-image: none;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
min-height: calc(var(--icon-size) + var(--icon-margin) * 2);
|
|
}
|
|
|
|
.list-item:active {
|
|
background-color: #eeeeee;
|
|
}
|
|
|
|
.list-item[isDisabled="true"] {
|
|
color: #999999;
|
|
}
|
|
|
|
.inner {
|
|
margin-inline-start: calc(var(--icon-size) + var(--icon-margin) * 2 - 1em);
|
|
padding: 1em;
|
|
}
|
|
|
|
.icon {
|
|
border: none;
|
|
width: var(--icon-size);
|
|
height: var(--icon-size);
|
|
top: var(--icon-margin);
|
|
margin-inline-start: var(--icon-margin);
|
|
position: absolute;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.list-item[isDisabled="true"] .favicon {
|
|
opacity: 0.3;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
.title {
|
|
font-weight: bold;
|
|
overflow: hidden;
|
|
flex: 1;
|
|
}
|
|
|
|
#browse-title {
|
|
margin: 0.5em 0;
|
|
background-image: url("chrome://browser/skin/images/chevron.png");
|
|
background-size: 8px 20px;
|
|
background-position: right;
|
|
background-repeat: no-repeat;
|
|
}
|