PluginProbe
Social Share Buttons / 0.9
Social Share Buttons v0.9
trunk 0.9 1.0 1.1 1.1.1 1.1.2 1.10 1.11 1.12 1.15 1.16 1.17 1.18 1.19 1.2 1.20 1.3 1.30 1.4 1.5 1.6 1.7 1.8 1.9
share-button / scss / _editor.scss

_editor.scss in Social Share Buttons 0.9, at scss/_editor.scss

291 lines 4.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 /* Move main to 100% to allow for right-sided help */
3 .main {
4 width: 100%;
5
6 .option-container, .mb-message, .form-actions {
7 width: 72%;
8 min-width: 700px;
9 box-sizing: border-box;
10
11 @include bp(1200)
12 {
13 min-width: 0;
14 }
15 @include bp(800)
16 {
17 width: 95%;
18 }
19 }
20
21 .help-side {
22 float: right;
23 margin: 0 0 5px 0;
24 padding: 0;
25 min-width: 250px;
26 width: 25%;
27 right: 5px;
28 border: 1px solid #ccc;
29 background-color: #fff;
30 clear: right;
31
32 @include bp(1200)
33 {
34 min-width: 0;
35 // width: 23%
36 }
37 @include bp(800)
38 {
39 display: none;
40 }
41
42 h3 {
43 padding: 0;
44 margin: 0;
45 background-color: #008ec2;
46 color: #fff;
47 padding: 15px;
48 text-align: center;
49 }
50 p {
51 padding: 10px;
52 margin: 0;
53 }
54 }
55 }
56
57 .toggle {
58 .title {
59 cursor:pointer;
60 }
61 .toggle-target {
62 display: none;
63 }
64 }
65
66 .style-row {
67 margin: 5px 0;
68 //border-bottom: 1px solid #ccc;
69 padding-bottom: 10px;
70 display: inline-block;
71 width: 100%;
72
73 /* .maxbutton-social {
74 margin: 5px;
75 } */
76
77 #style_preview {
78 width: 100%;
79 display: inline-block;
80 }
81
82 .description {
83 //background: #0085ba;
84 //color: #fff;
85 text-align: left;
86 padding: 8px 5px;
87 display: inline-block;
88 width: 100%;
89 font-size: 12px;
90 font-style: normal;
91 text-transform: uppercase;
92 box-sizing: border-box;
93 border-bottom: 1px solid #ccc;
94 margin-bottom: 15px;
95 }
96
97
98 .maxcollection {
99 margin: 0 !important; // remove set margin in previews.
100 }
101
102 .switch {
103 display: none;
104
105
106 + label {
107 padding: 5px 0;
108 margin: 15px 0;
109 display: inline-block;
110 width: 100%;
111 height: 100%;
112 //z-index: 10;
113 //background-color: #ff0000;
114 // opacity: 0.6;
115 }
116
117 &:checked + label {
118 background-color: #ffe;
119 border: 1px solid #ccc;
120 opacity: 1;
121 }
122 }
123 }
124
125 // extra's for network block
126 .option-container.networks {
127 .active_network {
128 margin-bottom: 25px;
129 }
130
131 }
132
133 // extra's for display block
134 .option-container.display
135 {
136 select {
137 width: auto;
138 }
139 .option.display_group {
140 button {
141 height: 30px;
142 vertical-align: middle;
143 }
144
145
146 }
147 .option > span > .label {
148 width: 170px;
149 padding: 0;
150 min-height: 0;
151 vertical-align: middle;
152 }
153 .check_button:checked + label {
154 border-color: #6fbeb5;
155 border-width: 1px;
156 border-radius: 4px;
157 }
158 .option .label.spacer_custom {
159 margin-left: 200px;
160 font-weight: 500;
161 border-bottom: 1px solid #ccc;
162 border-top: 1px solid #ccc;
163 padding: 4px 0;
164 display: inline-block;
165 text-align: center;
166 width: 200px;
167 }
168
169 .input.display_heading {
170 margin-left: 170px;
171 min-height: 0;
172
173 span {
174 width: 36px;
175 margin-right: 15px;
176 display: inline-block;
177 text-align: center;
178 font-size: 12px;
179 font-weight: 500;
180 text-transform: uppercase;
181
182 &:nth-child(2)
183 {
184 width: 150px;
185 border-left: 1px solid #ccc;
186 border-right: 1px solid #ccc;
187
188 }
189 }
190 }
191 .input.display_rowhead {
192 margin-left: 225px;
193 min-height: 0;
194
195 span {
196 text-align: center;
197 display:inline-block;
198 width: 36px;
199 margin-right: 14px;
200 font-size: 11px;
201 font-weight: 500;
202 color: #333;
203 text-transform: uppercase;
204 position: relative;
205 //margin-right: 15px;
206 &:nth-child(3)
207 {
208 margin-left: 10px;
209 }
210 }
211 }
212
213
214
215 }
216
217
218
219 #displayBlock, .display_modal
220 {
221 // icons
222 $pos1 : 0;
223 $pos2 : -26px;
224 $pos3 : -52px;
225 $pos4 : -78px;
226
227 .display_icon {
228 background-image: url('../images/icons/display_icons.png');
229 background-repeat: no-repeat;
230 width: 26px;
231 height: 26px;
232 display: inline-block;
233
234 &.manual {
235 // Background pos : X - Y
236 background-position: $pos1 $pos1;
237 }
238 &.before {
239 background-position: $pos2 $pos1;
240
241 }
242 &.after {
243 background-position: $pos3 $pos1;
244 }
245 &.after-before {
246 background-position: $pos4 $pos1;
247 }
248 &.static {
249 background-position: $pos4 $pos4;
250 }
251 &.horizontal {
252 background-position: $pos1 $pos2;
253 }
254 &.vertical {
255 background-position: $pos2 $pos2;
256 }
257 &.topleft {
258 background-position: $pos3 $pos2;
259 }
260 &.topcenter {
261 background-position: $pos4 $pos2;
262
263 }
264 &.topright {
265 background-position: $pos1 $pos3;
266 }
267 &.centerleft {
268 background-position: $pos2 $pos3;
269 }
270 &.centercenter {
271 background-position: $pos3 $pos3;
272 }
273 &.centerright {
274 background-position: $pos4 $pos3;
275
276 }
277 &.bottomleft {
278 background-position: $pos1 $pos4;
279 }
280 &.bottomcenter {
281 background-position: $pos2 $pos4;
282
283 }
284 &.bottomright {
285 background-position: $pos3 $pos4;
286 }
287
288
289 }
290 }
291