source: extensions/rv_gmaps/trunk/template/nyroModal/nyroModal.css @ 15907

Last change on this file since 15907 was 8029, checked in by rvelices, 13 years ago

rv_gmaps do not use prototype anymore on the picture page

  • Property svn:eol-style set to LF
File size: 1.9 KB
Line 
1div#nyroModalFull {
2        font-size: 12px;
3        color: #777;
4}
5div#nyroModalLoading {
6        border: 4px solid #777;
7        width: 150px;
8        height: 150px;
9        text-indent: -9999em;
10        background: #fff url(ajaxLoader.gif) no-repeat;
11        background-position: center;
12}
13div#nyroModalLoading.error {
14        border: 4px solid #f66;
15        line-height: 20px;
16        padding: 20px;
17        width: 300px;
18        height: 100px;
19        text-indent: 0;
20        background: #fff;
21}
22div#nyroModalWrapper {
23        background: #fff;
24        border: 4px solid #777;
25}
26a#closeBut {
27        position: absolute;
28        display: block;
29        top: -13px;
30        right: -13px;
31        width: 12px;
32        height: 12px;
33        text-indent: -9999em;
34        background: url(close.gif) no-repeat;
35        outline: 0;
36}
37h1#nyroModalTitle {
38        margin: 0;
39        padding: 0;
40        position: absolute;
41        top: -22px;
42        left: 5px;
43        font-size: 12px;
44        color: #ddd;
45}
46div#nyroModalContent {
47        overflow: auto;
48}
49div.wrapper div#nyroModalContent {
50        padding: 5px;
51}
52div.wrapperImg div#nyroModalContent {
53        position: relative;
54        overflow: hidden;
55        text-align: center;
56}
57div.wrapperImg img {
58        vertical-align: baseline;
59}
60div.wrapperImg div#nyroModalContent div {
61        position: absolute;
62        bottom: 0;
63        left: 0;
64        background: black;
65        padding: 10px;
66        margin: 10px;
67        border: 1px white dotted;
68        overflow: hidden;
69        opacity: 0.2;
70        filter: alpha(opacity=20);
71}
72div.wrapperImg div#nyroModalContent div:hover {
73        opacity: 0.5;
74        filter: alpha(opacity=50);
75        cursor: help;
76}
77a.nyroModalPrev, a.nyroModalNext {
78        z-index: 105;
79        outline: none;
80        position: absolute;
81        top: 0;
82        height: 100%;
83        width: 40%;
84        cursor: pointer;
85        text-indent: -9999em;
86        background: left 20% no-repeat;
87        background-image: url(data:image/gif;base64,AAAA); /* Trick IE6 */
88}
89div.wrapperSwf a.nyroModalPrev, div.wrapperSwf a.nyroModalNext, div.wrapper a.nyroModalPrev, div.wrapper a.nyroModalNext {
90        height: 60%;
91        width: 20%;
92}
93a.nyroModalPrev {
94        left: 0;
95}
96a.nyroModalPrev:hover {
97        background-image: url(prev.gif);
98}
99a.nyroModalNext {
100        right: 0;
101        background-position: right 20%;
102}
103a.nyroModalNext:hover {
104        background-image: url(next.gif);
105}
Note: See TracBrowser for help on using the repository browser.