diff options
author | Thomas Groman <tgroman@nuegia.net> | 2020-05-08 01:36:36 -0700 |
---|---|---|
committer | Thomas Groman <tgroman@nuegia.net> | 2020-05-08 01:36:36 -0700 |
commit | 60a9bc8421ebfb6e9a8ed563d15fa157cfcf796a (patch) | |
tree | ac0841083cbcc08233e56bba410398d9617e97aa /webbrowser/themes/linux/sanitizeDialog.css | |
parent | c9d96f4105e91bad95423e93195f4146f5720081 (diff) | |
download | webbrowser-60a9bc8421ebfb6e9a8ed563d15fa157cfcf796a.tar webbrowser-60a9bc8421ebfb6e9a8ed563d15fa157cfcf796a.tar.gz webbrowser-60a9bc8421ebfb6e9a8ed563d15fa157cfcf796a.tar.lz webbrowser-60a9bc8421ebfb6e9a8ed563d15fa157cfcf796a.tar.xz webbrowser-60a9bc8421ebfb6e9a8ed563d15fa157cfcf796a.zip |
Replace -moz prefixed logical properties in themes
Diffstat (limited to 'webbrowser/themes/linux/sanitizeDialog.css')
-rw-r--r-- | webbrowser/themes/linux/sanitizeDialog.css | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/webbrowser/themes/linux/sanitizeDialog.css b/webbrowser/themes/linux/sanitizeDialog.css index 96cf3bc..28d4e7e 100644 --- a/webbrowser/themes/linux/sanitizeDialog.css +++ b/webbrowser/themes/linux/sanitizeDialog.css @@ -3,12 +3,12 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ #sanitizeDurationChoice { - -moz-margin-end: 0; + margin-inline-end: 0; } /* Align the duration label with the warning box and item list */ #sanitizeDurationLabel { - -moz-margin-start: 3px; + margin-inline-start: 3px; } @@ -56,15 +56,15 @@ padding: 0; margin-top: 6px; margin-bottom: 6px; - -moz-margin-start: -6px; - -moz-margin-end: 0; + margin-inline-start: -6px; + margin-inline-end: 0; } .expander-up, .expander-down { min-width: 0; padding: 2px 0; - -moz-padding-start: 2px; + padding-inline-start: 2px; } .expander-up { @@ -86,8 +86,8 @@ /* Make the item list the same width as the warning box */ #itemList { - -moz-margin-start: 0; - -moz-margin-end: 0; + margin-inline-start: 0; + margin-inline-end: 0; } /* Without this a useless scrollbar appears in the listbox when its rows @@ -100,8 +100,8 @@ /* Align the last dialog button with the end of the warning box */ .prefWindow-dlgbuttons { - -moz-margin-end: 0; + margin-inline-end: 0; } .dialog-button[dlgtype="accept"] { - -moz-margin-end: 0; + margin-inline-end: 0; } |