diff options
Diffstat (limited to 'js/dojo-1.7.2/dojox/widget/RollingList/RollingList.css')
| -rw-r--r-- | js/dojo-1.7.2/dojox/widget/RollingList/RollingList.css | 156 |
1 files changed, 156 insertions, 0 deletions
diff --git a/js/dojo-1.7.2/dojox/widget/RollingList/RollingList.css b/js/dojo-1.7.2/dojox/widget/RollingList/RollingList.css new file mode 100644 index 0000000..31649e7 --- /dev/null +++ b/js/dojo-1.7.2/dojox/widget/RollingList/RollingList.css @@ -0,0 +1,156 @@ +.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; +} + |
