| 1 |
@import "../start"; |
| 2 |
|
| 3 |
$form_width: 480px; |
| 4 |
|
| 5 |
#fs_connect |
| 6 |
{ |
| 7 |
width: $form_width; |
| 8 |
@include box-shadow(0px 1px 2px rgba(0, 0, 0, 0.3)); |
| 9 |
margin: 20px 0; |
| 10 |
|
| 11 |
@media screen and (max-width: ($form_width - 1)) { |
| 12 |
@include box-shadow(none); |
| 13 |
width: auto; |
| 14 |
margin: 0 0 0 -10px; |
| 15 |
} |
| 16 |
|
| 17 |
.fs-content |
| 18 |
{ |
| 19 |
background: #fff; |
| 20 |
padding: 15px 20px; |
| 21 |
|
| 22 |
.fs-error { |
| 23 |
background: snow; |
| 24 |
color: $fs-logo-magenta-color; |
| 25 |
border: 1px solid $fs-logo-magenta-color; |
| 26 |
@include box-shadow(0 1px 1px 0 rgba(0,0,0,.1)); |
| 27 |
text-align: center; |
| 28 |
padding: 5px; |
| 29 |
margin-bottom: 10px; |
| 30 |
} |
| 31 |
|
| 32 |
p |
| 33 |
{ |
| 34 |
margin: 0; |
| 35 |
padding: 0; |
| 36 |
font-size: 1.2em; |
| 37 |
} |
| 38 |
} |
| 39 |
|
| 40 |
.fs-license-key-container { |
| 41 |
position: relative; |
| 42 |
width: 280px; |
| 43 |
margin: 10px auto 0 auto; |
| 44 |
|
| 45 |
input { |
| 46 |
width: 100%; |
| 47 |
} |
| 48 |
|
| 49 |
.dashicons { |
| 50 |
position: absolute; |
| 51 |
top: 5px; |
| 52 |
right: 5px; |
| 53 |
} |
| 54 |
} |
| 55 |
|
| 56 |
.fs-actions |
| 57 |
{ |
| 58 |
padding: 10px 20px; |
| 59 |
background: #C0C7CA; |
| 60 |
|
| 61 |
.button |
| 62 |
{ |
| 63 |
padding: 0 10px 1px; |
| 64 |
line-height: 35px; |
| 65 |
height: 37px; |
| 66 |
font-size: 16px; |
| 67 |
margin-bottom: 0; |
| 68 |
|
| 69 |
.dashicons |
| 70 |
{ |
| 71 |
font-size: 37px; |
| 72 |
margin-left: -8px; |
| 73 |
margin-right: 12px; |
| 74 |
} |
| 75 |
|
| 76 |
&.button-primary |
| 77 |
{ |
| 78 |
padding-right: 15px; |
| 79 |
padding-left: 15px; |
| 80 |
|
| 81 |
&:after |
| 82 |
{ |
| 83 |
content: ' \279C'; |
| 84 |
} |
| 85 |
|
| 86 |
&.fs-loading |
| 87 |
{ |
| 88 |
&:after |
| 89 |
{ |
| 90 |
content: ''; |
| 91 |
} |
| 92 |
} |
| 93 |
} |
| 94 |
|
| 95 |
&.button-secondary |
| 96 |
{ |
| 97 |
float: right; |
| 98 |
} |
| 99 |
} |
| 100 |
|
| 101 |
// .fs-skip |
| 102 |
// { |
| 103 |
// line-height: 38px; |
| 104 |
// vertical-align: middle; |
| 105 |
// text-decoration: none; |
| 106 |
// margin-left: 10px; |
| 107 |
// } |
| 108 |
} |
| 109 |
|
| 110 |
&.fs-anonymous-disabled |
| 111 |
{ |
| 112 |
.fs-actions |
| 113 |
{ |
| 114 |
.button.button-primary |
| 115 |
{ |
| 116 |
width: 100%; |
| 117 |
} |
| 118 |
} |
| 119 |
} |
| 120 |
|
| 121 |
.fs-permissions |
| 122 |
{ |
| 123 |
padding: 10px 20px; |
| 124 |
background: #FEFEFE; |
| 125 |
// background: #F1F1F1; |
| 126 |
@include transition(background 0.5s ease); |
| 127 |
|
| 128 |
.fs-license-sync-disclaimer { |
| 129 |
text-align: center; |
| 130 |
margin-top: 0; |
| 131 |
} |
| 132 |
|
| 133 |
.fs-trigger |
| 134 |
{ |
| 135 |
font-size: 0.9em; |
| 136 |
text-decoration: none; |
| 137 |
text-align: center; |
| 138 |
display: block; |
| 139 |
} |
| 140 |
|
| 141 |
ul |
| 142 |
{ |
| 143 |
height: 0; |
| 144 |
overflow: hidden; |
| 145 |
margin: 0; |
| 146 |
|
| 147 |
li |
| 148 |
{ |
| 149 |
margin-bottom: 12px; |
| 150 |
|
| 151 |
&:last-child |
| 152 |
{ |
| 153 |
margin-bottom: 0; |
| 154 |
} |
| 155 |
|
| 156 |
i.dashicons |
| 157 |
{ |
| 158 |
float: left; |
| 159 |
font-size: 40px; |
| 160 |
width: 40px; |
| 161 |
height: 40px; |
| 162 |
} |
| 163 |
|
| 164 |
div |
| 165 |
{ |
| 166 |
margin-left: 55px; |
| 167 |
|
| 168 |
span |
| 169 |
{ |
| 170 |
font-weight: bold; |
| 171 |
text-transform: uppercase; |
| 172 |
color: #23282d; |
| 173 |
} |
| 174 |
|
| 175 |
p |
| 176 |
{ |
| 177 |
margin: 2px 0 0 0; |
| 178 |
} |
| 179 |
} |
| 180 |
} |
| 181 |
} |
| 182 |
|
| 183 |
&.fs-open |
| 184 |
{ |
| 185 |
background: #fff; |
| 186 |
|
| 187 |
ul |
| 188 |
{ |
| 189 |
height: auto; |
| 190 |
margin: 20px 20px 10px 20px; |
| 191 |
} |
| 192 |
} |
| 193 |
|
| 194 |
@media screen and (max-width: ($form_width - 1)) { |
| 195 |
background: #fff; |
| 196 |
|
| 197 |
.fs-trigger |
| 198 |
{ |
| 199 |
display: none; |
| 200 |
} |
| 201 |
|
| 202 |
ul |
| 203 |
{ |
| 204 |
height: auto; |
| 205 |
margin: 20px; |
| 206 |
} |
| 207 |
} |
| 208 |
} |
| 209 |
|
| 210 |
.fs-freemium-licensing { |
| 211 |
padding: 8px; |
| 212 |
// background: #0085BA; |
| 213 |
background: #777; |
| 214 |
color: #fff; |
| 215 |
|
| 216 |
p { |
| 217 |
text-align: center; |
| 218 |
display: block; |
| 219 |
margin: 0; |
| 220 |
padding: 0; |
| 221 |
} |
| 222 |
|
| 223 |
a { |
| 224 |
color: #C2EEFF; |
| 225 |
text-decoration: underline; |
| 226 |
} |
| 227 |
} |
| 228 |
|
| 229 |
$icon_size: 80px; |
| 230 |
$wp_logo_padding: $icon_size / 10; |
| 231 |
$icons_top: 10px; |
| 232 |
|
| 233 |
.fs-visual |
| 234 |
{ |
| 235 |
padding: 12px; |
| 236 |
line-height: 0; |
| 237 |
background: #fafafa; |
| 238 |
height: $icon_size; |
| 239 |
position: relative; |
| 240 |
|
| 241 |
.fs-site-icon |
| 242 |
{ |
| 243 |
position: absolute; |
| 244 |
left: 20px; |
| 245 |
top: $icons_top; |
| 246 |
} |
| 247 |
|
| 248 |
.fs-connect-logo |
| 249 |
{ |
| 250 |
position: absolute; |
| 251 |
right: 20px; |
| 252 |
top: $icons_top; |
| 253 |
} |
| 254 |
|
| 255 |
.fs-plugin-icon |
| 256 |
{ |
| 257 |
position: absolute; |
| 258 |
top: $icons_top; |
| 259 |
left: 50%; |
| 260 |
margin-left: - ($icon_size / 2); |
| 261 |
} |
| 262 |
|
| 263 |
.fs-plugin-icon, |
| 264 |
.fs-site-icon, |
| 265 |
img, |
| 266 |
object |
| 267 |
{ |
| 268 |
width: $icon_size; |
| 269 |
height: $icon_size; |
| 270 |
} |
| 271 |
|
| 272 |
.dashicons-wordpress |
| 273 |
{ |
| 274 |
font-size: $icon_size - ($wp_logo_padding * 2); |
| 275 |
background: $wordpress_color; |
| 276 |
color: #fff; |
| 277 |
width: $icon_size - ($wp_logo_padding * 2); |
| 278 |
height: $icon_size - ($wp_logo_padding * 2); |
| 279 |
padding: $wp_logo_padding; |
| 280 |
} |
| 281 |
|
| 282 |
.dashicons-plus |
| 283 |
{ |
| 284 |
position: absolute; |
| 285 |
top: 50%; |
| 286 |
font-size: 30px; |
| 287 |
margin-top: -10px; |
| 288 |
color: #bbb; |
| 289 |
|
| 290 |
&.fs-first |
| 291 |
{ |
| 292 |
left: 28%; |
| 293 |
} |
| 294 |
&.fs-second |
| 295 |
{ |
| 296 |
left: 65%; |
| 297 |
} |
| 298 |
} |
| 299 |
|
| 300 |
.fs-plugin-icon, |
| 301 |
.fs-connect-logo, |
| 302 |
.fs-site-icon |
| 303 |
{ |
| 304 |
border: 1px solid #ccc; |
| 305 |
padding: 1px; |
| 306 |
background: #fff; |
| 307 |
} |
| 308 |
} |
| 309 |
|
| 310 |
.fs-terms |
| 311 |
{ |
| 312 |
text-align: center; |
| 313 |
font-size: 0.85em; |
| 314 |
padding: 5px; |
| 315 |
background: rgba(0, 0, 0, 0.05); |
| 316 |
|
| 317 |
&, a |
| 318 |
{ |
| 319 |
color: #999; |
| 320 |
} |
| 321 |
|
| 322 |
a |
| 323 |
{ |
| 324 |
text-decoration: none; |
| 325 |
} |
| 326 |
} |
| 327 |
} |
| 328 |
|
| 329 |
.rtl |
| 330 |
{ |
| 331 |
#fs_connect |
| 332 |
{ |
| 333 |
.fs-actions |
| 334 |
{ |
| 335 |
padding: 10px 20px; |
| 336 |
background: #C0C7CA; |
| 337 |
|
| 338 |
.button |
| 339 |
{ |
| 340 |
.dashicons |
| 341 |
{ |
| 342 |
font-size: 37px; |
| 343 |
margin-left: -8px; |
| 344 |
margin-right: 12px; |
| 345 |
} |
| 346 |
|
| 347 |
&.button-primary |
| 348 |
{ |
| 349 |
&:after |
| 350 |
{ |
| 351 |
content: ' \000bb'; |
| 352 |
} |
| 353 |
|
| 354 |
&.fs-loading |
| 355 |
{ |
| 356 |
&:after |
| 357 |
{ |
| 358 |
content: ''; |
| 359 |
} |
| 360 |
} |
| 361 |
} |
| 362 |
|
| 363 |
&.button-secondary |
| 364 |
{ |
| 365 |
float: left; |
| 366 |
} |
| 367 |
} |
| 368 |
} |
| 369 |
|
| 370 |
.fs-permissions |
| 371 |
{ |
| 372 |
ul |
| 373 |
{ |
| 374 |
li |
| 375 |
{ |
| 376 |
div |
| 377 |
{ |
| 378 |
margin-right: 55px; |
| 379 |
margin-left: 0; |
| 380 |
} |
| 381 |
|
| 382 |
i.dashicons |
| 383 |
{ |
| 384 |
float: right; |
| 385 |
} |
| 386 |
|
| 387 |
} |
| 388 |
} |
| 389 |
} |
| 390 |
|
| 391 |
.fs-visual |
| 392 |
{ |
| 393 |
.fs-site-icon |
| 394 |
{ |
| 395 |
right: 20px; |
| 396 |
left: auto; |
| 397 |
} |
| 398 |
|
| 399 |
.fs-connect-logo |
| 400 |
{ |
| 401 |
right: auto; |
| 402 |
left: 20px; |
| 403 |
} |
| 404 |
} |
| 405 |
} |
| 406 |
} |
| 407 |
|
| 408 |
.wp-pointer-content |
| 409 |
{ |
| 410 |
#fs_connect |
| 411 |
{ |
| 412 |
margin: 0; |
| 413 |
@include box-shadow(none); |
| 414 |
} |
| 415 |
} |
| 416 |
|
| 417 |
.fs-opt-in-pointer |
| 418 |
{ |
| 419 |
.wp-pointer-content |
| 420 |
{ |
| 421 |
padding: 0; |
| 422 |
} |
| 423 |
|
| 424 |
&.wp-pointer-top |
| 425 |
{ |
| 426 |
.wp-pointer-arrow |
| 427 |
{ |
| 428 |
border-bottom-color: #dfdfdf; |
| 429 |
} |
| 430 |
.wp-pointer-arrow-inner |
| 431 |
{ |
| 432 |
border-bottom-color: #fafafa; |
| 433 |
} |
| 434 |
} |
| 435 |
|
| 436 |
&.wp-pointer-bottom |
| 437 |
{ |
| 438 |
.wp-pointer-arrow |
| 439 |
{ |
| 440 |
border-top-color: #dfdfdf; |
| 441 |
} |
| 442 |
.wp-pointer-arrow-inner |
| 443 |
{ |
| 444 |
border-top-color: #fafafa; |
| 445 |
} |
| 446 |
} |
| 447 |
|
| 448 |
&.wp-pointer-left |
| 449 |
{ |
| 450 |
.wp-pointer-arrow |
| 451 |
{ |
| 452 |
border-right-color: #dfdfdf; |
| 453 |
} |
| 454 |
.wp-pointer-arrow-inner |
| 455 |
{ |
| 456 |
border-right-color: #fafafa; |
| 457 |
} |
| 458 |
} |
| 459 |
|
| 460 |
&.wp-pointer-right |
| 461 |
{ |
| 462 |
.wp-pointer-arrow |
| 463 |
{ |
| 464 |
border-left-color: #dfdfdf; |
| 465 |
} |
| 466 |
.wp-pointer-arrow-inner |
| 467 |
{ |
| 468 |
border-left-color: #fafafa; |
| 469 |
} |
| 470 |
} |
| 471 |
} |
| 472 |
|