Skip to content
Snippets Groups Projects
Commit 34740dff authored by Marco Bonardo's avatar Marco Bonardo
Browse files

Bug 462663 - Height of tags edit field shrunken since landing of tags...

Bug 462663 - Height of tags edit field shrunken since landing of tags autocomplete feature, r=dao,gavin a=beltzner
parent 0d7ca277
No related branches found
No related tags found
No related merge requests found
......@@ -178,6 +178,7 @@
observes="paneElementsBroadcaster"/>
<textbox id="editBMPanel_tagsField"
type="autocomplete"
class="padded"
autocompletesearch="places-tag-autocomplete"
completedefaultindex="true"
tabscrolling="true"
......
......@@ -73,15 +73,6 @@ radio[pane=paneAdvanced] {
-moz-image-region: rect(0px, 224px, 32px, 192px)
}
/* General Pane */
#browserHomePage {
padding-top: 2px;
padding-bottom: 3px;
-moz-padding-start: 4px;
-moz-padding-end: 2px;
background-color: -moz-Dialog;
}
/* Applications Pane */
#BrowserPreferences[animated="true"] #handlersView {
height: 25em;
......
......@@ -100,15 +100,6 @@ radio[pane=paneAdvanced][selected="true"] {
-moz-image-region: rect(32px, 224px, 64px, 192px)
}
/* General Pane */
#browserHomePage {
padding-top: 2px;
padding-bottom: 3px;
-moz-padding-start: 4px;
-moz-padding-end: 2px;
background-color: -moz-Dialog;
}
/* Applications Pane */
#BrowserPreferences[animated="true"] #handlersView {
height: 25em;
......
......@@ -46,7 +46,8 @@
/* ::::: autocomplete ::::: */
textbox {
/* .padded is used by autocomplete widgets that don't have an icon. Gross. -dwh */
textbox:not(.padded) {
cursor: default;
padding: 0;
}
......@@ -61,14 +62,6 @@ textbox[nomatch="true"][highlightnonmatches="true"] {
color: red;
}
/* Used by autocomplete widgets that don't have an icon. Gross. -dwh */
textbox.padded {
padding-top: 1px;
padding-bottom: 1px;
-moz-padding-start: 2px;
-moz-padding-end: 0px;
}
.autocomplete-textbox-container {
-moz-box-align: center;
}
......@@ -77,8 +70,11 @@ textbox[enablehistory="true"] > .autocomplete-textbox-container {
-moz-appearance: menulist-textfield;
}
.textbox-input-box {
textbox:not(.padded) .textbox-input-box {
margin: 0 3px;
}
.textbox-input-box {
-moz-box-align: center;
}
......
......@@ -46,7 +46,8 @@
/* ::::: autocomplete ::::: */
textbox {
/* .padded is used by autocomplete widgets that don't have an icon. Gross. -dwh */
textbox:not(.padded) {
cursor: default;
padding: 0;
}
......@@ -55,13 +56,11 @@ textbox[nomatch="true"][highlightnonmatches="true"] {
color: red;
}
/* Used by autocomplete widgets that don't have an icon. Gross. -dwh */
textbox.padded {
padding: 1px 0px 1px 2px;
textbox:not(.padded) .textbox-input-box {
margin: 0 3px;
}
.textbox-input-box {
margin: 0 3px;
-moz-box-align: center;
}
......
......@@ -46,7 +46,8 @@
/* ::::: autocomplete ::::: */
textbox {
/* .padded is used by autocomplete widgets that don't have an icon. Gross. -dwh */
textbox:not(.padded) {
cursor: default;
padding: 0;
}
......@@ -55,20 +56,15 @@ textbox[nomatch="true"][highlightnonmatches="true"] {
color: red;
}
/* Used by autocomplete widgets that don't have an icon. Gross. -dwh */
textbox.padded {
padding-top: 1px;
padding-bottom: 1px;
-moz-padding-start: 2px;
-moz-padding-end: 0px;
}
.autocomplete-textbox-container {
-moz-box-align: center;
}
.textbox-input-box {
textbox:not(.padded) .textbox-input-box {
margin: 0 3px;
}
.textbox-input-box {
-moz-box-align: center;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment