diff options
Diffstat (limited to 'js/dojo-1.6/dojox/widget/Pager')
| -rw-r--r-- | js/dojo-1.6/dojox/widget/Pager/Pager.css | 92 | ||||
| -rw-r--r-- | js/dojo-1.6/dojox/widget/Pager/Pager.html | 13 | ||||
| -rw-r--r-- | js/dojo-1.6/dojox/widget/Pager/images/hNext.png | bin | 0 -> 496 bytes | |||
| -rw-r--r-- | js/dojo-1.6/dojox/widget/Pager/images/hPrevious.png | bin | 0 -> 502 bytes | |||
| -rw-r--r-- | js/dojo-1.6/dojox/widget/Pager/images/pageActive.png | bin | 0 -> 276 bytes | |||
| -rw-r--r-- | js/dojo-1.6/dojox/widget/Pager/images/pageInactive.png | bin | 0 -> 288 bytes | |||
| -rw-r--r-- | js/dojo-1.6/dojox/widget/Pager/images/vNext.png | bin | 0 -> 500 bytes | |||
| -rw-r--r-- | js/dojo-1.6/dojox/widget/Pager/images/vPrevious.png | bin | 0 -> 512 bytes |
8 files changed, 105 insertions, 0 deletions
diff --git a/js/dojo-1.6/dojox/widget/Pager/Pager.css b/js/dojo-1.6/dojox/widget/Pager/Pager.css new file mode 100644 index 0000000..e6bb23b --- /dev/null +++ b/js/dojo-1.6/dojox/widget/Pager/Pager.css @@ -0,0 +1,92 @@ +.pagerContainer { + position: relative; + height: 100%; + width: 100%; + overflow: hidden; + /* FIXME: need basline styles for tundra, soria, and nihilo */ + border:1px solid #ccc; + -moz-border-radius:6pt; + -webkit-border-radius:7pt; +} + +/* Horizontal classes */ + +.horizontalPagerPager { + position: absolute; + height: 12px; + width: 100%; + padding-top: 4px; + padding-bottom: 4px; +} + +.horizontalPagerStatus { + position: absolute; + height: 10px; + padding-top: 5px; + padding-bottom: 5px; + width: 100%; +} + +.horizontalPagerView { + position: absolute; + height: 100%; + width: 100%; + overflow: hidden; +} + +.horizontalPagerIcon { + cursor: pointer; +} + +/* Vertical classes */ + +.verticalPagerPager { + position: absolute; + width: 12px; + height: 100%; + padding-left: 4px; + padding-right: 4px; +} + +.verticalPagerStatus { + position: absolute; + width: 10px; + padding-left: 5px; + padding-right: 5px; + height: 100%; +} + +.verticalPagerView { + position: absolute; + height: 100%; + width: 100%; + overflow: hidden; +} + +.verticalPagerIcon { + cursor: pointer; +} + +/* Misc. */ + +.pagerIconContainer { + position: absolute; +} + +.pagerIconContainer img { + cursor: pointer; +} + +/* Items */ + +.pagerItems { + list-style: none; + padding: 0; + margin: 0; +} + +.pagerItem { + overflow: hidden; + padding: 0; + margin: 0; +}
\ No newline at end of file diff --git a/js/dojo-1.6/dojox/widget/Pager/Pager.html b/js/dojo-1.6/dojox/widget/Pager/Pager.html new file mode 100644 index 0000000..3a7b3c7 --- /dev/null +++ b/js/dojo-1.6/dojox/widget/Pager/Pager.html @@ -0,0 +1,13 @@ +<div dojoAttachPoint="pagerContainer" tabIndex="0" dojoAttachEvent="onkeypress: _handleKey, onfocus: _a11yStyle, onblur:_a11yStyle" class="${orientation}PagerContainer"> + <div class="pagerContainer"> + <div dojoAttachPoint="pagerContainerStatus" class="${orientation}PagerStatus"></div> + <div dojoAttachPoint="pagerContainerView" class="${orientation}PagerView"> + <div dojoAttachPoint="pagerItemContainer"><ul dojoAttachPoint="pagerItems" class="pagerItems"></ul></div> + </div> + <div dojoAttachPoint="pagerContainerPager" class="${orientation}PagerPager"> + <div tabIndex="0" dojoAttachPoint="pagerNext" class="pagerIconContainer" dojoAttachEvent="onclick: _pagerNext"><img dojoAttachPoint="pagerIconNext" src="${iconNext}" alt="Next" /></div> + <div tabIndex="0" dojoAttachPoint="pagerPrevious" class="pagerIconContainer" dojoAttachEvent="onclick: _pagerPrevious"><img dojoAttachPoint="pagerIconPrevious" src="${iconPrevious}" alt="Previous" /></div> + </div> + </div> + <div dojoAttachPoint="containerNode" style="display:none"></div> +</div>
\ No newline at end of file diff --git a/js/dojo-1.6/dojox/widget/Pager/images/hNext.png b/js/dojo-1.6/dojox/widget/Pager/images/hNext.png Binary files differnew file mode 100644 index 0000000..037503f --- /dev/null +++ b/js/dojo-1.6/dojox/widget/Pager/images/hNext.png diff --git a/js/dojo-1.6/dojox/widget/Pager/images/hPrevious.png b/js/dojo-1.6/dojox/widget/Pager/images/hPrevious.png Binary files differnew file mode 100644 index 0000000..3d4768a --- /dev/null +++ b/js/dojo-1.6/dojox/widget/Pager/images/hPrevious.png diff --git a/js/dojo-1.6/dojox/widget/Pager/images/pageActive.png b/js/dojo-1.6/dojox/widget/Pager/images/pageActive.png Binary files differnew file mode 100644 index 0000000..087d5bc --- /dev/null +++ b/js/dojo-1.6/dojox/widget/Pager/images/pageActive.png diff --git a/js/dojo-1.6/dojox/widget/Pager/images/pageInactive.png b/js/dojo-1.6/dojox/widget/Pager/images/pageInactive.png Binary files differnew file mode 100644 index 0000000..66ff3f4 --- /dev/null +++ b/js/dojo-1.6/dojox/widget/Pager/images/pageInactive.png diff --git a/js/dojo-1.6/dojox/widget/Pager/images/vNext.png b/js/dojo-1.6/dojox/widget/Pager/images/vNext.png Binary files differnew file mode 100644 index 0000000..7a373b8 --- /dev/null +++ b/js/dojo-1.6/dojox/widget/Pager/images/vNext.png diff --git a/js/dojo-1.6/dojox/widget/Pager/images/vPrevious.png b/js/dojo-1.6/dojox/widget/Pager/images/vPrevious.png Binary files differnew file mode 100644 index 0000000..8c497af --- /dev/null +++ b/js/dojo-1.6/dojox/widget/Pager/images/vPrevious.png |
