PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 1.7.0
Visualizer – Tables & Charts Manager with Built-in AI Generator v1.7.0
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 / library.css

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

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