PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 7.5.1
Jetpack – WP Security, Backup, Speed, & Growth v7.5.1
16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 14.2.2 14.3.1 All 501 releases
jetpack / modules / shortcodes / css / slideshow-shortcode-rtl.css
slideshow-shortcode-rtl.css
146 lines 3.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* Do not modify this file directly. It is concatenated from individual module CSS files. */
2 .slideshow-window {
3 background-color: #222;
4 border: 20px solid #222;
5 border-radius: 10px;
6 height: 0;
7 margin-bottom: 20px;
8 overflow: hidden;
9 padding-top: 30px !important;
10 padding-bottom: 56.25% !important;
11 position: relative;
12 z-index: 1;
13 }
14
15 .slideshow-window.slideshow-white {
16 background-color: #fff;
17 border-color: #fff;
18 }
19
20 .slideshow-window, .slideshow-window * {
21 box-sizing: content-box;
22 }
23
24 .slideshow-loading {
25 height: 100%;
26 text-align: center;
27 margin: auto;
28 }
29
30 body div.slideshow-window * img {
31 /* Override any styles that might be present in the page stylesheet */
32 background-color: transparent !important;
33 background-image: none !important;
34 border-width: 0 !important;
35 display: block;
36 margin: 0 auto;
37 max-width: 100%;
38 max-height: 100%;
39 padding: 0 !important;
40 position: relative;
41 transform: translateY(-50%);
42 top: 50%;
43 }
44
45 .slideshow-loading img {
46 vertical-align: middle;
47 }
48
49 .slideshow-slide {
50 display: none;
51 height: 100% !important;
52 right: 0;
53 margin: auto;
54 position: absolute;
55 text-align: center;
56 top: 0;
57 width: 100% !important;
58 }
59
60 .slideshow-slide img {
61 vertical-align: middle;
62 }
63
64 .slideshow-line-height-hack {
65 overflow: hidden;
66 width: 0px;
67 font-size: 0px;
68 }
69
70 .slideshow-slide-caption {
71 font-size: 13px;
72 font-family: "Helvetica Neue", sans-serif;
73 color: #f7f7f7;
74 text-shadow: #222 -1px 1px 2px;
75 line-height: 25px;
76 height: 25px;
77 position: absolute;
78 bottom: 5px;
79 right: 0;
80 z-index: 100;
81 width: 100%;
82 text-align: center;
83 }
84
85 .slideshow-controls {
86 z-index: 1000;
87 position: absolute;
88 bottom: 30px;
89 margin: auto;
90 text-align: center;
91 width: 100%;
92 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
93 opacity: 0.5;
94 direction:ltr;
95 transition: 300ms opacity ease-out;
96 }
97
98 .slideshow-window:hover .slideshow-controls {
99 -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
100 opacity: 1;
101 }
102
103 body div div.slideshow-controls a,
104 body div div.slideshow-controls a:hover {
105 border:2px solid rgba(255,255,255,0.1) !important;
106 background-color: #000 !important;
107 background-color: rgba(0,0,0,0.6) !important;
108 background-image: url('../img/slideshow-controls.png') !important;
109 background-repeat: no-repeat;
110 background-size: 142px 16px !important;
111 background-position: -34px 8px !important;
112 color: #222 !important;
113 margin: 0 5px !important;
114 padding: 0 !important;
115 display: inline-block !important;
116 *display: inline;
117 zoom: 1;
118 height: 32px !important;
119 width: 32px !important;
120 line-height: 32px !important;
121 text-align: center !important;
122 border-radius: 10em !important;
123 transition: 300ms border-color ease-out;
124 }
125
126 @media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
127 body div div.slideshow-controls a,
128 body div div.slideshow-controls a:hover {
129 background-image: url('../img/slideshow-controls-2x.png') !important;
130 }
131 }
132
133 body div div.slideshow-controls a:hover {
134 border-color: rgba(255,255,255,1) !important;
135 }
136
137 body div div.slideshow-controls a:first-child { background-position: -76px 8px !important;}
138 body div div.slideshow-controls a:last-child { background-position: -117px 8px !important;}
139 body div div.slideshow-controls a:nth-child(2) { background-position: -34px 8px !important;}
140 body div div.slideshow-controls a.running { background-position: -34px 8px !important;}
141 body div div.slideshow-controls a.paused { background-position: 9px 8px !important;}
142
143 .slideshow-controls a img {
144 border: 50px dotted fuchsia;
145 }
146