PluginProbe
Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) / trunk
Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) vtrunk
9.1.2 9.1.1 9.1.0 9.0.2 9.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.1.0 1.1.1 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.3.0 1.3.1 1.3.2 All 153 releases
wp-analytify / assets / css / common-dashboard.css

common-dashboard.css in Analytify – Google Analytics Dashboard For WordPress (GA4 analytics tracking) trunk, at assets/css/common-dashboard.css

71 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 p.skt-loading.inline{
2 display: inline-block;
3 }
4
5 p.skt-loading.loading-width-sm {
6 width: 50px;
7 }
8
9 p.skt-loading.loading-width-sm {
10 width: 90px;
11 }
12
13 p.skt-loading.loading-width-lg {
14 width: 150px;
15 }
16
17 p.skt-loading + p.skt-loading {
18 margin-top: 5px;
19 }
20
21 p.skt-loading:empty {
22 min-height: 28px;
23 padding-right: 0px;
24 background-color: #f8f8f8;
25 overflow: hidden;
26 position: relative;
27 }
28
29 p.skt-loading.light-gray:empty {
30 background-color: #f2f2f2;
31 }
32
33 table thead p.skt-loading:empty {
34 background-color: #e6edf7;
35 }
36
37 table p.skt-loading:empty {
38 min-height: 22px;
39 }
40
41 p.skt-loading.medium:empty {
42 min-height: 30px;
43 }
44
45 p.skt-loading.large:empty {
46 min-height: 45px;
47 }
48
49 p.skt-loading:empty::before {
50 content: "";
51 position: absolute;
52 top: 0;
53 bottom: 0;
54 animation: skeleton_loader 2s infinite;
55 width: 30%;
56 min-width: 50px;
57 max-width: 200px;
58 left: -130%;
59 background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,0.5) 50%,rgba(255,255,255,0) 100%);
60 }
61
62 p.skt-loading.light-gray:empty::before {
63 background: linear-gradient(to right,rgba(255,255,255,0) 0%,rgba(255,255,255,0.3) 50%,rgba(255,255,255,0) 100%);
64 }
65
66 @keyframes skeleton_loader {
67 100% {
68 left: 120%;
69 }
70 }
71