Ticket #1190 (closed defect: fixed)
[patch][cla] ComboBox Extra Spacing/Strange Gaps/Unusual Style
| Reported by: | rheaghen@… | Owned by: | itorrey |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | design/interactions | Version: | 0.3 |
| Severity: | normal | Keywords: | combobox style |
| Cc: |
Description
the combobox's style is kindof strange. I'm not sure why its layout was designed th way it was, buy I've created a look more typical to other dropdowns
it includes a style and an image
src/widget/templates/HtmlComboBox.css
input.dojoComboBoxInput {
/* font-size: 0.8em; */
border: 0px;
}
.dojoComboBoxOptions {
font-family: Verdana, Helvetica, Garamond, sans-serif;
/* font-size: 0.7em; */
background-color: white;
border: 1px solid #afafaf;
position: absolute;
z-index: 1000;
overflow: auto;
-moz-opacity: 0;
cursor: default;
}
table.dojoComboBox {
border: 1px solid #afafaf;
border-collapse: collapse;
}
table.dojoComboBox img{
vertical-align:bottom;
}
.dojoComboBoxItem {
padding-left: 0px;
padding-top: 0px;
margin: 0px;
}
.dojoComboBoxItemEven {
background-color: #f4f4f4;
}
.dojoComboBoxItemOdd {
background-color: white;
}
.dojoComboBoxItemHighlight {
background-color: #63709A;
color: white;
}
also, I changed the dimentions of the button graphic to 15px/20px (src/widget/templates/images/combo_box_arrow.png)
now your combobox won't get picked on by the other select boxes for looking different.
Attachments
Change History
Note: See
TracTickets for help on using
tickets.