Bug 1439172 - port bug 1427364: Show comments in address autocomplete when they exist. r=jorgk

This commit is contained in:
Richard Marti 2018-02-18 13:42:17 +01:00
Родитель a487105ded
Коммит 0c6a792d1a
3 изменённых файлов: 66 добавлений и 0 удалений

Просмотреть файл

@ -9,6 +9,7 @@
@import url("chrome://messenger/skin/");
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");
#attachmentBucket {
width: 15em;
@ -277,6 +278,27 @@ menulist:-moz-locale-dir(rtl) > .menulist-label-box {
/* ::::: autocomplete icons ::::: */
html|span.ac-emphasize-text {
font-weight: bold;
}
.autocomplete-richlistitem:not([ac-comment=""]) > .ac-url,
.autocomplete-richlistitem:not([ac-comment=""]) > .ac-separator {
display: -moz-box;
}
.autocomplete-richlistitem:not([ac-comment=""]) > .ac-url {
-moz-box-ordinal-group: 1;
}
.autocomplete-richlistitem:not([ac-comment=""]) > .ac-separator {
-moz-box-ordinal-group: 2;
}
.autocomplete-richlistitem:not([ac-comment=""]) > .ac-title {
-moz-box-ordinal-group: 3;
}
.ac-site-icon {
display: -moz-box;
margin: 1px 5px;

Просмотреть файл

@ -9,6 +9,7 @@
@import url("chrome://messenger/skin/");
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");
#compose-toolbox:-moz-lwtheme {
-moz-appearance: none;
@ -323,6 +324,27 @@ toolbar[nowindowdrag="true"] {
/* ::::: autocomplete icons ::::: */
html|span.ac-emphasize-text {
font-weight: bold;
}
.autocomplete-richlistitem:not([ac-comment=""]) > .ac-url,
.autocomplete-richlistitem:not([ac-comment=""]) > .ac-separator {
display: -moz-box;
}
.autocomplete-richlistitem:not([ac-comment=""]) > .ac-url {
-moz-box-ordinal-group: 1;
}
.autocomplete-richlistitem:not([ac-comment=""]) > .ac-separator {
-moz-box-ordinal-group: 2;
}
.autocomplete-richlistitem:not([ac-comment=""]) > .ac-title {
-moz-box-ordinal-group: 3;
}
.ac-site-icon {
display: -moz-box;
margin: 2px 5px;

Просмотреть файл

@ -9,6 +9,7 @@
@import url("chrome://messenger/skin/");
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");
#attachmentBucket {
-moz-appearance: none;
@ -790,6 +791,27 @@ toolbar:not(:-moz-lwtheme) {
/* ::::: autocomplete icons ::::: */
html|span.ac-emphasize-text {
font-weight: bold;
}
.autocomplete-richlistitem:not([ac-comment=""]) > .ac-url,
.autocomplete-richlistitem:not([ac-comment=""]) > .ac-separator {
display: -moz-box;
}
.autocomplete-richlistitem:not([ac-comment=""]) > .ac-url {
-moz-box-ordinal-group: 1;
}
.autocomplete-richlistitem:not([ac-comment=""]) > .ac-separator {
-moz-box-ordinal-group: 2;
}
.autocomplete-richlistitem:not([ac-comment=""]) > .ac-title {
-moz-box-ordinal-group: 3;
}
.ac-site-icon {
display: -moz-box;
margin: 1px 5px;