diff options
author | Matt A. Tobin <email@mattatobin.com> | 2018-04-18 07:22:38 -0400 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2018-04-18 07:22:38 -0400 |
commit | 8058e08926afc5ec6528d233cf8cc5f7404dad38 (patch) | |
tree | 9a962fe0d9bebbba4603c33b1f12de8cdcf5deef /application/palemoon/themes/linux | |
parent | 8361c83e41cb4b2306010e3a77836769f0423328 (diff) | |
download | UXP-8058e08926afc5ec6528d233cf8cc5f7404dad38.tar UXP-8058e08926afc5ec6528d233cf8cc5f7404dad38.tar.gz UXP-8058e08926afc5ec6528d233cf8cc5f7404dad38.tar.lz UXP-8058e08926afc5ec6528d233cf8cc5f7404dad38.tar.xz UXP-8058e08926afc5ec6528d233cf8cc5f7404dad38.zip |
[PALEMOON] Only use the private autocomplete binding on the URL bar
Diffstat (limited to 'application/palemoon/themes/linux')
-rw-r--r-- | application/palemoon/themes/linux/autocomplete.css | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/application/palemoon/themes/linux/autocomplete.css b/application/palemoon/themes/linux/autocomplete.css index fffa2b1f0..ab926851d 100644 --- a/application/palemoon/themes/linux/autocomplete.css +++ b/application/palemoon/themes/linux/autocomplete.css @@ -27,7 +27,7 @@ textbox[nomatch="true"][highlightnonmatches="true"] { color: red; } -.autocomplete-textbox-container { +.private-autocomplete-textbox-container { -moz-box-align: center; } @@ -45,9 +45,9 @@ textbox:not(.padded) .textbox-input-box { /* ::::: autocomplete popups ::::: */ -panel[type="autocomplete"], -panel[type="autocomplete-richlistbox"], -.autocomplete-history-popup { +panel[type="private-autocomplete"], +panel[type="private-autocomplete-richlistbox"], +.private-autocomplete-history-popup { border-width: 1px; -moz-border-top-colors: ThreeDDarkShadow; -moz-border-right-colors: ThreeDDarkShadow; @@ -57,20 +57,20 @@ panel[type="autocomplete-richlistbox"], background-color: -moz-Field; } -.autocomplete-history-popup { +.private-autocomplete-history-popup { max-height: 180px; } /* ::::: tree ::::: */ -.autocomplete-tree { +.private-autocomplete-tree { -moz-appearance: none !important; border: none !important; background-color: transparent !important; color: MenuText; } -.autocomplete-treecol { +.private-autocomplete-treecol { -moz-appearance: none !important; margin: 0 !important; border: none !important; @@ -78,41 +78,41 @@ panel[type="autocomplete-richlistbox"], } /* GTK calculates space for a sort arrow */ -.autocomplete-treecol > .treecol-sortdirection { +.private-autocomplete-treecol > .treecol-sortdirection { -moz-appearance: none !important; } -.autocomplete-treebody::-moz-tree-cell-text { +.private-autocomplete-treebody::-moz-tree-cell-text { -moz-padding-start: 8px; } -treechildren.autocomplete-treebody::-moz-tree-row(selected) { +treechildren.private-autocomplete-treebody::-moz-tree-row(selected) { background-color: Highlight; } -treechildren.autocomplete-treebody::-moz-tree-cell-text(selected) { +treechildren.private-autocomplete-treebody::-moz-tree-cell-text(selected) { color: HighlightText !important; } -.autocomplete-treebody::-moz-tree-image(treecolAutoCompleteValue) { +.private-autocomplete-treebody::-moz-tree-image(treecolAutoCompleteValue) { max-width: 16px; height: 16px; } /* ::::: richlistbox autocomplete ::::: */ -.autocomplete-richlistbox { +.private-autocomplete-richlistbox { -moz-appearance: none; margin: 1px; background-color: transparent; } -.autocomplete-richlistitem[selected="true"] { +.private-autocomplete-richlistitem[selected="true"] { background-color: Highlight; color: HighlightText; } -.autocomplete-richlistitem { +.private-autocomplete-richlistitem { padding: 6px 2px; color: MenuText; } @@ -123,17 +123,17 @@ treechildren.autocomplete-treebody::-moz-tree-cell-text(selected) { margin-top: 1px; } -.autocomplete-richlistitem[actiontype="keyword"] .ac-url-box, -.autocomplete-richlistitem[actiontype="searchengine"] .ac-url-box, -.autocomplete-richlistitem[actiontype="visiturl"] .ac-url-box, -.autocomplete-richlistitem[type~="autofill"] .ac-url-box { +.private-autocomplete-richlistitem[actiontype="keyword"] .ac-url-box, +.private-autocomplete-richlistitem[actiontype="searchengine"] .ac-url-box, +.private-autocomplete-richlistitem[actiontype="visiturl"] .ac-url-box, +.private-autocomplete-richlistitem[type~="autofill"] .ac-url-box { visibility: hidden; } -.autocomplete-richlistitem[actiontype="keyword"] .ac-title-box, -.autocomplete-richlistitem[actiontype="searchengine"] .ac-title-box, -.autocomplete-richlistitem[actiontype="visiturl"] .ac-title-box, -.autocomplete-richlistitem[type~="autofill"] .ac-title-box { +.private-autocomplete-richlistitem[actiontype="keyword"] .ac-title-box, +.private-autocomplete-richlistitem[actiontype="searchengine"] .ac-title-box, +.private-autocomplete-richlistitem[actiontype="visiturl"] .ac-title-box, +.private-autocomplete-richlistitem[type~="autofill"] .ac-title-box { /* Center the title by moving it down by half of .ac-url-box's height, including vertical margins (if any). */ transform: translateY(.5em); |