PluginProbe ʕ •ᴥ•ʔ
Matomo Analytics – Powerful, Privacy-First Insights for WordPress / 1.3.1
Matomo Analytics – Powerful, Privacy-First Insights for WordPress v1.3.1
5.11.1 5.11.0 5.10.2 5.10.1 trunk 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.3.0 1.3.1 1.3.2 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.1.0 4.1.1 4.1.2 4.1.3 4.10.0 4.11.0 4.12.0 4.13.0 4.13.2 4.13.3 4.13.4 4.13.5 4.14.0 4.14.1 4.14.2 4.15.0 4.15.1 4.15.2 4.15.3 4.2.0 4.3.0 4.3.1 4.4.1 4.4.2 4.5.0 4.6.0 5.0.1 5.0.2 5.0.3 5.0.4 5.0.5 5.0.6 5.0.7 5.0.8 5.1.0 5.1.1 5.1.2 5.1.3 5.1.4 5.1.5 5.1.6 5.1.7 5.10.0 5.2.0 5.2.1 5.2.2 5.3.0 5.3.1 5.3.2 5.3.3 5.6.0 5.6.1 5.7.0 5.7.1 5.8.0 5.8.1 5.8.2
matomo / app / libs / jquery / stylesheets / jquery.jscrollpane.css
matomo / app / libs / jquery / stylesheets Last commit date
jquery.jscrollpane.css 6 years ago scroll.less 6 years ago
jquery.jscrollpane.css
119 lines
1 /*
2 * CSS Styles that are needed by jScrollPane for it to operate correctly.
3 *
4 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
5 * may not operate correctly without them.
6 */
7
8 .jspContainer
9 {
10 overflow: hidden;
11 position: relative;
12 }
13
14 .jspPane
15 {
16 position: absolute;
17 }
18
19 .jspVerticalBar
20 {
21 position: absolute;
22 top: 0;
23 right: 0;
24 width: 8px;
25 height: 100%;
26 background: red;
27 }
28
29 .jspHorizontalBar
30 {
31 position: absolute;
32 bottom: 0;
33 left: 0;
34 width: 100%;
35 height: 16px;
36 background: red;
37 }
38
39 .jspVerticalBar *,
40 .jspHorizontalBar *
41 {
42 margin: 0;
43 padding: 0;
44 }
45
46 .jspCap
47 {
48 display: none;
49 }
50
51 .jspHorizontalBar .jspCap
52 {
53 float: left;
54 }
55
56 .jspTrack
57 {
58 background: #dde;
59 position: relative;
60 }
61
62 .jspDrag
63 {
64 background: #bbd;
65 position: relative;
66 top: 0;
67 left: 0;
68 cursor: pointer;
69 }
70
71 .jspHorizontalBar .jspTrack,
72 .jspHorizontalBar .jspDrag
73 {
74 float: left;
75 height: 100%;
76 }
77
78 .jspArrow
79 {
80 background: #50506d;
81 text-indent: -20000px;
82 display: block;
83 cursor: pointer;
84 }
85
86 .jspArrow.jspDisabled
87 {
88 cursor: default;
89 }
90
91 .jspVerticalBar .jspArrow
92 {
93 height: 16px;
94 }
95
96 .jspHorizontalBar .jspArrow
97 {
98 width: 16px;
99 float: left;
100 height: 100%;
101 }
102
103 .jspVerticalBar .jspArrow:focus
104 {
105 outline: none;
106 }
107
108 .jspCorner
109 {
110 background: #eeeef4;
111 float: left;
112 height: 100%;
113 }
114
115 /* Yuk! CSS Hack for IE6 3 pixel bug :( */
116 * html .jspCorner
117 {
118 margin: 0 -3px 0 0;
119 }