123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- .dojoxRollingList {
- border: 1px solid #000;
- height: 20em;
- background-color: #FFF;
- position: relative;
- }
- .dijitPopup .dojoxRollingList {
- position: static;
- }
- .dojoxRollingListContainer {
- overflow: scroll;
- overflow-y: hidden;
- overflow-x: scroll;
- white-space: nowrap;
- }
- .dojoxRollingListButtons {
- position: absolute;
- right: 5px;
- padding: 5px 0px;
- }
- .dojoxRollingListButtonsHidden .dojoxRollingListButtons {
- display: none;
- }
- .dojoxRollingListPane {
- overflow: scroll;
- overflow-x: hidden;
- overflow-y: scroll;
- display:-moz-inline-box; /* FF2 */
- display:inline-block; /* webkit and FF3 */
- #zoom: 1; /* set hasLayout:true to mimic inline-block */
- #display:inline; /* don't use .dj_ie since that increases the priority */
- border:0;
- padding:0;
- vertical-align:middle;
- #vertical-align: auto; /* makes TextBox,Button line up w/native counterparts on IE6 */
- }
- .dojoxRollingListPane .dijitMenuItem td {
- width: 1px;
- }
- .dojoxRollingListPane .dijitMenuItem td.dijitMenuItemLabel {
- width: auto;
- }
- .dojoxRollingListPane .dijitMenuItemLabel,
- .dojoxRollingListPane .dijitMenuItemIcon {
- position: static !important;
- }
- .dj_webkit .dojoxRollingListPane,
- .dj_ie .dojoxRollingListPane {
- padding-right: 15px; /* Account for scroll bar */
- }
- .dojoxRollingListPane .dijitMenu {
- border: none !important;
- }
- .dojoxRollingListItem {
- cursor: default;
- }
- /* Background colors to match menus */
- .tundra .dojoxRollingList {
- border-color: #b3b3b3;
- }
- .tundra .dijitPopup .dojoxRollingList {
- border-color: #406b9b;
- }
- .tundra .dojoxRollingListPane {
- background-color: #f7f7f7;
- }
- .tundra .dojoxRollingListPane .dojoxRollingListItemHover,
- .tundra .dojoxRollingListPane .dojoxRollingListItemFocus {
- background-color: #e3e3e3;
- }
- .tundra .dojoxRollingListPane .dojoxRollingListItemSelected {
- color: #fff;
- background-color: #999;
- font-weight: bold;
- }
- .tundra .dojoxRollingListPaneCurrentSelected .dojoxRollingListItemSelected {
- background-color: #3559ac;
- }
- .tundra .dojoxRollingListPane .dojoxRollingListItemHoverSelected,
- .tundra .dojoxRollingListPane .dojoxRollingListItemFocusSelected {
- background-color: #9aacd6;
- }
- .tundra .dojoxRollingListItem {
- font-family: inherit;
- }
- .soria .dojoxRollingList {
- border-color: #8ba0bd;
- }
- .soria .dijitPopup .dojoxRollingList {
- border-color: #406b9b;
- }
- .soria .dojoxRollingListPane {
- background-color: #fff;
- }
- .soria .dojoxRollingListPane .dojoxRollingListItemHover,
- .soria .dojoxRollingListPane .dojoxRollingListItemFocus {
- background-color: #e3e3e3;
- }
- .soria .dojoxRollingListPane .dojoxRollingListItemSelected {
- color: #243C5F;
- background-color: #ccc;
- font-weight: bold;
- }
- .soria .dojoxRollingListPaneCurrentSelected .dojoxRollingListItemSelected {
- background-color: #d9e6f9;
- }
- .soria .dojoxRollingListPane .dojoxRollingListItemHoverSelected,
- .soria .dojoxRollingListPane .dojoxRollingListItemFocusSelected {
- background-color: #ecf3fc;
- }
- .soria .dojoxRollingListItem {
- font-family: inherit;
- }
- .nihilo .dojoxRollingList {
- border-color: #d3d3d3;
- }
- .nihilo .dijitPopup .dojoxRollingList {
- border-color: #b3b3b3;
- }
- .nihilo .dojoxRollingListPane {
- background-color: #fff;
- }
- .nihilo .dojoxRollingListPane .dojoxRollingListItemHover,
- .nihilo .dojoxRollingListPane .dojoxRollingListItemFocus {
- background-color: #e3e3e3;
- }
- .nihilo .dojoxRollingListPane .dojoxRollingListItemSelected {
- color: #243C5F;
- background-color: #ccc;
- font-weight: bold;
- }
- .nihilo .dojoxRollingListPaneCurrentSelected .dojoxRollingListItemSelected {
- background-color: #ffe284;
- }
- .nihilo .dojoxRollingListPane .dojoxRollingListItemHoverSelected,
- .nihilo .dojoxRollingListPane .dojoxRollingListItemFocusSelected {
- background-color: #fff1c2;
- }
- .nihilo .dojoxRollingListItem {
- font-family: inherit;
- }
|