PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 3.0.3
Visualizer – Tables & Charts Manager with Built-in AI Generator v3.0.3
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 3.10.4 All 148 releases
visualizer / css / media.css

media.css in Visualizer – Tables & Charts Manager with Built-in AI Generator 3.0.3, at css/media.css

168 lines 3.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /*
2 Version: 3.0.3
3 */
4 #visualizer-library-view {
5 padding: 30px 10px 10px 30px;
6 }
7
8 .visualizer-library-filters {
9 margin-top: 18px !important;
10 margin-left: 14px !important;
11 }
12
13 .visualizer-clearfix {
14 *zoom: 1;
15 }
16
17 .visualizer-clearfix:before,
18 .visualizer-clearfix:after {
19 display: table;
20 line-height: 0;
21 content: "";
22 }
23
24 .visualizer-clearfix:after {
25 clear: both;
26 }
27
28 .visualizer-library-chart {
29 float: left;
30 margin: 0 20px 20px 0;
31 padding: 5px;
32 border: 1px solid #ddd;
33 background-color: #efefef;
34 -webkit-box-shadow: 0 0 8px #ddd;
35 box-shadow: 0 0 8px #ddd;
36 }
37
38 .visualizer-library-chart-canvas {
39 width: 250px;
40 height: 187px;
41 border: 1px solid #ddd;
42 background-color: white;
43 background-image: url("../images/ajax-loader.gif");
44 background-repeat: no-repeat;
45 background-position: center center;
46 }
47
48 .visualizer-library-nochart-canvas {
49 position: relative;
50 background-image: url("../images/notfound.png?v=4");
51 background-repeat: repeat;
52 }
53
54 .visualizer-library-notfound {
55 position: absolute;
56 top: 50%;
57 right: 0;
58 left: 0;
59 margin-top: -7px;
60 font-size: 14px;
61 font-weight: bold;
62 text-align: center;
63 }
64
65 .visualizer-library-chart-action {
66 display: block;
67 float: right;
68 width: 16px;
69 height: 16px;
70 margin: 2px 5px 0;
71 background-image: url("../images/ui-icons.png");
72 background-repeat: no-repeat;
73 }
74
75 .visualizer-library-nochart-delete,
76 .visualizer-library-chart-delete {
77 background-position: -176px -96px;
78 }
79
80 .visualizer-library-nochart-insert,
81 .visualizer-library-chart-insert {
82 background-position: -48px -48px;
83 }
84
85 .visualizer-library-nochart-delete,
86 .visualizer-library-nochart-insert {
87 opacity: 0.5;
88
89 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
90 filter: alpha(opacity=50);
91 }
92
93 .visualizer-library-chart-footer {
94 margin-top: 4px;
95 }
96
97 .visualizer-library-chart-shortcode {
98 padding: 3px 0;
99 color: #aaa;
100 text-shadow: 0 1px 0 #fff;
101 cursor: pointer;
102 }
103
104 .visualizer-library-chart-shortcode::-moz-selection,
105 .visualizer-library-chart-shortcode::-moz-selection {
106 color: black;
107 background-color: #a8d1ff;
108 text-shadow: none;
109 }
110
111 .visualizer-library-chart-shortcode::selection,
112 .visualizer-library-chart-shortcode::-moz-selection {
113 color: black;
114 background-color: #a8d1ff;
115 text-shadow: none;
116 }
117
118 #visualizer-library-pagination {
119 margin-right: 30px;
120 }
121
122 .visualizer-library-pagination-item {
123 float: left;
124 margin-top: 10px;
125 margin-left: 20px;
126 }
127
128 .visualizer-library-pagination-page {
129 padding: 5px 10px;
130 border-radius: 2px;
131 color: white !important;
132 background-color: #aaa;
133 -webkit-box-shadow: 0 0 5px #ccc;
134 box-shadow: 0 0 5px #ccc;
135 font-weight: bold;
136 text-decoration: none;
137 }
138
139 .visualizer-library-pagination-active > .visualizer-library-pagination-page,
140 a.visualizer-library-pagination-page:hover {
141 background-color: lightcoral;
142 -webkit-box-shadow: 0 0 5px lightpink;
143 box-shadow: 0 0 5px lightpink;
144 }
145
146 .locker,
147 .locker-loader {
148 position: absolute;
149 top: 0;
150 left: 0;
151 width: 100%;
152 height: 100%;
153 }
154
155 .locker {
156 z-index: 1000;
157 opacity: 0.8;
158 background-color: white;
159
160 -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
161 filter: alpha(opacity=80);
162 }
163
164 .locker-loader {
165 z-index: 1001;
166 background: url(../images/ajax-loader.gif) no-repeat center center;
167 }
168