PluginProbe ʕ •ᴥ•ʔ
Widget Options – Advanced Conditional Visibility for Gutenberg Blocks & Classic Widgets / 3.7.13
Widget Options – Advanced Conditional Visibility for Gutenberg Blocks & Classic Widgets v3.7.13
4.2.5 4.2.4 trunk 3.7.10 3.7.11 3.7.12 3.7.13 3.7.14 3.7.2 3.7.5 3.7.6 3.7.7 3.7.8 3.7.9 3.8 3.8.1 3.8.10 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.8.7 3.8.8 3.8.9 3.8.9.1 3.9.0 3.9.1 3.9.2 3.9.3 3.9.4 3.9.5 3.9.6 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.0.5 4.0.5.1 4.0.6 4.0.6.1 4.0.7 4.0.8 4.0.9 4.1.0 4.1.1 4.1.2 4.1.3 4.2.0 4.2.1 4.2.2 4.2.3
widget-options / assets / scss / widget-options.scss
widget-options / assets / scss Last commit date
welcome.scss 4 years ago widget-options.scss 4 years ago
widget-options.scss
69 lines
1 @import 'compass';
2 $desktop : 769px;
3 $tablet : 768px;
4 $mobile : 736px;
5 body{
6 .extendedwopts-show{
7 display: none;
8 }
9 .widgetopts-hide_title{
10 .widget-title{
11 display: none;
12 }
13 }
14
15 //alignment
16 .extendedwopts-md-right{
17 text-align: right;
18 }
19 .extendedwopts-md-left{
20 text-align: left;
21 }
22 .extendedwopts-md-center{
23 text-align: center;
24 }
25 .extendedwopts-md-justify{
26 text-align: justify;
27 }
28 @media screen and (min-width: $desktop) {
29 .extendedwopts-hide.extendedwopts-desktop{
30 display: none !important;
31 }
32 .extendedwopts-show.extendedwopts-desktop{
33 display: block;
34 }
35 .widget.clearfix-desktop{
36 clear: both;
37 }
38 }
39 @media screen and (max-width: $tablet)
40 and (min-width: $mobile + 1) {
41 .extendedwopts-hide.extendedwopts-tablet{
42 display: none !important;
43 }
44 .extendedwopts-show.extendedwopts-tablet{
45 display: block;
46 }
47 .widget.clearfix-desktop{
48 clear: none;
49 }
50 .widget.clearfix-tablet{
51 clear: both;
52 }
53 }
54 @media screen and (max-width: $mobile) {
55 .extendedwopts-hide.extendedwopts-mobile{
56 display: none !important;
57 }
58 .extendedwopts-show.extendedwopts-mobile{
59 display: block;
60 }
61 .widget.clearfix-desktop, .widget.clearfix-tablet{
62 clear: none;
63 }
64 .widget.clearfix-mobile{
65 clear: both;
66 }
67 }
68 }
69