scratch – Blame information for rev 115

Subversion Repositories:
Rev:
Rev Author Line No. Line
115 office 1 @charset "UTF-8";
2 /*
3 * blueimp Gallery Indicator CSS
4 * https://github.com/blueimp/Gallery
5 *
6 * Copyright 2013, Sebastian Tschan
7 * https://blueimp.net
8 *
9 * Licensed under the MIT license:
10 * https://opensource.org/licenses/MIT
11 */
12  
13 .blueimp-gallery > .indicator {
14 position: absolute;
15 top: auto;
16 right: 15px;
17 bottom: 15px;
18 left: 15px;
19 margin: 0 40px;
20 padding: 0;
21 list-style: none;
22 text-align: center;
23 line-height: 10px;
24 display: none;
25 }
26 .blueimp-gallery > .indicator > li {
27 display: inline-block;
28 width: 9px;
29 height: 9px;
30 margin: 6px 3px 0 3px;
31 -webkit-box-sizing: content-box;
32 -moz-box-sizing: content-box;
33 box-sizing: content-box;
34 border: 1px solid transparent;
35 background: #ccc;
36 background: rgba(255, 255, 255, 0.25) center no-repeat;
37 border-radius: 5px;
38 box-shadow: 0 0 2px #000;
39 opacity: 0.5;
40 cursor: pointer;
41 }
42 .blueimp-gallery > .indicator > li:hover,
43 .blueimp-gallery > .indicator > .active {
44 background-color: #fff;
45 border-color: #fff;
46 opacity: 1;
47 }
48 .blueimp-gallery-controls > .indicator {
49 display: block;
50 /* Fix z-index issues (controls behind slide element) on Android: */
51 -webkit-transform: translateZ(0);
52 -moz-transform: translateZ(0);
53 -ms-transform: translateZ(0);
54 -o-transform: translateZ(0);
55 transform: translateZ(0);
56 }
57 .blueimp-gallery-single > .indicator {
58 display: none;
59 }
60 .blueimp-gallery > .indicator {
61 -webkit-user-select: none;
62 -khtml-user-select: none;
63 -moz-user-select: none;
64 -ms-user-select: none;
65 user-select: none;
66 }
67  
68 /* IE7 fixes */
69 *+html .blueimp-gallery > .indicator > li {
70 display: inline;
71 }