PluginProbe ʕ •ᴥ•ʔ
Custom Sidebars – Dynamic Sidebar Classic Widget Area Manager / 3.32
Custom Sidebars – Dynamic Sidebar Classic Widget Area Manager v3.32
trunk 2.1.2.0 3.0.0.0 3.0.0.1 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.7.1 3.0.8 3.0.8.1 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3 3.31 3.32 3.35 3.36 3.37 3.38
custom-sidebars / assets / css / cs-cloning.css
custom-sidebars / assets / css Last commit date
cs-cloning.css 8 years ago cs-cloning.min.css 7 years ago cs-scan.css 7 years ago cs-scan.min.css 7 years ago cs-visibility.css 8 years ago cs-visibility.min.css 7 years ago cs.css 5 years ago cs.min.css 5 years ago
cs-cloning.css
65 lines
1 /**
2 * CSS rules for the cloning module.
3 */
4 .inactive-sidebar .csb-clone {
5 display: none;
6 }
7
8 .widget-control-actions .csb-clone-button {
9 margin: 0 5px 0 0;
10 }
11
12 .csb-marker {
13 position: relative;
14 box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.3);
15 }
16
17 .csb-marker .widget-top,
18 .csb-marker .widget-inside {
19 opacity: .5;
20 }
21
22 .csb-marker:before {
23 content: attr(data-group);
24 position: absolute;
25 top: 50%;
26 left: 5px;
27 right: 5px;
28 text-align: center;
29 margin-top: -1em;
30 line-height: 2em;
31 height: 2em;
32 font-size: 20px;
33 z-index: 1001;
34 background: rgba(255, 255, 255, 0.2);
35 }
36
37 .csb-marker:after {
38 content: '';
39 position: absolute;
40 left: 1px;
41 top: 1px;
42 right: 1px;
43 bottom: 1px;
44 background: url(../img/stripes.png);
45 opacity: .05;
46 z-index: 1000;
47 cursor: default;
48 }
49
50 h4.csb-group {
51 padding-left: 45px;
52 position: relative;
53 }
54 h4 .btn-clone-group {
55 position: absolute;
56 top: 50%;
57 margin-top: -10px;
58 left: 15px;
59 cursor: pointer;
60 opacity: .6;
61 }
62 h4 .btn-clone-group:hover {
63 opacity: 1;
64 }
65