source: Dev/branches/rest-dojo-ui/client/dojox/image/resources/SlideShow.css @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 2.2 KB
Line 
1/* dojox.image.SlideShow */
2
3.slideShowWrapper {
4        position:relative;
5        background:#fff;
6        padding:8px;
7        border:1px solid #333; 
8        padding-bottom:20px;
9        overflow:hidden;
10        -moz-border-radius:3pt;
11        -webkit-border-radius:4pt;
12        -webkit-drop-shadow:#ccc 4pt;
13}
14.slideShowNav {
15        position:absolute;
16        bottom:-18px;   
17        left:0px;
18        padding:0px 3px 2px 0px;
19        background-color:#fff;
20        width:100%;
21}
22.slideShowNavWrapper { float:right;  }
23.slideShowTitle {
24        float:left;
25        color:#333;
26        font-size:10pt;
27}
28.slideShowTitle .slideShowCounterText {
29        font-size:6pt; color:#666;
30}
31.slideShowHidden {
32        position:absolute;
33        display: none;
34        height: 1px;
35        width: 1px;
36}
37.slideShowImageWrapper {
38        position:relative;
39        text-align: center;
40        margin-top: -42px;
41        float: left;
42        width: 100%;
43}
44.slideShowImageWrapper img {
45        border: 0px none;
46}
47.slideShowNotifier {
48        background-color: red;
49        width: 100px;
50        height: 5px;
51        font-size: 1%;/*IE hack to get around the Empty-Div bug*/
52}
53.slideShowSlideShow {
54        position:absolute;
55        top:30px;
56        padding: 0 5px;
57        border: 0px;
58        text-decoration: none;
59        color: #2e6ab1;
60}
61.slideShowLoading { background-color: #fad66a; }
62.slideShowLoaded { background-color: transparent; }
63/*
64.sprite-arrowbottom { background-position: 0 -30px; }
65.sprite-arrowtop { background-position: 0 -430px; }
66*/
67.slideShowCtrlPrev {
68        background-position: -96px 0px;
69        float: left;
70}
71.slideShowCtrlNext {
72        background-position: -144px 0px;
73        float: right;
74}
75.slideShowCtrlPlay {
76        background-position: -190px 0px;
77        position: absolute;
78}
79.slideShowPaused .slideShowCtrlPlay {
80        background-position: -236px 0px;
81        position: absolute;
82}
83.slideShowCtrl span.slideShowCtrlHide {
84        background-image: url("../../../dojo/resources/blank.gif");
85        cursor: auto;
86}
87
88.slideShowCtrl {
89        height: 50px;
90        width: 100%;
91        position: relative;
92        z-index:999;
93        float: left;
94}
95.slideShowCtrl span {
96        width: 50px;
97        height: 100%;
98        background-image: url("images/buttons.png");
99        cursor: pointer;
100}
101.dj_ie .slideShowCtrl span {
102        background-image: url("images/buttons.gif");
103}
104
105.dj_ie6 .slideShowPager li.currentpage,
106.dj_ie6 .pagination li.disablepage{
107    /*IE 6 and below. Adjust non linked LIs slightly to account for bugs*/
108    margin-right: 5px;
109    padding-right: 0;
110}
111
Note: See TracBrowser for help on using the repository browser.