PluginProbe
Social Media Auto Poster – Schedule & Publish to Buffer / trunk
Social Media Auto Poster – Schedule & Publish to Buffer vtrunk
6.2.3 6.2.2 6.2.1 6.2.0 6.1.2 6.1.1 6.1.0 6.0.9 6.0.8 6.0.7 6.0.6 6.0.5 6.0.4 6.0.3 6.0.2 6.0.1 6.0.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 3.8.7 3.8.8 All 124 releases
wp-to-buffer / lib / shared / scss / _responsive.scss

_responsive.scss in Social Media Auto Poster – Schedule & Publish to Buffer trunk, at lib/shared/scss/_responsive.scss

125 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @media only screen and (max-width: 1200px) {
2
3 /**
4 * Settings UI: Upgrade
5 * - Drop to 2 columns
6 */
7 .wpzinc-upgrade {
8
9 ul {
10 display: grid;
11 grid-template-columns: repeat(2, 1fr);
12 }
13 }
14 }
15
16 @media only screen and (max-width: 768px) {
17
18 /**
19 * Settings UI - Horizontal Tabbed Interface
20 * - Extends WordPress' .nav-tab-wrapper class
21 */
22 h2.wpzinc-horizontal-tabbed-ui.nav-tab-wrapper {
23
24 a.nav-tab {
25 margin-right: 10px;
26
27 &:last-child {
28 margin-right: 0;
29 }
30
31 span.text {
32 display: none;
33 }
34
35 span.text-mobile {
36 display: inline-block;
37 }
38
39 .dashicons {
40 font-size: 24px;
41
42 &.dashicons-yes {
43 font-size: 20px;
44 }
45 }
46 }
47 }
48
49 /**
50 * Settings UI - Vertical Tabbed Interface
51 */
52 div.wpzinc-vertical-tabbed-ui {
53 grid-template-columns: $wpzinc-vertical-tabbed-ui-width-mobile auto;
54
55 ul.wpzinc-nav-tabs {
56
57 li.wpzinc-nav-tab {
58
59 a,
60 a.wpzinc-nav-tab-vertical-active,
61 a:hover {
62 width: $wpzinc-vertical-tabbed-ui-width-mobile;
63 height: $wpzinc-vertical-tabbed-ui-width-mobile;
64 margin: 0;
65 padding: 0;
66 text-indent: -9999px;
67 background-position: center;
68 }
69
70 a {
71
72 span.dashicons {
73 top: 0;
74 right: 0;
75 text-indent: 0;
76 }
77
78 &:hover {
79 border-top: none;
80
81 span.dashicons {
82 right: 0;
83 }
84 }
85 }
86 }
87 }
88 }
89
90 .wpzinc-option {
91 display: block;
92
93 div.left {
94 width: 100%;
95 }
96
97 div.right {
98 width: 100%;
99 }
100
101 select.right,
102 input.right {
103 float: none;
104 width: 100%;
105 margin: 0 0 10px 0 !important;
106 }
107
108 select {
109 width: 100%;
110 }
111 }
112
113 /**
114 * Settings UI: Upgrade
115 * - Drop to a single column
116 * - Reduce font sizes and spacing
117 */
118 .wpzinc-upgrade {
119
120 ul {
121 grid-template-columns: repeat(1, 1fr);
122 }
123 }
124 }
125