Skip to content

Commit

Permalink
Bug 433055 - Text fields in bookmark properties should have the same …
Browse files Browse the repository at this point in the history
…height. r=dietrich, a=beltzner
  • Loading branch information
daogottwald committed Nov 19, 2008
1 parent 667a2bb commit dc40045
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 19 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,28 +88,24 @@
*/
#editBMPanel_namePicker[droppable="false"] {
/* These rules come from the textbox element in textbox.css. */

/* Normal editable menulists set this to "none". */
-moz-appearance: textfield;
-moz-appearance: textfield; /* Normal editable menulists set this to "none". */
cursor: text;

border: 2px solid;
-moz-border-top-colors: ThreeDShadow ThreeDDarkShadow;
-moz-border-right-colors: ThreeDHighlight ThreeDLightShadow;
-moz-border-bottom-colors: ThreeDHighlight ThreeDLightShadow;
-moz-border-left-colors: ThreeDShadow ThreeDDarkShadow;
padding: 2px 2px 3px;
-moz-padding-start: 4px;
background-color: -moz-Field;
color: -moz-FieldText;
}

#editBMPanel_namePicker[droppable="false"] > .menulist-editable-box {
/* Normal editable menulists set this to "menulist-textfield". */
-moz-appearance: none;
padding: 2px 2px 3px 4px;
-moz-appearance: none; /* Normal editable menulists set this to "menulist-textfield". */
padding: 0;
}


/* Hide the drop marker and the popup. */
#editBMPanel_namePicker[droppable="false"] > .menulist-dropmarker,
#editBMPanel_namePicker[droppable="false"] > menupopup {
display: none;
Expand Down
14 changes: 4 additions & 10 deletions browser/themes/winstripe/browser/places/editBookmarkOverlay.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,29 +84,23 @@
*/
#editBMPanel_namePicker[droppable="false"] {
/* These rules come from the textbox element in textbox.css. */

/* Normal editable menulists set this to "none". */
-moz-appearance: textfield;
-moz-appearance: textfield; /* Normal editable menulists set this to "menulist". */
cursor: text;

border: 2px solid;
-moz-border-top-colors: ThreeDShadow ThreeDDarkShadow;
-moz-border-right-colors: ThreeDHighlight ThreeDLightShadow;
-moz-border-bottom-colors: ThreeDHighlight ThreeDLightShadow;
-moz-border-left-colors: ThreeDShadow ThreeDDarkShadow;
padding: 2px 2px 3px;
-moz-padding-start: 4px;
background-color: -moz-Field;
color: -moz-FieldText;
}

#editBMPanel_namePicker[droppable="false"] > .menulist-editable-box {
/* Normal editable menulists set this to "menulist-textfield". */
-moz-appearance: none;
padding: 2px 2px 3px 4px;
padding: 0;
}


/* Hide the drop marker and the popup. */

#editBMPanel_namePicker[droppable="false"] > .menulist-dropmarker,
#editBMPanel_namePicker[droppable="false"] > menupopup {
display: none;
Expand Down

0 comments on commit dc40045

Please sign in to comment.