Details
-
Type:
Improvement
-
Status: Closed
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 4.0
-
Component/s: ACE-Components
-
Labels:None
-
Environment:*
-
Assignee Priority:P3
Description
Remove the rounded corners from the first item of the selectMenu when opening a list that descends from a menu, or remove the rounded corners from the last item of the selectMenu when opening a list that opens upwards.
This could be done with a css rule that overrides the rounded corner rules based on some attribute of the ui-selectMenu.
Ex. (add the following rules and the downwards / upwards indicator)
.ui-selectmenu.downwards .ui-selectmenu-list > div > div:first-child {
-webkit-border-top-right-radius: 0;
-webkit-border-top-left-radius: 0;
-moz-border-top-right-radius: 0;
-moz-border-top-left-radius: 0;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.ui-selectmenu.upwards .ui-selectmenu-list > div > div:last-child {
-webkit-border-bottom-right-radius: 0;
-webkit-border-bottom-left-radius: 0;
-moz-border-bottom-right-radius: 0;
-moz-border-bottom-left-radius: 0;
border-top-bottom-radius: 0;
border-top-bottom-radius: 0;
}
This could be done with a css rule that overrides the rounded corner rules based on some attribute of the ui-selectMenu.
Ex. (add the following rules and the downwards / upwards indicator)
.ui-selectmenu.downwards .ui-selectmenu-list > div > div:first-child {
-webkit-border-top-right-radius: 0;
-webkit-border-top-left-radius: 0;
-moz-border-top-right-radius: 0;
-moz-border-top-left-radius: 0;
border-top-right-radius: 0;
border-top-left-radius: 0;
}
.ui-selectmenu.upwards .ui-selectmenu-list > div > div:last-child {
-webkit-border-bottom-right-radius: 0;
-webkit-border-bottom-left-radius: 0;
-moz-border-bottom-right-radius: 0;
-moz-border-bottom-left-radius: 0;
border-top-bottom-radius: 0;
border-top-bottom-radius: 0;
}
Issue Links
- depends on
-
ICE-10079
ace:selectMenu - Add intelligent popup positioning
-
- Closed
-
Activity
| Field | Original Value | New Value |
|---|---|---|
| Assignee | Ken Fyten [ ken.fyten ] | |
| Fix Version/s | 3.4 [ 10770 ] |
| Fix Version/s | 4.0 [ 11382 ] | |
| Fix Version/s | 4.0.BETA [ 10770 ] |
| Assignee | Ken Fyten [ ken.fyten ] | Arturo Zambrano [ artzambrano ] |
| Issue Type | Bug [ 1 ] | Improvement [ 4 ] |
| Priority | Major [ 3 ] | Trivial [ 5 ] |
| Assignee Priority | P3 [ 10012 ] |
| Repository | Revision | Date | User | Message |
| ICEsoft Public SVN Repository | #42032 | Tue Jul 29 15:31:27 MDT 2014 | art.zambrano | |
| Files Changed | ||||
MODIFY
/icefaces4/trunk/icefaces/ace/component/src/org/icefaces/ace/component/selectmenu/SelectMenuRenderer.java
MODIFY
/icefaces4/trunk/icefaces/ace/component/resources/icefaces.ace/selectmenu/selectmenu.js
|
| Status | Open [ 1 ] | Resolved [ 5 ] |
| Resolution | Fixed [ 1 ] |
| Status | Resolved [ 5 ] | Closed [ 6 ] |

r42032: removed rounded corners from the list edge touching the text field