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
55 lines
1.9 KiB
CSS
55 lines
1.9 KiB
CSS
#PopupAutoCompleteRichResult > hbox[anonid="search-suggestions-notification"] {
|
|
border-bottom: 1px solid hsla(210, 4%, 10%, 0.14);
|
|
background-color: hsla(210, 4%, 10%, 0.07);
|
|
padding: 6px 0;
|
|
padding-inline-start: 44px;
|
|
padding-inline-end: 6px;
|
|
background-image: url("chrome://browser/skin/info.svg");
|
|
background-clip: padding-box;
|
|
background-position: 20px center;
|
|
background-repeat: no-repeat;
|
|
background-size: 16px 16px;
|
|
}
|
|
|
|
#PopupAutoCompleteRichResult > hbox[anonid="search-suggestions-notification"]:-moz-locale-dir(rtl) {
|
|
background-position: right 20px center;
|
|
}
|
|
|
|
#PopupAutoCompleteRichResult > hbox[anonid="search-suggestions-notification"] > description {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#PopupAutoCompleteRichResult > hbox[anonid="search-suggestions-notification"] > description > label.text-link {
|
|
margin-inline-start: 0;
|
|
}
|
|
|
|
#PopupAutoCompleteRichResult > hbox[anonid="search-suggestions-notification"] > button {
|
|
-moz-appearance: none;
|
|
min-width: 80px;
|
|
border-radius: 3px;
|
|
padding: 4px 16px;
|
|
margin: 0;
|
|
margin-inline-start: 10px;
|
|
}
|
|
|
|
#PopupAutoCompleteRichResult > hbox[anonid="search-suggestions-notification"] > button[anonid="search-suggestions-notification-disable"] {
|
|
color: hsl(210, 0%, 38%);
|
|
background-color: hsl(210, 0%, 88%);
|
|
border: 1px solid hsl(210, 0%, 82%);
|
|
}
|
|
|
|
#PopupAutoCompleteRichResult > hbox[anonid="search-suggestions-notification"] > button[anonid="search-suggestions-notification-disable"]:hover {
|
|
background-color: hsl(210, 0%, 84%);
|
|
}
|
|
|
|
#PopupAutoCompleteRichResult > hbox[anonid="search-suggestions-notification"] > button[anonid="search-suggestions-notification-enable"] {
|
|
color: white;
|
|
background-color: hsl(93, 82%, 44%);
|
|
border: 1px solid hsl(93, 82%, 44%);
|
|
}
|
|
|
|
#PopupAutoCompleteRichResult > hbox[anonid="search-suggestions-notification"] > button[anonid="search-suggestions-notification-enable"]:hover {
|
|
background-color: hsl(93, 82%, 40%);
|
|
}
|