easepick
3 years ago
dashboard_widget.css
3 years ago
dashboard_widget.css.map
3 years ago
style.css
3 years ago
style.css.map
3 years ago
style.css
3239 lines
| 1 | #iawp-parent .data-table { |
| 2 | border: 1px solid #dedae6; |
| 3 | margin: 24px; |
| 4 | } |
| 5 | |
| 6 | #iawp-parent .real-time-dashboard .chart, #iawp-parent .real-time-dashboard .most-popular-list { |
| 7 | background: #fff; |
| 8 | border: 1px solid #dedae6; |
| 9 | border-radius: 6px; |
| 10 | margin: 24px; |
| 11 | padding: 24px; |
| 12 | } |
| 13 | |
| 14 | body, #iawp-parent { |
| 15 | background-color: #ece9f2; |
| 16 | } |
| 17 | |
| 18 | #wpbody-content { |
| 19 | padding-bottom: 0; |
| 20 | } |
| 21 | |
| 22 | #wpbody-content > .error, #wpbody-content > .notice { |
| 23 | display: none; |
| 24 | } |
| 25 | |
| 26 | .loading-icon { |
| 27 | z-index: 39; |
| 28 | opacity: 0; |
| 29 | visibility: hidden; |
| 30 | background: rgba(24, 20, 31, .65); |
| 31 | justify-content: center; |
| 32 | align-items: center; |
| 33 | transition: opacity .3s, visibility .3s; |
| 34 | display: flex; |
| 35 | position: fixed; |
| 36 | top: 0; |
| 37 | bottom: 0; |
| 38 | left: 0; |
| 39 | right: 0; |
| 40 | } |
| 41 | |
| 42 | .loading-icon img { |
| 43 | opacity: 0; |
| 44 | transition: opacity .5s, -webkit-transform .5s, transform .5s; |
| 45 | -webkit-transform: scale(.9); |
| 46 | transform: scale(.9); |
| 47 | } |
| 48 | |
| 49 | #iawp-parent { |
| 50 | min-height: 120vh; |
| 51 | margin-left: -10px; |
| 52 | padding-bottom: 60px; |
| 53 | } |
| 54 | |
| 55 | #iawp-parent * { |
| 56 | box-sizing: border-box; |
| 57 | } |
| 58 | |
| 59 | #iawp-parent.loading .loading-icon { |
| 60 | opacity: 1; |
| 61 | visibility: visible; |
| 62 | } |
| 63 | |
| 64 | #iawp-parent.loading .loading-icon img { |
| 65 | opacity: 1; |
| 66 | -webkit-transform: scale(1); |
| 67 | transform: scale(1); |
| 68 | } |
| 69 | |
| 70 | #iawp-parent .chart-container { |
| 71 | width: 100%; |
| 72 | padding: 0 24px; |
| 73 | } |
| 74 | |
| 75 | #iawp-parent .quick-stats { |
| 76 | gap: 24px; |
| 77 | margin: 24px; |
| 78 | display: flex; |
| 79 | } |
| 80 | |
| 81 | #iawp-parent .chart-inner { |
| 82 | background: #fff; |
| 83 | border: 1px solid #dedae6; |
| 84 | border-radius: 6px; |
| 85 | padding: 24px; |
| 86 | } |
| 87 | |
| 88 | #iawp-parent .legend-container { |
| 89 | align-items: center; |
| 90 | margin-bottom: 16px; |
| 91 | display: flex; |
| 92 | } |
| 93 | |
| 94 | #iawp-parent .legend-title { |
| 95 | margin: 0; |
| 96 | font-size: 18px; |
| 97 | font-weight: 700; |
| 98 | } |
| 99 | |
| 100 | #iawp-parent .legend-list { |
| 101 | justify-content: end; |
| 102 | margin: 0; |
| 103 | display: flex; |
| 104 | } |
| 105 | |
| 106 | #iawp-parent .legend-item { |
| 107 | cursor: pointer; |
| 108 | -webkit-user-select: none; |
| 109 | -ms-user-select: none; |
| 110 | user-select: none; |
| 111 | border-radius: 18px; |
| 112 | align-items: center; |
| 113 | margin: 0 0 0 16px; |
| 114 | padding: 4px 12px 4px 8px; |
| 115 | display: inline-flex; |
| 116 | } |
| 117 | |
| 118 | #iawp-parent .legend-item.hidden { |
| 119 | opacity: .5; |
| 120 | } |
| 121 | |
| 122 | #iawp-parent .legend-item span { |
| 123 | height: 16px; |
| 124 | width: 16px; |
| 125 | border-radius: 50%; |
| 126 | margin-right: 4px; |
| 127 | display: inline-block; |
| 128 | } |
| 129 | |
| 130 | #iawp-parent .legend-item p { |
| 131 | margin: 0; |
| 132 | font-weight: 500; |
| 133 | } |
| 134 | |
| 135 | #iawp-parent .legend-item-for-views { |
| 136 | background-color: #efe8fa; |
| 137 | } |
| 138 | |
| 139 | #iawp-parent .legend-item-for-views span { |
| 140 | background-color: #5123a0; |
| 141 | } |
| 142 | |
| 143 | #iawp-parent .legend-item-for-visitors { |
| 144 | background-color: rgba(246, 157, 10, .2); |
| 145 | } |
| 146 | |
| 147 | #iawp-parent .legend-item-for-visitors span { |
| 148 | background-color: #f69d0a; |
| 149 | } |
| 150 | |
| 151 | #iawp-parent svg text { |
| 152 | stroke-width: 0; |
| 153 | } |
| 154 | |
| 155 | #iawp-parent .data-table { |
| 156 | grid-auto-rows: minmax(30px, auto); |
| 157 | display: grid; |
| 158 | position: relative; |
| 159 | } |
| 160 | |
| 161 | #iawp-parent .data-table[data-column-count="2"] { |
| 162 | grid-template-columns: repeat(2, minmax(70px, auto)); |
| 163 | } |
| 164 | |
| 165 | #iawp-parent .data-table[data-column-count="3"] { |
| 166 | grid-template-columns: repeat(3, minmax(70px, auto)); |
| 167 | } |
| 168 | |
| 169 | #iawp-parent .data-table[data-column-count="4"] { |
| 170 | grid-template-columns: repeat(4, minmax(70px, auto)); |
| 171 | } |
| 172 | |
| 173 | #iawp-parent .data-table[data-column-count="5"] { |
| 174 | grid-template-columns: repeat(5, minmax(70px, auto)); |
| 175 | } |
| 176 | |
| 177 | #iawp-parent .data-table[data-column-count="6"] { |
| 178 | grid-template-columns: repeat(6, minmax(70px, auto)); |
| 179 | } |
| 180 | |
| 181 | #iawp-parent .data-table[data-column-count="7"] { |
| 182 | grid-template-columns: repeat(7, minmax(70px, auto)); |
| 183 | } |
| 184 | |
| 185 | #iawp-parent .data-table[data-column-count="8"] { |
| 186 | grid-template-columns: repeat(8, minmax(70px, auto)); |
| 187 | } |
| 188 | |
| 189 | #iawp-parent .data-table .rows, #iawp-parent .data-table .row, #iawp-parent .data-table .columns { |
| 190 | display: contents; |
| 191 | } |
| 192 | |
| 193 | #iawp-parent .data-table .rows:after, #iawp-parent .data-table .row:after, #iawp-parent .data-table .columns:after { |
| 194 | display: none; |
| 195 | } |
| 196 | |
| 197 | #iawp-parent .data-error { |
| 198 | text-align: center; |
| 199 | color: #363040; |
| 200 | background-color: #f7f5fa; |
| 201 | grid-column: 1 / -1; |
| 202 | margin: 0; |
| 203 | padding: 24px; |
| 204 | } |
| 205 | |
| 206 | #iawp-parent .columns .cell { |
| 207 | z-index: 19; |
| 208 | background-color: #fff; |
| 209 | border-bottom: 1px solid #dedae6; |
| 210 | position: -webkit-sticky; |
| 211 | position: sticky; |
| 212 | top: 144px; |
| 213 | } |
| 214 | |
| 215 | @media (min-width: 601px) { |
| 216 | #iawp-parent .columns .cell { |
| 217 | top: 190px; |
| 218 | } |
| 219 | } |
| 220 | |
| 221 | @media (min-width: 783px) { |
| 222 | #iawp-parent .columns .cell { |
| 223 | top: 176px; |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | @media (min-width: 783px) { |
| 228 | #iawp-parent .columns .cell { |
| 229 | top: 114px; |
| 230 | } |
| 231 | } |
| 232 | |
| 233 | #iawp-parent .header { |
| 234 | flex-wrap: row; |
| 235 | background: #fff; |
| 236 | border-bottom: 1px solid #dedae6; |
| 237 | align-items: center; |
| 238 | display: flex; |
| 239 | } |
| 240 | |
| 241 | #iawp-parent .header .logo { |
| 242 | border-right: 1px solid #dedae6; |
| 243 | padding: 14px 32px 12px; |
| 244 | } |
| 245 | |
| 246 | #iawp-parent .header .logo img { |
| 247 | width: 200px; |
| 248 | height: auto; |
| 249 | } |
| 250 | |
| 251 | #iawp-parent .header .upgrade { |
| 252 | margin-left: 24px; |
| 253 | } |
| 254 | |
| 255 | #iawp-parent .header .upgrade a { |
| 256 | color: #5123a0; |
| 257 | background: #fff3c9; |
| 258 | border: none; |
| 259 | padding: 6px 4px 6px 12px; |
| 260 | font-size: 12px; |
| 261 | } |
| 262 | |
| 263 | #iawp-parent .header .upgrade a:hover, #iawp-parent .header .upgrade a:active, #iawp-parent .header .upgrade a:focus { |
| 264 | color: #6c46ae; |
| 265 | } |
| 266 | |
| 267 | #iawp-parent .header .upgrade a .dashicons { |
| 268 | width: auto; |
| 269 | height: auto; |
| 270 | margin-left: 4px; |
| 271 | font-size: 16px; |
| 272 | } |
| 273 | |
| 274 | #iawp-parent .header .kb { |
| 275 | margin: 0 36px 0 auto; |
| 276 | } |
| 277 | |
| 278 | #iawp-parent .header .kb a { |
| 279 | text-decoration: none; |
| 280 | } |
| 281 | |
| 282 | #iawp-parent .header .kb a .dashicons { |
| 283 | margin: 0 0 0 6px; |
| 284 | } |
| 285 | |
| 286 | #iawp-parent .header .kb .review { |
| 287 | margin-right: 18px; |
| 288 | } |
| 289 | |
| 290 | #iawp-parent .nav { |
| 291 | background: #fff; |
| 292 | padding: 0 0 0 20px; |
| 293 | } |
| 294 | |
| 295 | #iawp-parent .menu { |
| 296 | margin: 0; |
| 297 | padding: 0; |
| 298 | list-style-type: none; |
| 299 | list-style-image: none; |
| 300 | display: flex; |
| 301 | } |
| 302 | |
| 303 | #iawp-parent .menu li:hover > a, #iawp-parent .menu a:hover { |
| 304 | box-shadow: none; |
| 305 | border-bottom-color: #dedae6; |
| 306 | outline: none; |
| 307 | } |
| 308 | |
| 309 | #iawp-parent .menu li:hover > a.active, #iawp-parent .menu a:hover.active { |
| 310 | border-bottom-color: #5123a0; |
| 311 | } |
| 312 | |
| 313 | #iawp-parent .menu-item.upgrade { |
| 314 | position: relative; |
| 315 | } |
| 316 | |
| 317 | #iawp-parent .menu-item.upgrade.first { |
| 318 | border-left: 1px solid #dedae6; |
| 319 | } |
| 320 | |
| 321 | #iawp-parent .menu-item.upgrade:hover a, #iawp-parent .menu-item.upgrade:active a, #iawp-parent .menu-item.upgrade:focus a, #iawp-parent .menu-item.upgrade a:hover, #iawp-parent .menu-item.upgrade a:active, #iawp-parent .menu-item.upgrade a:focus { |
| 322 | box-shadow: none; |
| 323 | border-bottom-color: rgba(0, 0, 0, 0); |
| 324 | outline: none; |
| 325 | } |
| 326 | |
| 327 | #iawp-parent .menu-item.upgrade a { |
| 328 | color: #9a95a6; |
| 329 | } |
| 330 | |
| 331 | #iawp-parent .menu-item.upgrade a:hover, #iawp-parent .menu-item.upgrade a:active, #iawp-parent .menu-item.upgrade a:focus { |
| 332 | color: #363040; |
| 333 | } |
| 334 | |
| 335 | #iawp-parent .menu-link { |
| 336 | white-space: nowrap; |
| 337 | border-bottom: 5px solid rgba(0, 0, 0, 0); |
| 338 | padding: 12px 18px; |
| 339 | font-size: 14px; |
| 340 | display: inline-block; |
| 341 | } |
| 342 | |
| 343 | #iawp-parent .menu-link.active { |
| 344 | border-bottom-color: #5123a0; |
| 345 | } |
| 346 | |
| 347 | #iawp-parent .menu-link:hover ~ .sub-menu, #iawp-parent .menu-link:active ~ .sub-menu, #iawp-parent .menu-link:focus ~ .sub-menu { |
| 348 | opacity: 1; |
| 349 | visibility: visible; |
| 350 | -webkit-transform: translateY(-4px); |
| 351 | transform: translateY(-4px); |
| 352 | } |
| 353 | |
| 354 | #iawp-parent .sub-menu { |
| 355 | z-index: 39; |
| 356 | width: auto; |
| 357 | min-width: 100%; |
| 358 | opacity: 0; |
| 359 | visibility: hidden; |
| 360 | transition: opacity .2s, visibility .2s, -webkit-transform .2s, -webkit-transform .2s, transform .2s; |
| 361 | position: absolute; |
| 362 | top: calc(100% + 4px); |
| 363 | } |
| 364 | |
| 365 | #iawp-parent .sub-menu:hover { |
| 366 | opacity: 1; |
| 367 | visibility: visible; |
| 368 | -webkit-transform: translateY(-4px); |
| 369 | transform: translateY(-4px); |
| 370 | } |
| 371 | |
| 372 | #iawp-parent .sub-menu ul { |
| 373 | background: #fff; |
| 374 | border-radius: 0 0 3px 3px; |
| 375 | padding-bottom: 2px; |
| 376 | overflow: hidden; |
| 377 | box-shadow: 0 2px 8px rgba(0, 0, 0, .1); |
| 378 | } |
| 379 | |
| 380 | #iawp-parent .sub-menu .menu-item { |
| 381 | display: block; |
| 382 | } |
| 383 | |
| 384 | #iawp-parent .sub-menu .menu-link { |
| 385 | border-bottom: none; |
| 386 | display: block; |
| 387 | } |
| 388 | |
| 389 | #iawp-parent .upgrade-popup { |
| 390 | z-index: 99; |
| 391 | width: 300px; |
| 392 | opacity: 0; |
| 393 | visibility: hidden; |
| 394 | background: #fff; |
| 395 | border: 1px solid #dedae6; |
| 396 | border-radius: 6px; |
| 397 | padding: 18px 24px 24px; |
| 398 | transition: opacity .2s, visibility .2s, -webkit-transform .2s, transform .2s; |
| 399 | position: absolute; |
| 400 | top: calc(100% + 12px); |
| 401 | left: 50%; |
| 402 | -webkit-transform: translateX(-50%); |
| 403 | transform: translateX(-50%); |
| 404 | box-shadow: 0 1px 14px rgba(0, 0, 0, .15); |
| 405 | } |
| 406 | |
| 407 | #iawp-parent .upgrade-popup.show { |
| 408 | opacity: 1; |
| 409 | visibility: visible; |
| 410 | -webkit-transform: translateX(-50%)translateY(-6px); |
| 411 | transform: translateX(-50%)translateY(-6px); |
| 412 | } |
| 413 | |
| 414 | #iawp-parent .upgrade-popup .title { |
| 415 | border-bottom: 1px solid #dedae6; |
| 416 | justify-content: space-between; |
| 417 | align-items: center; |
| 418 | padding-bottom: 6px; |
| 419 | font-weight: 700; |
| 420 | display: flex; |
| 421 | } |
| 422 | |
| 423 | #iawp-parent .upgrade-popup .label { |
| 424 | color: #5123a0; |
| 425 | border-radius: 3px; |
| 426 | padding: 4px 8px; |
| 427 | display: inline-block; |
| 428 | } |
| 429 | |
| 430 | #iawp-parent .upgrade-popup .description p { |
| 431 | margin-bottom: 18px; |
| 432 | font-size: 13px; |
| 433 | } |
| 434 | |
| 435 | #iawp-parent .upgrade-popup .description a, #iawp-parent .upgrade-popup .description a:hover, #iawp-parent .upgrade-popup .description a:active, #iawp-parent .upgrade-popup .description a:focus { |
| 436 | color: #fff; |
| 437 | } |
| 438 | |
| 439 | @media (min-width: 1100px) { |
| 440 | #iawp-parent .upgrade-popup { |
| 441 | left: 0; |
| 442 | -webkit-transform: none; |
| 443 | transform: none; |
| 444 | } |
| 445 | |
| 446 | #iawp-parent .upgrade-popup.show { |
| 447 | -webkit-transform: translateY(-6px); |
| 448 | transform: translateY(-6px); |
| 449 | } |
| 450 | } |
| 451 | |
| 452 | #iawp-parent .relative-dates { |
| 453 | grid-gap: 8px; |
| 454 | grid-template-rows: repeat(2, 1fr); |
| 455 | grid-auto-flow: column; |
| 456 | display: grid; |
| 457 | } |
| 458 | |
| 459 | #iawp-parent .relative-dates .iawp-button, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .button, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .button { |
| 460 | padding: 8px; |
| 461 | } |
| 462 | |
| 463 | #iawp-parent .relative-dates .iawp-button.active, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .active.button, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .active.button { |
| 464 | color: #fff; |
| 465 | } |
| 466 | |
| 467 | #iawp-parent .toolbar { |
| 468 | z-index: 29; |
| 469 | background: #5123a0; |
| 470 | flex-wrap: wrap; |
| 471 | justify-content: center; |
| 472 | display: flex; |
| 473 | position: -webkit-sticky; |
| 474 | position: sticky; |
| 475 | top: 0; |
| 476 | } |
| 477 | |
| 478 | #iawp-parent .toolbar .buttons { |
| 479 | width: 100%; |
| 480 | justify-content: center; |
| 481 | align-items: center; |
| 482 | padding: 18px 24px; |
| 483 | display: flex; |
| 484 | } |
| 485 | |
| 486 | #iawp-parent .toolbar .buttons > div { |
| 487 | margin-right: 12px; |
| 488 | } |
| 489 | |
| 490 | #iawp-parent .toolbar .buttons > div:last-child { |
| 491 | margin-right: 0; |
| 492 | } |
| 493 | |
| 494 | #iawp-parent .toolbar .date-picker-container { |
| 495 | position: relative; |
| 496 | } |
| 497 | |
| 498 | #iawp-parent .toolbar .date-picker-container .dashicons { |
| 499 | color: #5123a0; |
| 500 | position: absolute; |
| 501 | top: 11px; |
| 502 | left: 12px; |
| 503 | } |
| 504 | |
| 505 | #iawp-parent .toolbar .learn-more { |
| 506 | color: #fff; |
| 507 | margin-left: 6px; |
| 508 | text-decoration: none; |
| 509 | } |
| 510 | |
| 511 | #iawp-parent .easepick-wrapper { |
| 512 | display: none; |
| 513 | } |
| 514 | |
| 515 | #iawp-parent .easepick-wrapper.show { |
| 516 | display: block; |
| 517 | } |
| 518 | |
| 519 | @media (min-width: 601px) { |
| 520 | #iawp-parent .toolbar { |
| 521 | top: 46px; |
| 522 | } |
| 523 | } |
| 524 | |
| 525 | @media (min-width: 783px) { |
| 526 | #iawp-parent .toolbar { |
| 527 | top: 32px; |
| 528 | } |
| 529 | } |
| 530 | |
| 531 | @media (min-width: 1200px) { |
| 532 | #iawp-parent .toolbar { |
| 533 | flex-wrap: nowrap; |
| 534 | justify-content: space-between; |
| 535 | } |
| 536 | |
| 537 | #iawp-parent .toolbar .buttons { |
| 538 | width: auto; |
| 539 | justify-content: flex-start; |
| 540 | } |
| 541 | } |
| 542 | |
| 543 | @-webkit-keyframes recording { |
| 544 | 0% { |
| 545 | fill: #efe8fa; |
| 546 | } |
| 547 | |
| 548 | 50% { |
| 549 | fill: #f2afa7; |
| 550 | } |
| 551 | |
| 552 | 100% { |
| 553 | fill: #efe8fa; |
| 554 | } |
| 555 | } |
| 556 | |
| 557 | @keyframes recording { |
| 558 | 0% { |
| 559 | fill: #efe8fa; |
| 560 | } |
| 561 | |
| 562 | 50% { |
| 563 | fill: #f2afa7; |
| 564 | } |
| 565 | |
| 566 | 100% { |
| 567 | fill: #efe8fa; |
| 568 | } |
| 569 | } |
| 570 | |
| 571 | @-webkit-keyframes reload { |
| 572 | 0% { |
| 573 | opacity: 1; |
| 574 | } |
| 575 | |
| 576 | 20% { |
| 577 | opacity: .7; |
| 578 | } |
| 579 | |
| 580 | 100% { |
| 581 | opacity: 1; |
| 582 | } |
| 583 | } |
| 584 | |
| 585 | @keyframes reload { |
| 586 | 0% { |
| 587 | opacity: 1; |
| 588 | } |
| 589 | |
| 590 | 20% { |
| 591 | opacity: .7; |
| 592 | } |
| 593 | |
| 594 | 100% { |
| 595 | opacity: 1; |
| 596 | } |
| 597 | } |
| 598 | |
| 599 | @-webkit-keyframes reloadBg { |
| 600 | 0% { |
| 601 | background-color: #ece9f2; |
| 602 | } |
| 603 | |
| 604 | 20% { |
| 605 | background-color: #f2edfa; |
| 606 | } |
| 607 | |
| 608 | 100% { |
| 609 | background-color: #ece9f2; |
| 610 | } |
| 611 | } |
| 612 | |
| 613 | @keyframes reloadBg { |
| 614 | 0% { |
| 615 | background-color: #ece9f2; |
| 616 | } |
| 617 | |
| 618 | 20% { |
| 619 | background-color: #f2edfa; |
| 620 | } |
| 621 | |
| 622 | 100% { |
| 623 | background-color: #ece9f2; |
| 624 | } |
| 625 | } |
| 626 | |
| 627 | @-webkit-keyframes progressBar { |
| 628 | 0% { |
| 629 | width: 100%; |
| 630 | } |
| 631 | |
| 632 | 100% { |
| 633 | width: 0; |
| 634 | } |
| 635 | } |
| 636 | |
| 637 | @keyframes progressBar { |
| 638 | 0% { |
| 639 | width: 100%; |
| 640 | } |
| 641 | |
| 642 | 100% { |
| 643 | width: 0; |
| 644 | } |
| 645 | } |
| 646 | |
| 647 | #iawp-parent .real-time-dashboard { |
| 648 | z-index: 3; |
| 649 | position: relative; |
| 650 | } |
| 651 | |
| 652 | #iawp-parent .real-time-dashboard:after { |
| 653 | content: ""; |
| 654 | z-index: -1; |
| 655 | position: absolute; |
| 656 | top: -12px; |
| 657 | bottom: -380px; |
| 658 | left: 0; |
| 659 | right: 0; |
| 660 | } |
| 661 | |
| 662 | #iawp-parent .real-time-dashboard.refreshed:after { |
| 663 | -webkit-animation: reloadBg 1s forwards; |
| 664 | animation: reloadBg 1s forwards; |
| 665 | } |
| 666 | |
| 667 | #iawp-parent .real-time-dashboard.refreshed .chart-inner, #iawp-parent .real-time-dashboard.refreshed .most-popular-list, #iawp-parent .real-time-dashboard.refreshed .iawp-heading { |
| 668 | -webkit-animation: reload 1s forwards; |
| 669 | animation: reload 1s forwards; |
| 670 | } |
| 671 | |
| 672 | #iawp-parent .real-time-dashboard.refreshed .progress-bar .inner { |
| 673 | -webkit-animation: progressBar 10s linear forwards; |
| 674 | animation: progressBar 10s linear forwards; |
| 675 | } |
| 676 | |
| 677 | #iawp-parent .real-time-dashboard .iawp-heading { |
| 678 | z-index: 9; |
| 679 | text-align: center; |
| 680 | margin: 12px 0; |
| 681 | padding: 24px; |
| 682 | line-height: 1.5; |
| 683 | position: relative; |
| 684 | } |
| 685 | |
| 686 | #iawp-parent .real-time-dashboard .iawp-heading .learn-more { |
| 687 | color: #363040; |
| 688 | margin-left: 2px; |
| 689 | font-size: 18px; |
| 690 | font-weight: 400; |
| 691 | text-decoration: none; |
| 692 | display: inline-block; |
| 693 | position: absolute; |
| 694 | top: 10px; |
| 695 | left: calc(100% + 8px); |
| 696 | } |
| 697 | |
| 698 | #iawp-parent .real-time-dashboard .iawp-heading .learn-more:hover .tooltip, #iawp-parent .real-time-dashboard .iawp-heading .learn-more:active .tooltip, #iawp-parent .real-time-dashboard .iawp-heading .learn-more:focus .tooltip { |
| 699 | opacity: 1; |
| 700 | visibility: visible; |
| 701 | } |
| 702 | |
| 703 | #iawp-parent .real-time-dashboard .iawp-heading .learn-more .dashicons { |
| 704 | font-size: 22px; |
| 705 | } |
| 706 | |
| 707 | #iawp-parent .real-time-dashboard .iawp-heading .learn-more .tooltip { |
| 708 | width: 250px; |
| 709 | top: 34px; |
| 710 | left: -115px; |
| 711 | } |
| 712 | |
| 713 | #iawp-parent .real-time-dashboard .iawp-title-inner { |
| 714 | display: inline-block; |
| 715 | position: relative; |
| 716 | } |
| 717 | |
| 718 | #iawp-parent .real-time-dashboard .iawp-title-inner svg { |
| 719 | position: absolute; |
| 720 | top: 6px; |
| 721 | right: calc(100% + 8px); |
| 722 | } |
| 723 | |
| 724 | #iawp-parent .real-time-dashboard .most-popular-container { |
| 725 | margin: 24px; |
| 726 | } |
| 727 | |
| 728 | #iawp-parent .real-time-dashboard .recording-icon-outer { |
| 729 | -webkit-animation: recording 2s ease-in-out infinite; |
| 730 | animation: recording 2s ease-in-out infinite; |
| 731 | } |
| 732 | |
| 733 | #iawp-parent .real-time-dashboard .iawp-title { |
| 734 | font-size: 28px; |
| 735 | font-weight: 900; |
| 736 | } |
| 737 | |
| 738 | #iawp-parent .real-time-dashboard .iawp-overview { |
| 739 | font-size: 16px; |
| 740 | } |
| 741 | |
| 742 | #iawp-parent .real-time-dashboard .charts { |
| 743 | flex-wrap: wrap; |
| 744 | justify-content: space-between; |
| 745 | padding: 0 24px; |
| 746 | display: flex; |
| 747 | } |
| 748 | |
| 749 | #iawp-parent .real-time-dashboard .chart-container { |
| 750 | padding: 0; |
| 751 | } |
| 752 | |
| 753 | #iawp-parent .real-time-dashboard .chart-container:first-child { |
| 754 | margin-bottom: 24px; |
| 755 | } |
| 756 | |
| 757 | #iawp-parent .real-time-dashboard .most-popular-list { |
| 758 | margin: 0 0 24px; |
| 759 | position: relative; |
| 760 | } |
| 761 | |
| 762 | #iawp-parent .real-time-dashboard .most-popular-list .heading { |
| 763 | justify-content: space-between; |
| 764 | display: flex; |
| 765 | } |
| 766 | |
| 767 | #iawp-parent .real-time-dashboard .most-popular-list .heading .views-heading { |
| 768 | font-weight: 700; |
| 769 | } |
| 770 | |
| 771 | #iawp-parent .real-time-dashboard .most-popular-list ol { |
| 772 | margin: 24px 0 0; |
| 773 | } |
| 774 | |
| 775 | #iawp-parent .real-time-dashboard .most-popular-list li { |
| 776 | border-bottom: 1px solid #ece9f2; |
| 777 | justify-content: space-between; |
| 778 | align-items: center; |
| 779 | margin-bottom: 8px; |
| 780 | padding-bottom: 8px; |
| 781 | font-size: 14px; |
| 782 | line-height: 1.5; |
| 783 | display: flex; |
| 784 | right: 0; |
| 785 | overflow: hidden; |
| 786 | } |
| 787 | |
| 788 | #iawp-parent .real-time-dashboard .most-popular-list li span { |
| 789 | white-space: nowrap; |
| 790 | } |
| 791 | |
| 792 | #iawp-parent .real-time-dashboard .most-popular-list li img { |
| 793 | width: 32px; |
| 794 | margin-left: 4px; |
| 795 | } |
| 796 | |
| 797 | #iawp-parent .real-time-dashboard .most-popular-list .real-time-resource { |
| 798 | white-space: nowrap; |
| 799 | width: calc(100% - 30px); |
| 800 | margin-left: 4px; |
| 801 | margin-right: 18px; |
| 802 | font-weight: 500; |
| 803 | position: relative; |
| 804 | overflow: hidden; |
| 805 | } |
| 806 | |
| 807 | #iawp-parent .real-time-dashboard .most-popular-list .real-time-resource:after { |
| 808 | content: ""; |
| 809 | width: 30px; |
| 810 | background: linear-gradient(90deg, rgba(255, 255, 255, .4) 0%, #fff 60%); |
| 811 | position: absolute; |
| 812 | top: 0; |
| 813 | bottom: 0; |
| 814 | right: 0; |
| 815 | } |
| 816 | |
| 817 | .iawp-dark-mode #iawp-parent .real-time-dashboard .most-popular-list .real-time-resource:after { |
| 818 | background: linear-gradient(90deg, rgba(54, 48, 64, .4) 0%, #363040 60%); |
| 819 | } |
| 820 | |
| 821 | #iawp-parent .real-time-dashboard .most-popular-list .real-time-subtitle { |
| 822 | color: #aaa6b3; |
| 823 | font-size: 12px; |
| 824 | } |
| 825 | |
| 826 | #iawp-parent .real-time-dashboard .most-popular-empty-message.hide { |
| 827 | display: none; |
| 828 | } |
| 829 | |
| 830 | #iawp-parent .real-time-dashboard .progress-bar { |
| 831 | height: 14px; |
| 832 | background: #fff; |
| 833 | position: fixed; |
| 834 | bottom: 0; |
| 835 | left: 0; |
| 836 | right: 0; |
| 837 | } |
| 838 | |
| 839 | #iawp-parent .real-time-dashboard .progress-bar .inner { |
| 840 | height: 100%; |
| 841 | width: 100%; |
| 842 | background: linear-gradient(90deg, #f65817 0%, #ff9f00 100%); |
| 843 | border-radius: 0 12px 12px 0; |
| 844 | position: absolute; |
| 845 | } |
| 846 | |
| 847 | .iawp-dark-mode #iawp-parent .real-time-dashboard .progress-bar { |
| 848 | background: #363040; |
| 849 | } |
| 850 | |
| 851 | @media (min-width: 600px) { |
| 852 | #iawp-parent .real-time-dashboard .most-popular-container { |
| 853 | flex-wrap: wrap; |
| 854 | justify-content: space-between; |
| 855 | display: flex; |
| 856 | } |
| 857 | |
| 858 | #iawp-parent .real-time-dashboard .most-popular-list { |
| 859 | width: calc(50% - 12px); |
| 860 | } |
| 861 | } |
| 862 | |
| 863 | @media (min-width: 783px) { |
| 864 | #iawp-parent .real-time-dashboard .progress-bar { |
| 865 | left: 36px; |
| 866 | } |
| 867 | } |
| 868 | |
| 869 | @media (min-width: 800px) { |
| 870 | #iawp-parent .real-time-dashboard .iawp-title { |
| 871 | font-size: 42px; |
| 872 | } |
| 873 | |
| 874 | #iawp-parent .real-time-dashboard .iawp-title-inner svg { |
| 875 | top: 16px; |
| 876 | right: calc(100% + 12px); |
| 877 | } |
| 878 | |
| 879 | #iawp-parent .real-time-dashboard .iawp-title-inner .learn-more { |
| 880 | top: 20px; |
| 881 | } |
| 882 | |
| 883 | #iawp-parent .real-time-dashboard .iawp-title-inner .learn-more .dashicons { |
| 884 | font-size: 26px; |
| 885 | } |
| 886 | |
| 887 | #iawp-parent .real-time-dashboard .iawp-overview { |
| 888 | font-size: 18px; |
| 889 | } |
| 890 | |
| 891 | #iawp-parent .real-time-dashboard .charts { |
| 892 | flex-wrap: nowrap; |
| 893 | } |
| 894 | |
| 895 | #iawp-parent .real-time-dashboard .chart-container { |
| 896 | width: calc(50% - 12px); |
| 897 | } |
| 898 | |
| 899 | #iawp-parent .real-time-dashboard .chart-container:first-child { |
| 900 | margin-bottom: 0; |
| 901 | } |
| 902 | } |
| 903 | |
| 904 | @media (min-width: 783px) { |
| 905 | #iawp-parent .real-time-dashboard .progress-bar { |
| 906 | left: 160px; |
| 907 | } |
| 908 | } |
| 909 | |
| 910 | @media (min-width: 1100px) { |
| 911 | #iawp-parent .real-time-dashboard .most-popular-list { |
| 912 | width: calc(33% - 12px); |
| 913 | } |
| 914 | } |
| 915 | |
| 916 | #iawp-parent .campaign-copy { |
| 917 | background: #f7f5fa; |
| 918 | border-bottom: 1px solid #dedae6; |
| 919 | justify-content: space-between; |
| 920 | padding: 24px 36px 36px; |
| 921 | display: flex; |
| 922 | } |
| 923 | |
| 924 | #iawp-parent .campaign-copy input { |
| 925 | flex-grow: 1; |
| 926 | margin: 0 16px 0 0; |
| 927 | } |
| 928 | |
| 929 | #iawp-parent .campaign-copy button { |
| 930 | white-space: nowrap; |
| 931 | } |
| 932 | |
| 933 | #iawp-parent .campaign-copy p { |
| 934 | margin: 0; |
| 935 | } |
| 936 | |
| 937 | #iawp-parent .campaigns-heading { |
| 938 | padding: 12px 36px; |
| 939 | } |
| 940 | |
| 941 | #iawp-parent .campaigns-empty { |
| 942 | padding: 0 36px 12px; |
| 943 | } |
| 944 | |
| 945 | @-webkit-keyframes newCampaign { |
| 946 | 0% { |
| 947 | bottom: -200px; |
| 948 | } |
| 949 | |
| 950 | 80% { |
| 951 | bottom: 5px; |
| 952 | } |
| 953 | |
| 954 | 100% { |
| 955 | bottom: 0; |
| 956 | } |
| 957 | } |
| 958 | |
| 959 | @keyframes newCampaign { |
| 960 | 0% { |
| 961 | bottom: -200px; |
| 962 | } |
| 963 | |
| 964 | 80% { |
| 965 | bottom: 5px; |
| 966 | } |
| 967 | |
| 968 | 100% { |
| 969 | bottom: 0; |
| 970 | } |
| 971 | } |
| 972 | |
| 973 | #iawp-parent .campaign.new { |
| 974 | z-index: 39; |
| 975 | background: #fff; |
| 976 | padding: 24px 36px 36px; |
| 977 | -webkit-animation: newCampaign .5s ease-out; |
| 978 | animation: newCampaign .5s ease-out; |
| 979 | position: fixed; |
| 980 | bottom: 0; |
| 981 | left: 0; |
| 982 | right: 0; |
| 983 | box-shadow: 0 -4px 12px rgba(0, 0, 0, .1); |
| 984 | } |
| 985 | |
| 986 | #iawp-parent .campaign.new .campaign-copy { |
| 987 | background: none; |
| 988 | border-bottom: none; |
| 989 | justify-content: flex-start; |
| 990 | padding: 0 90px 0 0; |
| 991 | } |
| 992 | |
| 993 | #iawp-parent .campaign.new .campaign-text { |
| 994 | max-width: 743px; |
| 995 | } |
| 996 | |
| 997 | #iawp-parent .campaign-title { |
| 998 | margin-top: 0; |
| 999 | font-size: 21px; |
| 1000 | } |
| 1001 | |
| 1002 | #iawp-parent .campaign-text { |
| 1003 | width: 100%; |
| 1004 | margin-right: 12px; |
| 1005 | position: relative; |
| 1006 | } |
| 1007 | |
| 1008 | #iawp-parent .campaign-url { |
| 1009 | width: 100%; |
| 1010 | box-shadow: none; |
| 1011 | color: #6d6a73; |
| 1012 | background: #fff; |
| 1013 | padding: 8px 12px; |
| 1014 | } |
| 1015 | |
| 1016 | #iawp-parent .campaign-url:focus { |
| 1017 | box-shadow: none; |
| 1018 | border-color: #c5c2cc; |
| 1019 | } |
| 1020 | |
| 1021 | #iawp-parent .campaign-actions { |
| 1022 | display: flex; |
| 1023 | } |
| 1024 | |
| 1025 | #iawp-parent .campaign-actions .iawp-button, #iawp-parent .campaign-actions .toplevel_page_independent-analytics #fs_connect .button, .toplevel_page_independent-analytics #fs_connect #iawp-parent .campaign-actions .button { |
| 1026 | margin-right: 8px; |
| 1027 | padding: 8px; |
| 1028 | } |
| 1029 | |
| 1030 | #iawp-parent .campaign-created-at { |
| 1031 | color: #9a95a6; |
| 1032 | margin: 0; |
| 1033 | font-size: 13px; |
| 1034 | position: absolute; |
| 1035 | top: calc(100% + 2px); |
| 1036 | } |
| 1037 | |
| 1038 | #iawp-parent .settings-container .campaign-table tr { |
| 1039 | flex-flow: column wrap; |
| 1040 | margin: 12px 0; |
| 1041 | display: flex; |
| 1042 | } |
| 1043 | |
| 1044 | #iawp-parent .settings-container .campaign-table th { |
| 1045 | width: 180px; |
| 1046 | width: auto; |
| 1047 | margin-bottom: 8px; |
| 1048 | padding: 0; |
| 1049 | font-weight: 400; |
| 1050 | } |
| 1051 | |
| 1052 | #iawp-parent .settings-container .campaign-table td { |
| 1053 | padding: 0; |
| 1054 | } |
| 1055 | |
| 1056 | #iawp-parent .settings-container .campaign-table input { |
| 1057 | padding: 7px 12px; |
| 1058 | } |
| 1059 | |
| 1060 | #iawp-parent .settings-container .campaign-table .required { |
| 1061 | color: #d93b29; |
| 1062 | } |
| 1063 | |
| 1064 | #iawp-parent .campaign-builder .settings-container { |
| 1065 | max-width: 960px; |
| 1066 | padding: 0; |
| 1067 | } |
| 1068 | |
| 1069 | #iawp-parent .campaign-builder .settings-container-header { |
| 1070 | padding: 12px 36px 0; |
| 1071 | } |
| 1072 | |
| 1073 | #iawp-parent .campaign-builder .settings-container-header h2 { |
| 1074 | font-size: 21px; |
| 1075 | line-height: 1.334; |
| 1076 | } |
| 1077 | |
| 1078 | #iawp-parent .campaign-builder .settings-container-header a { |
| 1079 | align-items: center; |
| 1080 | font-size: 14px; |
| 1081 | display: flex; |
| 1082 | } |
| 1083 | |
| 1084 | #iawp-parent .campaign-builder .settings-container-header a .dashicons { |
| 1085 | margin-left: 3px; |
| 1086 | font-size: 19px; |
| 1087 | } |
| 1088 | |
| 1089 | #iawp-parent .campaign-builder .table-container { |
| 1090 | padding: 0 36px; |
| 1091 | } |
| 1092 | |
| 1093 | #iawp-parent .campaign-builder .submit-container { |
| 1094 | background-color: #f7f5fa; |
| 1095 | border-radius: 0 0 6px 6px; |
| 1096 | justify-content: flex-end; |
| 1097 | align-items: center; |
| 1098 | padding: 24px 36px; |
| 1099 | display: flex; |
| 1100 | } |
| 1101 | |
| 1102 | #iawp-parent .campaign-builder .submit-container p { |
| 1103 | margin: 0; |
| 1104 | padding: 0; |
| 1105 | } |
| 1106 | |
| 1107 | #iawp-parent .campaign-builder .submit button { |
| 1108 | position: relative; |
| 1109 | } |
| 1110 | |
| 1111 | #iawp-parent .campaign-builder .submit button .dashicons { |
| 1112 | width: auto; |
| 1113 | height: auto; |
| 1114 | color: #5123a0; |
| 1115 | font-size: 22px; |
| 1116 | -webkit-animation: rotation 2s linear infinite; |
| 1117 | animation: rotation 2s linear infinite; |
| 1118 | display: none; |
| 1119 | position: absolute; |
| 1120 | top: 9px; |
| 1121 | left: calc(50% - 10px); |
| 1122 | } |
| 1123 | |
| 1124 | #iawp-parent .campaign-builder .submit button.building { |
| 1125 | color: rgba(0, 0, 0, 0) !important; |
| 1126 | } |
| 1127 | |
| 1128 | #iawp-parent .campaign-builder .submit button.building .dashicons { |
| 1129 | display: inline-block; |
| 1130 | } |
| 1131 | |
| 1132 | @media (min-width: 783px) { |
| 1133 | #iawp-parent .campaign.new { |
| 1134 | left: 36px; |
| 1135 | } |
| 1136 | } |
| 1137 | |
| 1138 | @media (min-width: 961px) { |
| 1139 | #iawp-parent .campaign.new { |
| 1140 | left: 160px; |
| 1141 | } |
| 1142 | } |
| 1143 | |
| 1144 | @media (min-width: 900px) { |
| 1145 | #iawp-parent .campaign-builder tbody { |
| 1146 | flex-wrap: wrap; |
| 1147 | justify-content: space-between; |
| 1148 | padding: 6px 0 18px; |
| 1149 | display: flex; |
| 1150 | } |
| 1151 | |
| 1152 | #iawp-parent .campaign-builder .campaign-table tr { |
| 1153 | width: calc(50% - 12px); |
| 1154 | margin: 6px 0; |
| 1155 | } |
| 1156 | } |
| 1157 | |
| 1158 | #iawp-parent .filters .condition { |
| 1159 | margin-bottom: 12px; |
| 1160 | padding-right: 24px; |
| 1161 | position: relative; |
| 1162 | } |
| 1163 | |
| 1164 | #iawp-parent .filters .operator-select-container, #iawp-parent .filters .operand-field-container { |
| 1165 | position: relative; |
| 1166 | } |
| 1167 | |
| 1168 | #iawp-parent .filters .operator-select-container:before, #iawp-parent .filters .operand-field-container:before { |
| 1169 | content: ""; |
| 1170 | z-index: 3; |
| 1171 | background: #efe8fa; |
| 1172 | border-radius: 3px; |
| 1173 | position: absolute; |
| 1174 | top: 1px; |
| 1175 | bottom: 1px; |
| 1176 | left: 1px; |
| 1177 | right: 1px; |
| 1178 | } |
| 1179 | |
| 1180 | #iawp-parent .filters .operator-select-container select, #iawp-parent .filters .operator-select-container input, #iawp-parent .filters .operand-field-container select, #iawp-parent .filters .operand-field-container input { |
| 1181 | display: none; |
| 1182 | } |
| 1183 | |
| 1184 | #iawp-parent .filters .operator-select-container select.show, #iawp-parent .filters .operator-select-container input.show, #iawp-parent .filters .operand-field-container select.show, #iawp-parent .filters .operand-field-container input.show { |
| 1185 | z-index: 9; |
| 1186 | display: block; |
| 1187 | position: relative; |
| 1188 | } |
| 1189 | |
| 1190 | #iawp-parent .filters .actions button { |
| 1191 | margin-right: 4px; |
| 1192 | } |
| 1193 | |
| 1194 | #iawp-parent .input-group { |
| 1195 | background: #f7f5fa; |
| 1196 | border: 1px solid #dedae6; |
| 1197 | border-radius: 3px; |
| 1198 | justify-content: space-between; |
| 1199 | padding: 8px; |
| 1200 | display: flex; |
| 1201 | } |
| 1202 | |
| 1203 | #iawp-parent .input-group > div { |
| 1204 | flex: 1; |
| 1205 | margin: 0 3px; |
| 1206 | } |
| 1207 | |
| 1208 | #iawp-parent .input-group > div select, #iawp-parent .input-group > div input { |
| 1209 | width: 100%; |
| 1210 | } |
| 1211 | |
| 1212 | #iawp-parent #iawp-learn { |
| 1213 | max-width: 1000px; |
| 1214 | padding: 12px; |
| 1215 | } |
| 1216 | |
| 1217 | #iawp-parent #iawp-learn h2 { |
| 1218 | margin: 0 0 12px; |
| 1219 | font-size: 28px; |
| 1220 | } |
| 1221 | |
| 1222 | #iawp-parent #iawp-learn h3 { |
| 1223 | margin: 0 0 12px; |
| 1224 | font-size: 21px; |
| 1225 | } |
| 1226 | |
| 1227 | #iawp-parent #iawp-learn p, #iawp-parent #iawp-learn li { |
| 1228 | margin: 10px 0; |
| 1229 | font-size: 16px; |
| 1230 | } |
| 1231 | |
| 1232 | #iawp-parent #iawp-learn ul { |
| 1233 | margin-top: 24px; |
| 1234 | } |
| 1235 | |
| 1236 | #iawp-parent #iawp-learn li { |
| 1237 | margin-bottom: 18px; |
| 1238 | } |
| 1239 | |
| 1240 | #iawp-parent #iawp-learn a { |
| 1241 | color: #5123a0; |
| 1242 | } |
| 1243 | |
| 1244 | #iawp-parent #iawp-learn .heading { |
| 1245 | padding: 24px; |
| 1246 | } |
| 1247 | |
| 1248 | #iawp-parent #iawp-learn .heading p { |
| 1249 | font-size: 18px; |
| 1250 | } |
| 1251 | |
| 1252 | #iawp-parent #iawp-learn .search-container { |
| 1253 | margin: 28px 0 18px; |
| 1254 | position: relative; |
| 1255 | } |
| 1256 | |
| 1257 | #iawp-parent #iawp-learn .search-container .dashicons { |
| 1258 | color: #6d6a73; |
| 1259 | position: absolute; |
| 1260 | top: 10px; |
| 1261 | left: 12px; |
| 1262 | } |
| 1263 | |
| 1264 | #iawp-parent #iawp-learn .search-field { |
| 1265 | max-width: none; |
| 1266 | width: 100%; |
| 1267 | background-color: #f7f5fa; |
| 1268 | border-radius: 24px; |
| 1269 | margin-left: -2px; |
| 1270 | padding: 6px 18px 6px 38px; |
| 1271 | font-size: 14px; |
| 1272 | } |
| 1273 | |
| 1274 | #iawp-parent #iawp-learn .search-field:focus { |
| 1275 | background-color: #fff; |
| 1276 | } |
| 1277 | |
| 1278 | #iawp-parent #iawp-learn .tutorials { |
| 1279 | justify-content: space-between; |
| 1280 | padding: 0 24px; |
| 1281 | display: flex; |
| 1282 | } |
| 1283 | |
| 1284 | #iawp-parent #iawp-learn .advanced { |
| 1285 | width: 54%; |
| 1286 | margin-right: 6%; |
| 1287 | } |
| 1288 | |
| 1289 | #iawp-parent #iawp-learn .basic { |
| 1290 | width: 38%; |
| 1291 | margin-right: 2%; |
| 1292 | } |
| 1293 | |
| 1294 | #iawp-parent #iawp-learn .tutorial { |
| 1295 | margin-bottom: 36px; |
| 1296 | } |
| 1297 | |
| 1298 | #iawp-parent #iawp-learn .updates { |
| 1299 | border-top: 1px solid #dedae6; |
| 1300 | justify-content: space-between; |
| 1301 | padding: 24px; |
| 1302 | display: flex; |
| 1303 | } |
| 1304 | |
| 1305 | #iawp-parent #iawp-learn .from-the-blog { |
| 1306 | width: 54%; |
| 1307 | margin-right: 6%; |
| 1308 | } |
| 1309 | |
| 1310 | #iawp-parent #iawp-learn .feedback { |
| 1311 | width: 38%; |
| 1312 | margin-right: 2%; |
| 1313 | } |
| 1314 | |
| 1315 | #iawp-parent #iawp-learn .social-icons { |
| 1316 | padding: 0 24px 24px; |
| 1317 | } |
| 1318 | |
| 1319 | #iawp-parent #iawp-learn .social-icons-list { |
| 1320 | margin-top: 24px; |
| 1321 | display: flex; |
| 1322 | } |
| 1323 | |
| 1324 | #iawp-parent #iawp-learn .social-icons-list a { |
| 1325 | width: 38px; |
| 1326 | height: 38px; |
| 1327 | border: 1px solid #363040; |
| 1328 | border-radius: 50%; |
| 1329 | justify-content: center; |
| 1330 | align-items: center; |
| 1331 | margin-right: 12px; |
| 1332 | display: flex; |
| 1333 | } |
| 1334 | |
| 1335 | #iawp-parent #iawp-learn .social-icons-list a:hover { |
| 1336 | background-color: #efe8fa; |
| 1337 | border-color: #5123a0; |
| 1338 | } |
| 1339 | |
| 1340 | #iawp-parent #iawp-learn .social-icons-list img { |
| 1341 | width: 16px; |
| 1342 | height: auto; |
| 1343 | display: block; |
| 1344 | } |
| 1345 | |
| 1346 | #iawp-parent .mm { |
| 1347 | font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif; |
| 1348 | } |
| 1349 | |
| 1350 | #iawp-parent .mm__overlay { |
| 1351 | background: rgba(0, 0, 0, .6); |
| 1352 | justify-content: center; |
| 1353 | align-items: center; |
| 1354 | display: flex; |
| 1355 | position: fixed; |
| 1356 | top: 0; |
| 1357 | bottom: 0; |
| 1358 | left: 0; |
| 1359 | right: 0; |
| 1360 | } |
| 1361 | |
| 1362 | #iawp-parent .mm__container { |
| 1363 | max-width: 500px; |
| 1364 | max-height: 100vh; |
| 1365 | box-sizing: border-box; |
| 1366 | background-color: #fff; |
| 1367 | border-radius: 4px; |
| 1368 | padding: 30px; |
| 1369 | overflow-y: auto; |
| 1370 | } |
| 1371 | |
| 1372 | #iawp-parent .mm__header { |
| 1373 | justify-content: space-between; |
| 1374 | align-items: center; |
| 1375 | display: flex; |
| 1376 | } |
| 1377 | |
| 1378 | #iawp-parent .mm__title { |
| 1379 | color: #00449e; |
| 1380 | box-sizing: border-box; |
| 1381 | margin-top: 0; |
| 1382 | margin-bottom: 0; |
| 1383 | font-size: 1.25rem; |
| 1384 | font-weight: 600; |
| 1385 | line-height: 1.25; |
| 1386 | } |
| 1387 | |
| 1388 | #iawp-parent .mm__close { |
| 1389 | background: none; |
| 1390 | border: 0; |
| 1391 | } |
| 1392 | |
| 1393 | #iawp-parent .mm__header .mm__close:before { |
| 1394 | content: "✕"; |
| 1395 | } |
| 1396 | |
| 1397 | #iawp-parent .mm__content { |
| 1398 | color: rgba(0, 0, 0, .8); |
| 1399 | margin-top: 2rem; |
| 1400 | margin-bottom: 2rem; |
| 1401 | line-height: 1.5; |
| 1402 | } |
| 1403 | |
| 1404 | #iawp-parent .mm__btn { |
| 1405 | color: rgba(0, 0, 0, .8); |
| 1406 | cursor: pointer; |
| 1407 | -webkit-appearance: button; |
| 1408 | text-transform: none; |
| 1409 | will-change: transform; |
| 1410 | -moz-osx-font-smoothing: grayscale; |
| 1411 | -webkit-backface-visibility: hidden; |
| 1412 | backface-visibility: hidden; |
| 1413 | background-color: #e6e6e6; |
| 1414 | border-style: none; |
| 1415 | border-width: 0; |
| 1416 | border-radius: .25rem; |
| 1417 | margin: 0; |
| 1418 | padding: .5rem 1rem; |
| 1419 | font-size: .875rem; |
| 1420 | line-height: 1.15; |
| 1421 | transition: -webkit-transform .25s ease-out, transform .25s ease-out, -webkit-transform .25s ease-out; |
| 1422 | overflow: visible; |
| 1423 | -webkit-transform: translateZ(0); |
| 1424 | transform: translateZ(0); |
| 1425 | } |
| 1426 | |
| 1427 | #iawp-parent .mm__btn:focus, #iawp-parent .mm__btn:hover { |
| 1428 | -webkit-transform: scale(1.05); |
| 1429 | transform: scale(1.05); |
| 1430 | } |
| 1431 | |
| 1432 | #iawp-parent .mm__btn-primary { |
| 1433 | color: #fff; |
| 1434 | background-color: #00449e; |
| 1435 | } |
| 1436 | |
| 1437 | @-webkit-keyframes mmfadeIn { |
| 1438 | from { |
| 1439 | opacity: 0; |
| 1440 | } |
| 1441 | |
| 1442 | to { |
| 1443 | opacity: 1; |
| 1444 | } |
| 1445 | } |
| 1446 | |
| 1447 | @keyframes mmfadeIn { |
| 1448 | from { |
| 1449 | opacity: 0; |
| 1450 | } |
| 1451 | |
| 1452 | to { |
| 1453 | opacity: 1; |
| 1454 | } |
| 1455 | } |
| 1456 | |
| 1457 | @-webkit-keyframes mmfadeOut { |
| 1458 | from { |
| 1459 | opacity: 1; |
| 1460 | } |
| 1461 | |
| 1462 | to { |
| 1463 | opacity: 0; |
| 1464 | } |
| 1465 | } |
| 1466 | |
| 1467 | @keyframes mmfadeOut { |
| 1468 | from { |
| 1469 | opacity: 1; |
| 1470 | } |
| 1471 | |
| 1472 | to { |
| 1473 | opacity: 0; |
| 1474 | } |
| 1475 | } |
| 1476 | |
| 1477 | @-webkit-keyframes mmslideIn { |
| 1478 | from { |
| 1479 | -webkit-transform: translateY(15%); |
| 1480 | transform: translateY(15%); |
| 1481 | } |
| 1482 | |
| 1483 | to { |
| 1484 | -webkit-transform: translateY(0); |
| 1485 | transform: translateY(0); |
| 1486 | } |
| 1487 | } |
| 1488 | |
| 1489 | @keyframes mmslideIn { |
| 1490 | from { |
| 1491 | -webkit-transform: translateY(15%); |
| 1492 | transform: translateY(15%); |
| 1493 | } |
| 1494 | |
| 1495 | to { |
| 1496 | -webkit-transform: translateY(0); |
| 1497 | transform: translateY(0); |
| 1498 | } |
| 1499 | } |
| 1500 | |
| 1501 | @-webkit-keyframes mmslideOut { |
| 1502 | from { |
| 1503 | -webkit-transform: translateY(0); |
| 1504 | transform: translateY(0); |
| 1505 | } |
| 1506 | |
| 1507 | to { |
| 1508 | -webkit-transform: translateY(-10%); |
| 1509 | transform: translateY(-10%); |
| 1510 | } |
| 1511 | } |
| 1512 | |
| 1513 | @keyframes mmslideOut { |
| 1514 | from { |
| 1515 | -webkit-transform: translateY(0); |
| 1516 | transform: translateY(0); |
| 1517 | } |
| 1518 | |
| 1519 | to { |
| 1520 | -webkit-transform: translateY(-10%); |
| 1521 | transform: translateY(-10%); |
| 1522 | } |
| 1523 | } |
| 1524 | |
| 1525 | #iawp-parent .micromodal-slide { |
| 1526 | display: none; |
| 1527 | } |
| 1528 | |
| 1529 | #iawp-parent .micromodal-slide.is-open { |
| 1530 | display: block; |
| 1531 | } |
| 1532 | |
| 1533 | #iawp-parent .micromodal-slide[aria-hidden="false"] .mm__overlay { |
| 1534 | -webkit-animation: mmfadeIn .3s cubic-bezier(0, 0, .2, 1); |
| 1535 | animation: mmfadeIn .3s cubic-bezier(0, 0, .2, 1); |
| 1536 | } |
| 1537 | |
| 1538 | #iawp-parent .micromodal-slide[aria-hidden="false"] .mm__container { |
| 1539 | -webkit-animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1); |
| 1540 | animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1); |
| 1541 | } |
| 1542 | |
| 1543 | #iawp-parent .micromodal-slide[aria-hidden="true"] .mm__overlay { |
| 1544 | -webkit-animation: mmfadeOut .3s cubic-bezier(0, 0, .2, 1); |
| 1545 | animation: mmfadeOut .3s cubic-bezier(0, 0, .2, 1); |
| 1546 | } |
| 1547 | |
| 1548 | #iawp-parent .micromodal-slide[aria-hidden="true"] .mm__container { |
| 1549 | -webkit-animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1); |
| 1550 | animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1); |
| 1551 | } |
| 1552 | |
| 1553 | #iawp-parent .micromodal-slide .mm__container, #iawp-parent .micromodal-slide .mm__overlay { |
| 1554 | will-change: transform; |
| 1555 | } |
| 1556 | |
| 1557 | #iawp-parent .modal-parent.small { |
| 1558 | position: relative; |
| 1559 | } |
| 1560 | |
| 1561 | #iawp-parent .modal { |
| 1562 | z-index: 19; |
| 1563 | opacity: 0; |
| 1564 | visibility: hidden; |
| 1565 | background: #fff; |
| 1566 | border-radius: 3px; |
| 1567 | transition: opacity .2s, visibility .2s, -webkit-transform .2s, transform .2s; |
| 1568 | position: absolute; |
| 1569 | top: calc(100% + 16px); |
| 1570 | left: 0; |
| 1571 | box-shadow: 0 4px 8px rgba(0, 0, 0, .1); |
| 1572 | } |
| 1573 | |
| 1574 | #iawp-parent .modal.show { |
| 1575 | opacity: 1; |
| 1576 | visibility: visible; |
| 1577 | -webkit-transform: translateY(-4px); |
| 1578 | transform: translateY(-4px); |
| 1579 | } |
| 1580 | |
| 1581 | #iawp-parent .modal.small { |
| 1582 | width: 220px; |
| 1583 | } |
| 1584 | |
| 1585 | #iawp-parent .modal.large { |
| 1586 | width: 96%; |
| 1587 | max-width: 800px; |
| 1588 | top: 80px; |
| 1589 | left: 50%; |
| 1590 | -webkit-transform: translateX(-50%); |
| 1591 | transform: translateX(-50%); |
| 1592 | } |
| 1593 | |
| 1594 | #iawp-parent .modal.large.show { |
| 1595 | -webkit-transform: translateY(-4px)translateX(-50%); |
| 1596 | transform: translateY(-4px)translateX(-50%); |
| 1597 | } |
| 1598 | |
| 1599 | #iawp-parent .modal.flex { |
| 1600 | width: auto; |
| 1601 | max-width: unset; |
| 1602 | } |
| 1603 | |
| 1604 | #iawp-parent .modal-inner { |
| 1605 | padding: 12px 24px; |
| 1606 | } |
| 1607 | |
| 1608 | #iawp-parent .modal-inner > div { |
| 1609 | margin-bottom: 18px; |
| 1610 | } |
| 1611 | |
| 1612 | @media (min-width: 1200px) { |
| 1613 | #iawp-parent .modal-parent { |
| 1614 | position: relative; |
| 1615 | } |
| 1616 | |
| 1617 | #iawp-parent .modal.large { |
| 1618 | width: 800px; |
| 1619 | top: calc(100% + 12px); |
| 1620 | left: 0; |
| 1621 | -webkit-transform: none; |
| 1622 | transform: none; |
| 1623 | } |
| 1624 | |
| 1625 | #iawp-parent .modal.large.show { |
| 1626 | -webkit-transform: translateY(-4px); |
| 1627 | transform: translateY(-4px); |
| 1628 | } |
| 1629 | |
| 1630 | #iawp-parent .modal.flex { |
| 1631 | width: auto; |
| 1632 | } |
| 1633 | } |
| 1634 | |
| 1635 | #iawp-parent .pagination { |
| 1636 | justify-content: center; |
| 1637 | margin: 24px; |
| 1638 | display: flex; |
| 1639 | } |
| 1640 | |
| 1641 | #iawp-parent .settings-container { |
| 1642 | color: #18141f; |
| 1643 | max-width: 700px; |
| 1644 | background: #fff; |
| 1645 | border: 1px solid #dedae6; |
| 1646 | border-radius: 6px; |
| 1647 | margin: 24px; |
| 1648 | padding: 12px 24px 24px; |
| 1649 | } |
| 1650 | |
| 1651 | #iawp-parent .settings-container p.submit { |
| 1652 | padding-bottom: 0; |
| 1653 | } |
| 1654 | |
| 1655 | #iawp-parent .settings-container label { |
| 1656 | display: inline; |
| 1657 | } |
| 1658 | |
| 1659 | #iawp-parent .settings-container .button-group { |
| 1660 | margin: 12px 0; |
| 1661 | } |
| 1662 | |
| 1663 | #iawp-parent .settings-container .button-group button { |
| 1664 | margin-right: 12px; |
| 1665 | } |
| 1666 | |
| 1667 | #iawp-parent .settings-container .column-label { |
| 1668 | display: inline-block; |
| 1669 | } |
| 1670 | |
| 1671 | #iawp-parent .settings-container th { |
| 1672 | width: 240px; |
| 1673 | } |
| 1674 | |
| 1675 | #iawp-parent .settings-container td { |
| 1676 | margin-top: 12px; |
| 1677 | } |
| 1678 | |
| 1679 | #iawp-parent .settings-container .post-types label { |
| 1680 | margin-right: 4px; |
| 1681 | } |
| 1682 | |
| 1683 | #iawp-parent .settings-container .shortcode-note { |
| 1684 | margin-left: 240px; |
| 1685 | } |
| 1686 | |
| 1687 | #iawp-parent .settings-container .shortcode-note p { |
| 1688 | font-size: 14px; |
| 1689 | } |
| 1690 | |
| 1691 | #iawp-parent .settings-container-header { |
| 1692 | justify-content: space-between; |
| 1693 | align-items: center; |
| 1694 | display: flex; |
| 1695 | } |
| 1696 | |
| 1697 | #iawp-parent .form-table input[type="text"]:disabled { |
| 1698 | box-shadow: none; |
| 1699 | cursor: not-allowed; |
| 1700 | background: #f0f0f2; |
| 1701 | } |
| 1702 | |
| 1703 | #iawp-parent .form-table input[type="text"] { |
| 1704 | width: 100%; |
| 1705 | } |
| 1706 | |
| 1707 | #iawp-parent .form-table input[type="text"]::-webkit-input-placeholder { |
| 1708 | color: #aeaeae; |
| 1709 | } |
| 1710 | |
| 1711 | #iawp-parent .form-table input[type="text"]::-ms-input-placeholder { |
| 1712 | color: #aeaeae; |
| 1713 | } |
| 1714 | |
| 1715 | #iawp-parent .form-table input[type="text"]::placeholder { |
| 1716 | color: #aeaeae; |
| 1717 | } |
| 1718 | |
| 1719 | #iawp-parent .form-table .description { |
| 1720 | color: #6d6a73; |
| 1721 | font-size: 13px; |
| 1722 | } |
| 1723 | |
| 1724 | #iawp-parent p.error { |
| 1725 | color: #d93b29; |
| 1726 | font-size: 13px; |
| 1727 | } |
| 1728 | |
| 1729 | #iawp-parent .block-ip-form.empty .empty, #iawp-parent .block-ip-form.exists .exists, #iawp-parent .block-ip-form.unsaved .warning-message { |
| 1730 | display: block; |
| 1731 | } |
| 1732 | |
| 1733 | #iawp-parent .block-ip-form .error-message { |
| 1734 | display: none; |
| 1735 | } |
| 1736 | |
| 1737 | #iawp-parent .block-ip-form .ip-entry { |
| 1738 | margin-bottom: 12px; |
| 1739 | display: flex; |
| 1740 | } |
| 1741 | |
| 1742 | #iawp-parent .block-ip-form .ip-entry > div { |
| 1743 | display: flex; |
| 1744 | } |
| 1745 | |
| 1746 | #iawp-parent .block-ip-form .ip-entry input { |
| 1747 | width: 100%; |
| 1748 | } |
| 1749 | |
| 1750 | #iawp-parent .block-ip-form .ip-entry input:read-only { |
| 1751 | background-color: #f7f5fa; |
| 1752 | } |
| 1753 | |
| 1754 | #iawp-parent .block-ip-form .ip-entry input:focus { |
| 1755 | border-color: #c5c2cc; |
| 1756 | } |
| 1757 | |
| 1758 | #iawp-parent .block-ip-form .ip-entry button { |
| 1759 | flex-shrink: 0; |
| 1760 | margin-left: 8px; |
| 1761 | } |
| 1762 | |
| 1763 | #iawp-parent .block-ip-form .block-new-ip { |
| 1764 | margin-bottom: 36px; |
| 1765 | } |
| 1766 | |
| 1767 | #iawp-parent #ip-entry-blueprint { |
| 1768 | display: none; |
| 1769 | } |
| 1770 | |
| 1771 | #iawp-parent .user-capability-settings .inner { |
| 1772 | align-items: center; |
| 1773 | display: flex; |
| 1774 | } |
| 1775 | |
| 1776 | #iawp-parent .user-capability-settings #save-permissions { |
| 1777 | position: relative; |
| 1778 | } |
| 1779 | |
| 1780 | #iawp-parent .user-capability-settings #save-permissions:after { |
| 1781 | content: ""; |
| 1782 | font-family: Dashicons; |
| 1783 | font-size: 20px; |
| 1784 | -webkit-animation: dashicons-spin 1s linear infinite; |
| 1785 | animation: dashicons-spin 1s linear infinite; |
| 1786 | display: none; |
| 1787 | position: absolute; |
| 1788 | top: calc(50% - 11px); |
| 1789 | left: calc(50% - 11px); |
| 1790 | } |
| 1791 | |
| 1792 | #iawp-parent .user-capability-settings #save-permissions.saving { |
| 1793 | color: rgba(0, 0, 0, 0); |
| 1794 | } |
| 1795 | |
| 1796 | #iawp-parent .user-capability-settings #save-permissions.saving:after { |
| 1797 | color: #fff; |
| 1798 | display: block; |
| 1799 | } |
| 1800 | |
| 1801 | #iawp-parent .user-roles { |
| 1802 | margin-left: 12px; |
| 1803 | } |
| 1804 | |
| 1805 | #iawp-parent .user-roles .role { |
| 1806 | display: none; |
| 1807 | } |
| 1808 | |
| 1809 | #iawp-parent .user-roles .role.show { |
| 1810 | display: flex; |
| 1811 | } |
| 1812 | |
| 1813 | #iawp-parent .user-roles label { |
| 1814 | align-items: center; |
| 1815 | margin: 0 14px 0 0; |
| 1816 | display: flex; |
| 1817 | } |
| 1818 | |
| 1819 | #iawp-parent .user-roles label input { |
| 1820 | margin: 0 5px 0 0; |
| 1821 | } |
| 1822 | |
| 1823 | #iawp-parent .note { |
| 1824 | font-style: italic; |
| 1825 | } |
| 1826 | |
| 1827 | #iawp-parent .save-button-container { |
| 1828 | margin-top: 24px; |
| 1829 | display: flex; |
| 1830 | } |
| 1831 | |
| 1832 | #iawp-parent .save-button-container .warning-message { |
| 1833 | color: #f69d0a; |
| 1834 | font-weight: 700px; |
| 1835 | margin-left: 12px; |
| 1836 | display: none; |
| 1837 | } |
| 1838 | |
| 1839 | #iawp-parent .permission-blocked { |
| 1840 | max-width: 600px; |
| 1841 | background: #fff; |
| 1842 | border: 1px solid #dedae6; |
| 1843 | border-radius: 6px; |
| 1844 | margin: 24px; |
| 1845 | padding: 12px; |
| 1846 | } |
| 1847 | |
| 1848 | @media (min-width: 783px) { |
| 1849 | #iawp-parent .settings-container td { |
| 1850 | margin-top: 0; |
| 1851 | } |
| 1852 | } |
| 1853 | |
| 1854 | #iawp-parent .stat { |
| 1855 | width: 50%; |
| 1856 | max-width: 400px; |
| 1857 | background-color: #fff; |
| 1858 | border: 1px solid #dedae6; |
| 1859 | border-radius: 6px; |
| 1860 | padding: 18px; |
| 1861 | } |
| 1862 | |
| 1863 | #iawp-parent .stat:last-child { |
| 1864 | margin-right: 0; |
| 1865 | } |
| 1866 | |
| 1867 | #iawp-parent .stat.unfiltered { |
| 1868 | background-color: #ece9f2; |
| 1869 | border-color: #c5c2cc; |
| 1870 | } |
| 1871 | |
| 1872 | #iawp-parent .stat.unfiltered circle { |
| 1873 | display: none; |
| 1874 | } |
| 1875 | |
| 1876 | #iawp-parent .stat.unfiltered .percentage { |
| 1877 | opacity: .7; |
| 1878 | } |
| 1879 | |
| 1880 | #iawp-parent .stat .metric { |
| 1881 | justify-content: space-between; |
| 1882 | font-size: 16px; |
| 1883 | display: flex; |
| 1884 | } |
| 1885 | |
| 1886 | #iawp-parent .stat .dashicons-filter { |
| 1887 | display: none; |
| 1888 | } |
| 1889 | |
| 1890 | #iawp-parent .stat .circle { |
| 1891 | width: 15px; |
| 1892 | height: 15px; |
| 1893 | } |
| 1894 | |
| 1895 | #iawp-parent .stat .values { |
| 1896 | align-items: baseline; |
| 1897 | margin: 12px 0; |
| 1898 | font-weight: 700; |
| 1899 | display: flex; |
| 1900 | } |
| 1901 | |
| 1902 | #iawp-parent .stat .count { |
| 1903 | margin-right: 8px; |
| 1904 | font-size: 28px; |
| 1905 | } |
| 1906 | |
| 1907 | #iawp-parent .stat .growth { |
| 1908 | color: #36b366; |
| 1909 | font-size: 14px; |
| 1910 | } |
| 1911 | |
| 1912 | #iawp-parent .stat .percentage { |
| 1913 | border-radius: 24px; |
| 1914 | align-items: center; |
| 1915 | padding: 4px 10px 4px 2px; |
| 1916 | display: flex; |
| 1917 | } |
| 1918 | |
| 1919 | #iawp-parent .stat .percentage.up { |
| 1920 | color: #36b366; |
| 1921 | background-color: #e3fced; |
| 1922 | } |
| 1923 | |
| 1924 | #iawp-parent .stat .percentage.down { |
| 1925 | color: #d93b29; |
| 1926 | background-color: #fce6e3; |
| 1927 | } |
| 1928 | |
| 1929 | #iawp-parent .stat .period-label { |
| 1930 | color: #9a95a6; |
| 1931 | font-size: 16px; |
| 1932 | } |
| 1933 | |
| 1934 | #iawp-parent .stat.views circle { |
| 1935 | fill: #5123a0; |
| 1936 | } |
| 1937 | |
| 1938 | #iawp-parent .stat.views .dashicons-filter { |
| 1939 | color: #5123a0; |
| 1940 | } |
| 1941 | |
| 1942 | #iawp-parent .stat.visitors circle { |
| 1943 | fill: #f69d0a; |
| 1944 | } |
| 1945 | |
| 1946 | #iawp-parent .stat.visitors .dashicons-filter { |
| 1947 | color: #f69d0a; |
| 1948 | } |
| 1949 | |
| 1950 | #iawp-parent .filtered .stat:not(.unfiltered) .dashicons-filter { |
| 1951 | display: inline-block; |
| 1952 | } |
| 1953 | |
| 1954 | #iawp-parent .filtered .stat:not(.unfiltered) .circle { |
| 1955 | display: none; |
| 1956 | } |
| 1957 | |
| 1958 | #iawp-parent .iawp-button, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button { |
| 1959 | cursor: pointer; |
| 1960 | background: none; |
| 1961 | border: 1px solid rgba(0, 0, 0, 0); |
| 1962 | border-radius: 3px; |
| 1963 | align-items: center; |
| 1964 | margin: 0; |
| 1965 | padding: 12px 16px; |
| 1966 | font-size: 14px; |
| 1967 | line-height: 1; |
| 1968 | text-decoration: none; |
| 1969 | transition: color .1s, background-color .1s, border-color .1s; |
| 1970 | display: inline-flex; |
| 1971 | } |
| 1972 | |
| 1973 | #iawp-parent .iawp-button .dashicons, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button .dashicons, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button .dashicons { |
| 1974 | margin-right: 6px; |
| 1975 | transition: color .1s; |
| 1976 | } |
| 1977 | |
| 1978 | #iawp-parent .iawp-button .count, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button .count, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button .count { |
| 1979 | color: #5123a0; |
| 1980 | background: #fff; |
| 1981 | border-radius: 50%; |
| 1982 | justify-content: center; |
| 1983 | align-items: center; |
| 1984 | font-size: 12px; |
| 1985 | font-weight: 700; |
| 1986 | line-height: 1; |
| 1987 | display: flex; |
| 1988 | } |
| 1989 | |
| 1990 | #iawp-parent .iawp-button .count:not(:empty), #iawp-parent .toplevel_page_independent-analytics #fs_connect .button .count:not(:empty), .toplevel_page_independent-analytics #fs_connect #iawp-parent .button .count:not(:empty) { |
| 1991 | height: 18px; |
| 1992 | width: 18px; |
| 1993 | margin-left: 8px; |
| 1994 | margin-right: -2px; |
| 1995 | } |
| 1996 | |
| 1997 | #iawp-parent .iawp-button .disabled-button-text, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button .disabled-button-text, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button .disabled-button-text { |
| 1998 | display: none; |
| 1999 | } |
| 2000 | |
| 2001 | #iawp-parent .iawp-button:disabled, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button:disabled, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button:disabled { |
| 2002 | cursor: default; |
| 2003 | } |
| 2004 | |
| 2005 | #iawp-parent .iawp-button:disabled .disabled-button-text, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button:disabled .disabled-button-text, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button:disabled .disabled-button-text { |
| 2006 | display: inline; |
| 2007 | } |
| 2008 | |
| 2009 | #iawp-parent .iawp-button:disabled .enabled-button-text, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button:disabled .enabled-button-text, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button:disabled .enabled-button-text { |
| 2010 | display: none; |
| 2011 | } |
| 2012 | |
| 2013 | #iawp-parent .iawp-button.white, #iawp-parent .toplevel_page_independent-analytics #fs_connect .white.button, .toplevel_page_independent-analytics #fs_connect #iawp-parent .white.button { |
| 2014 | color: #5123a0; |
| 2015 | background-color: #fff; |
| 2016 | border-color: #fff; |
| 2017 | } |
| 2018 | |
| 2019 | #iawp-parent .iawp-button.white:hover, #iawp-parent .toplevel_page_independent-analytics #fs_connect .white.button:hover, .toplevel_page_independent-analytics #fs_connect #iawp-parent .white.button:hover, #iawp-parent .iawp-button.white:active, #iawp-parent .toplevel_page_independent-analytics #fs_connect .white.button:active, .toplevel_page_independent-analytics #fs_connect #iawp-parent .white.button:active, #iawp-parent .iawp-button.white:focus, #iawp-parent .toplevel_page_independent-analytics #fs_connect .white.button:focus, .toplevel_page_independent-analytics #fs_connect #iawp-parent .white.button:focus, #iawp-parent .iawp-button.white .open, #iawp-parent .toplevel_page_independent-analytics #fs_connect .white.button .open, .toplevel_page_independent-analytics #fs_connect #iawp-parent .white.button .open { |
| 2020 | color: #6c46ae; |
| 2021 | } |
| 2022 | |
| 2023 | #iawp-parent .iawp-button.purple, #iawp-parent .toplevel_page_independent-analytics #fs_connect .iawp-button.button-primary, .toplevel_page_independent-analytics #fs_connect #iawp-parent .iawp-button.button-primary, #iawp-parent .toplevel_page_independent-analytics #fs_connect .purple.button, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button.button-primary, .toplevel_page_independent-analytics #fs_connect #iawp-parent .purple.button, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button.button-primary, #iawp-parent .iawp-button-purple, #iawp-parent .relative-dates .iawp-button.active, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .active.button, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .active.button { |
| 2024 | color: #fff; |
| 2025 | background-color: #5123a0; |
| 2026 | border-color: #5123a0; |
| 2027 | } |
| 2028 | |
| 2029 | #iawp-parent .iawp-button.purple:hover, #iawp-parent .toplevel_page_independent-analytics #fs_connect .iawp-button.button-primary:hover, .toplevel_page_independent-analytics #fs_connect #iawp-parent .iawp-button.button-primary:hover, #iawp-parent .toplevel_page_independent-analytics #fs_connect .purple.button:hover, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button.button-primary:hover, .toplevel_page_independent-analytics #fs_connect #iawp-parent .purple.button:hover, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button.button-primary:hover, #iawp-parent .iawp-button.purple:active, #iawp-parent .toplevel_page_independent-analytics #fs_connect .iawp-button.button-primary:active, .toplevel_page_independent-analytics #fs_connect #iawp-parent .iawp-button.button-primary:active, #iawp-parent .toplevel_page_independent-analytics #fs_connect .purple.button:active, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button.button-primary:active, .toplevel_page_independent-analytics #fs_connect #iawp-parent .purple.button:active, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button.button-primary:active, #iawp-parent .iawp-button.purple:focus, #iawp-parent .toplevel_page_independent-analytics #fs_connect .iawp-button.button-primary:focus, .toplevel_page_independent-analytics #fs_connect #iawp-parent .iawp-button.button-primary:focus, #iawp-parent .toplevel_page_independent-analytics #fs_connect .purple.button:focus, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button.button-primary:focus, .toplevel_page_independent-analytics #fs_connect #iawp-parent .purple.button:focus, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button.button-primary:focus, #iawp-parent .iawp-button.purple .open, #iawp-parent .toplevel_page_independent-analytics #fs_connect .iawp-button.button-primary .open, .toplevel_page_independent-analytics #fs_connect #iawp-parent .iawp-button.button-primary .open, #iawp-parent .toplevel_page_independent-analytics #fs_connect .purple.button .open, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button.button-primary .open, .toplevel_page_independent-analytics #fs_connect #iawp-parent .purple.button .open, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button.button-primary .open, #iawp-parent .iawp-button-purple:hover, #iawp-parent .relative-dates .iawp-button.active:hover, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .active.button:hover, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .active.button:hover, #iawp-parent .iawp-button-purple:active, #iawp-parent .relative-dates .iawp-button.active:active, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .active.button:active, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .active.button:active, #iawp-parent .iawp-button-purple:focus, #iawp-parent .relative-dates .iawp-button.active:focus, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .active.button:focus, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .active.button:focus, #iawp-parent .iawp-button-purple .open, #iawp-parent .relative-dates .iawp-button.active .open, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .active.button .open, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .active.button .open { |
| 2030 | color: #fff; |
| 2031 | background-color: #6c46ae; |
| 2032 | border-color: #6c46ae; |
| 2033 | } |
| 2034 | |
| 2035 | #iawp-parent .iawp-button.purple:disabled, #iawp-parent .toplevel_page_independent-analytics #fs_connect .iawp-button.button-primary:disabled, .toplevel_page_independent-analytics #fs_connect #iawp-parent .iawp-button.button-primary:disabled, #iawp-parent .toplevel_page_independent-analytics #fs_connect .purple.button:disabled, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button.button-primary:disabled, .toplevel_page_independent-analytics #fs_connect #iawp-parent .purple.button:disabled, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button.button-primary:disabled, #iawp-parent .iawp-button-purple:disabled, #iawp-parent .relative-dates .iawp-button.active:disabled, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .active.button:disabled, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .active.button:disabled { |
| 2036 | color: #9a95a6; |
| 2037 | background-color: #f7f5fa; |
| 2038 | border-color: #ece9f2; |
| 2039 | } |
| 2040 | |
| 2041 | #iawp-parent .iawp-button.red, #iawp-parent .toplevel_page_independent-analytics #fs_connect .red.button, .toplevel_page_independent-analytics #fs_connect #iawp-parent .red.button { |
| 2042 | color: #fff; |
| 2043 | background-color: #d93b29; |
| 2044 | border-color: #d93b29; |
| 2045 | } |
| 2046 | |
| 2047 | #iawp-parent .iawp-button.red:hover, #iawp-parent .toplevel_page_independent-analytics #fs_connect .red.button:hover, .toplevel_page_independent-analytics #fs_connect #iawp-parent .red.button:hover, #iawp-parent .iawp-button.red:active, #iawp-parent .toplevel_page_independent-analytics #fs_connect .red.button:active, .toplevel_page_independent-analytics #fs_connect #iawp-parent .red.button:active, #iawp-parent .iawp-button.red:focus, #iawp-parent .toplevel_page_independent-analytics #fs_connect .red.button:focus, .toplevel_page_independent-analytics #fs_connect #iawp-parent .red.button:focus, #iawp-parent .iawp-button.red .open, #iawp-parent .toplevel_page_independent-analytics #fs_connect .red.button .open, .toplevel_page_independent-analytics #fs_connect #iawp-parent .red.button .open { |
| 2048 | color: #fff; |
| 2049 | background-color: #d94e3f; |
| 2050 | border-color: #d94e3f; |
| 2051 | } |
| 2052 | |
| 2053 | #iawp-parent .iawp-button.orange, #iawp-parent .toplevel_page_independent-analytics #fs_connect .orange.button, .toplevel_page_independent-analytics #fs_connect #iawp-parent .orange.button { |
| 2054 | color: #fff; |
| 2055 | background-color: #f69d0a; |
| 2056 | border-color: #f69d0a; |
| 2057 | } |
| 2058 | |
| 2059 | #iawp-parent .iawp-button.orange:hover, #iawp-parent .toplevel_page_independent-analytics #fs_connect .orange.button:hover, .toplevel_page_independent-analytics #fs_connect #iawp-parent .orange.button:hover, #iawp-parent .iawp-button.orange:active, #iawp-parent .toplevel_page_independent-analytics #fs_connect .orange.button:active, .toplevel_page_independent-analytics #fs_connect #iawp-parent .orange.button:active, #iawp-parent .iawp-button.orange:focus, #iawp-parent .toplevel_page_independent-analytics #fs_connect .orange.button:focus, .toplevel_page_independent-analytics #fs_connect #iawp-parent .orange.button:focus, #iawp-parent .iawp-button.orange .open, #iawp-parent .toplevel_page_independent-analytics #fs_connect .orange.button .open, .toplevel_page_independent-analytics #fs_connect #iawp-parent .orange.button .open { |
| 2060 | color: #fff; |
| 2061 | background-color: #ffa826; |
| 2062 | border-color: #ffa826; |
| 2063 | } |
| 2064 | |
| 2065 | #iawp-parent .iawp-button.ghost-white, #iawp-parent .toplevel_page_independent-analytics #fs_connect .ghost-white.button, .toplevel_page_independent-analytics #fs_connect #iawp-parent .ghost-white.button { |
| 2066 | color: #fff; |
| 2067 | border-color: #fff; |
| 2068 | } |
| 2069 | |
| 2070 | #iawp-parent .iawp-button.ghost-white:hover, #iawp-parent .toplevel_page_independent-analytics #fs_connect .ghost-white.button:hover, .toplevel_page_independent-analytics #fs_connect #iawp-parent .ghost-white.button:hover, #iawp-parent .iawp-button.ghost-white:active, #iawp-parent .toplevel_page_independent-analytics #fs_connect .ghost-white.button:active, .toplevel_page_independent-analytics #fs_connect #iawp-parent .ghost-white.button:active, #iawp-parent .iawp-button.ghost-white:focus, #iawp-parent .toplevel_page_independent-analytics #fs_connect .ghost-white.button:focus, .toplevel_page_independent-analytics #fs_connect #iawp-parent .ghost-white.button:focus, #iawp-parent .iawp-button.ghost-white.open, #iawp-parent .toplevel_page_independent-analytics #fs_connect .ghost-white.open.button, .toplevel_page_independent-analytics #fs_connect #iawp-parent .ghost-white.open.button { |
| 2071 | color: #5123a0; |
| 2072 | background-color: #fff; |
| 2073 | border-color: #fff; |
| 2074 | } |
| 2075 | |
| 2076 | #iawp-parent .iawp-button.ghost-white:hover .count, #iawp-parent .toplevel_page_independent-analytics #fs_connect .ghost-white.button:hover .count, .toplevel_page_independent-analytics #fs_connect #iawp-parent .ghost-white.button:hover .count, #iawp-parent .iawp-button.ghost-white:active .count, #iawp-parent .toplevel_page_independent-analytics #fs_connect .ghost-white.button:active .count, .toplevel_page_independent-analytics #fs_connect #iawp-parent .ghost-white.button:active .count, #iawp-parent .iawp-button.ghost-white:focus .count, #iawp-parent .toplevel_page_independent-analytics #fs_connect .ghost-white.button:focus .count, .toplevel_page_independent-analytics #fs_connect #iawp-parent .ghost-white.button:focus .count, #iawp-parent .iawp-button.ghost-white.open .count, #iawp-parent .toplevel_page_independent-analytics #fs_connect .ghost-white.open.button .count, .toplevel_page_independent-analytics #fs_connect #iawp-parent .ghost-white.open.button .count { |
| 2077 | color: #fff; |
| 2078 | background: #5123a0; |
| 2079 | } |
| 2080 | |
| 2081 | #iawp-parent .iawp-button.ghost-purple, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button { |
| 2082 | color: #5123a0; |
| 2083 | border-color: #5123a0; |
| 2084 | } |
| 2085 | |
| 2086 | #iawp-parent .iawp-button.ghost-purple:hover, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button:hover, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button:hover, #iawp-parent .iawp-button.ghost-purple:active, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button:active, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button:active, #iawp-parent .iawp-button.ghost-purple:focus, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button:focus, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button:focus, #iawp-parent .iawp-button.ghost-purple .open, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button .open, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button .open { |
| 2087 | color: #fff; |
| 2088 | background-color: #5123a0; |
| 2089 | border-color: #5123a0; |
| 2090 | } |
| 2091 | |
| 2092 | #iawp-parent .iawp-button.ghost-purple:disabled, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button:disabled, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button:disabled { |
| 2093 | color: #9a95a6; |
| 2094 | background-color: #f7f5fa; |
| 2095 | border-color: #ece9f2; |
| 2096 | } |
| 2097 | |
| 2098 | #iawp-parent .iawp-button.ghost-red, #iawp-parent .toplevel_page_independent-analytics #fs_connect .ghost-red.button, .toplevel_page_independent-analytics #fs_connect #iawp-parent .ghost-red.button { |
| 2099 | color: #d93b29; |
| 2100 | border-color: #d93b29; |
| 2101 | } |
| 2102 | |
| 2103 | #iawp-parent .iawp-button.ghost-red:hover, #iawp-parent .toplevel_page_independent-analytics #fs_connect .ghost-red.button:hover, .toplevel_page_independent-analytics #fs_connect #iawp-parent .ghost-red.button:hover, #iawp-parent .iawp-button.ghost-red:active, #iawp-parent .toplevel_page_independent-analytics #fs_connect .ghost-red.button:active, .toplevel_page_independent-analytics #fs_connect #iawp-parent .ghost-red.button:active, #iawp-parent .iawp-button.ghost-red:focus, #iawp-parent .toplevel_page_independent-analytics #fs_connect .ghost-red.button:focus, .toplevel_page_independent-analytics #fs_connect #iawp-parent .ghost-red.button:focus, #iawp-parent .iawp-button.ghost-red .open, #iawp-parent .toplevel_page_independent-analytics #fs_connect .ghost-red.button .open, .toplevel_page_independent-analytics #fs_connect #iawp-parent .ghost-red.button .open { |
| 2104 | color: #fff; |
| 2105 | background-color: #d93b29; |
| 2106 | border-color: #d93b29; |
| 2107 | } |
| 2108 | |
| 2109 | #iawp-parent .iawp-button.ghost-red:disabled, #iawp-parent .toplevel_page_independent-analytics #fs_connect .ghost-red.button:disabled, .toplevel_page_independent-analytics #fs_connect #iawp-parent .ghost-red.button:disabled { |
| 2110 | color: #9a95a6; |
| 2111 | background-color: #f7f5fa; |
| 2112 | border-color: #ece9f2; |
| 2113 | } |
| 2114 | |
| 2115 | #iawp-parent .iawp-button.text, #iawp-parent .toplevel_page_independent-analytics #fs_connect .text.button, .toplevel_page_independent-analytics #fs_connect #iawp-parent .text.button { |
| 2116 | color: #5123a0; |
| 2117 | padding: 0; |
| 2118 | } |
| 2119 | |
| 2120 | #iawp-parent .date-picker { |
| 2121 | padding: 14px 16px 14px 36px; |
| 2122 | } |
| 2123 | |
| 2124 | #iawp-parent .sort-button { |
| 2125 | color: #18141f; |
| 2126 | cursor: pointer; |
| 2127 | background: none; |
| 2128 | border: none; |
| 2129 | align-items: center; |
| 2130 | padding: 1px; |
| 2131 | display: flex; |
| 2132 | } |
| 2133 | |
| 2134 | #iawp-parent .sort-button .dashicons-arrow-up, #iawp-parent .sort-button .dashicons-arrow-down { |
| 2135 | display: none; |
| 2136 | } |
| 2137 | |
| 2138 | #iawp-parent .sort-button .name { |
| 2139 | font-weight: 700; |
| 2140 | } |
| 2141 | |
| 2142 | #iawp-parent .sort-button .dashicons { |
| 2143 | color: #c5c2cc; |
| 2144 | } |
| 2145 | |
| 2146 | #iawp-parent .sort-button[data-sort-direction="asc"] .dashicons, #iawp-parent .sort-button[data-sort-direction="desc"] .dashicons { |
| 2147 | color: #5123a0; |
| 2148 | } |
| 2149 | |
| 2150 | #iawp-parent .sort-button[data-sort-direction="asc"] .dashicons-arrow-up { |
| 2151 | display: inline-block; |
| 2152 | } |
| 2153 | |
| 2154 | #iawp-parent .sort-button[data-sort-direction="asc"] .dashicons-arrow-down, #iawp-parent .sort-button[data-sort-direction="asc"] .dashicons-arrow-right { |
| 2155 | display: none; |
| 2156 | } |
| 2157 | |
| 2158 | #iawp-parent .sort-button[data-sort-direction="desc"] .dashicons-arrow-down { |
| 2159 | display: inline-block; |
| 2160 | } |
| 2161 | |
| 2162 | #iawp-parent .sort-button[data-sort-direction="desc"] .dashicons-arrow-up, #iawp-parent .sort-button[data-sort-direction="desc"] .dashicons-arrow-right { |
| 2163 | display: none; |
| 2164 | } |
| 2165 | |
| 2166 | #iawp-parent .delete-button { |
| 2167 | z-index: 3; |
| 2168 | color: #fff; |
| 2169 | cursor: pointer; |
| 2170 | background-color: #5123a0; |
| 2171 | border: none; |
| 2172 | border-radius: 50%; |
| 2173 | padding: 2px; |
| 2174 | transition: background-color .1s, color .1s; |
| 2175 | position: absolute; |
| 2176 | top: 12px; |
| 2177 | right: -12px; |
| 2178 | } |
| 2179 | |
| 2180 | #iawp-parent .delete-button:hover, #iawp-parent .delete-button .open { |
| 2181 | background-color: #6c46ae; |
| 2182 | } |
| 2183 | |
| 2184 | #iawp-parent .icon-med { |
| 2185 | margin-right: 3px; |
| 2186 | font-size: 21px; |
| 2187 | } |
| 2188 | |
| 2189 | #iawp-parent .dashicons.spin { |
| 2190 | -webkit-animation: dashicons-spin 1s linear infinite; |
| 2191 | animation: dashicons-spin 1s linear infinite; |
| 2192 | } |
| 2193 | |
| 2194 | @-webkit-keyframes dashicons-spin { |
| 2195 | 0% { |
| 2196 | -webkit-transform: rotate(0deg); |
| 2197 | transform: rotate(0deg); |
| 2198 | } |
| 2199 | |
| 2200 | 100% { |
| 2201 | -webkit-transform: rotate(360deg); |
| 2202 | transform: rotate(360deg); |
| 2203 | } |
| 2204 | } |
| 2205 | |
| 2206 | @keyframes dashicons-spin { |
| 2207 | 0% { |
| 2208 | -webkit-transform: rotate(0deg); |
| 2209 | transform: rotate(0deg); |
| 2210 | } |
| 2211 | |
| 2212 | 100% { |
| 2213 | -webkit-transform: rotate(360deg); |
| 2214 | transform: rotate(360deg); |
| 2215 | } |
| 2216 | } |
| 2217 | |
| 2218 | #iawp-parent .image-large { |
| 2219 | width: 36px; |
| 2220 | height: 36px; |
| 2221 | } |
| 2222 | |
| 2223 | #iawp-parent select, #iawp-parent input { |
| 2224 | background-color: #fff; |
| 2225 | border: 1px solid #c5c2cc; |
| 2226 | border-radius: 3px; |
| 2227 | box-shadow: 0 1px 1px rgba(0, 0, 0, .1); |
| 2228 | } |
| 2229 | |
| 2230 | #iawp-parent select:focus, #iawp-parent input:focus { |
| 2231 | border-color: #5123a0; |
| 2232 | outline: none; |
| 2233 | box-shadow: 0 1px 1px rgba(0, 0, 0, .1); |
| 2234 | } |
| 2235 | |
| 2236 | #iawp-parent select.error, #iawp-parent input.error { |
| 2237 | border-color: #d93b29; |
| 2238 | } |
| 2239 | |
| 2240 | #iawp-parent input { |
| 2241 | padding: 2px 12px; |
| 2242 | } |
| 2243 | |
| 2244 | #iawp-parent select { |
| 2245 | padding: 2px 24px 2px 12px; |
| 2246 | } |
| 2247 | |
| 2248 | #iawp-parent select:hover, #iawp-parent select:focus { |
| 2249 | color: #5123a0; |
| 2250 | } |
| 2251 | |
| 2252 | #iawp-parent .block-input { |
| 2253 | width: 100%; |
| 2254 | margin-bottom: 12px; |
| 2255 | display: block; |
| 2256 | } |
| 2257 | |
| 2258 | #iawp-parent ::-webkit-input-placeholder { |
| 2259 | color: #aaa6b3; |
| 2260 | opacity: 1; |
| 2261 | } |
| 2262 | |
| 2263 | #iawp-parent ::-ms-input-placeholder { |
| 2264 | color: #aaa6b3; |
| 2265 | opacity: 1; |
| 2266 | } |
| 2267 | |
| 2268 | #iawp-parent ::placeholder { |
| 2269 | color: #aaa6b3; |
| 2270 | opacity: 1; |
| 2271 | } |
| 2272 | |
| 2273 | #iawp-parent label { |
| 2274 | margin: 12px 0; |
| 2275 | display: block; |
| 2276 | } |
| 2277 | |
| 2278 | #iawp-parent .link-dark { |
| 2279 | color: #363040; |
| 2280 | text-decoration: none; |
| 2281 | } |
| 2282 | |
| 2283 | #iawp-parent .link-dark:link, #iawp-parent .link-dark:visited { |
| 2284 | color: #363040; |
| 2285 | } |
| 2286 | |
| 2287 | #iawp-parent .link-dark:hover, #iawp-parent .link-dark:active, #iawp-parent .link-dark:focus, #iawp-parent .link-dark.active { |
| 2288 | color: #18141f; |
| 2289 | } |
| 2290 | |
| 2291 | #iawp-parent .link-purple, #iawp-parent #fs_connect.require-license-key a, #fs_connect.require-license-key #iawp-parent a { |
| 2292 | color: #5123a0; |
| 2293 | text-decoration: none; |
| 2294 | } |
| 2295 | |
| 2296 | #iawp-parent .link-purple:link, #iawp-parent #fs_connect.require-license-key a:link, #fs_connect.require-license-key #iawp-parent a:link, #iawp-parent .link-purple:visited, #iawp-parent #fs_connect.require-license-key a:visited, #fs_connect.require-license-key #iawp-parent a:visited { |
| 2297 | color: #5123a0; |
| 2298 | } |
| 2299 | |
| 2300 | #iawp-parent .link-purple:hover, #iawp-parent #fs_connect.require-license-key a:hover, #fs_connect.require-license-key #iawp-parent a:hover, #iawp-parent .link-purple:active, #iawp-parent #fs_connect.require-license-key a:active, #fs_connect.require-license-key #iawp-parent a:active, #iawp-parent .link-purple:focus, #iawp-parent #fs_connect.require-license-key a:focus, #fs_connect.require-license-key #iawp-parent a:focus, #iawp-parent .link-purple.active, #iawp-parent #fs_connect.require-license-key a.active, #fs_connect.require-license-key #iawp-parent a.active { |
| 2301 | color: #6c46ae; |
| 2302 | } |
| 2303 | |
| 2304 | #iawp-parent .scroll-to-top { |
| 2305 | z-index: 39; |
| 2306 | text-align: center; |
| 2307 | color: #fff; |
| 2308 | cursor: pointer; |
| 2309 | background-color: #5123a0; |
| 2310 | border: none; |
| 2311 | border-radius: 50%; |
| 2312 | padding: 18px; |
| 2313 | line-height: 1; |
| 2314 | transition: background-color .1s, color .1s; |
| 2315 | position: fixed; |
| 2316 | bottom: 32px; |
| 2317 | right: 32px; |
| 2318 | box-shadow: 0 0 12px rgba(0, 0, 0, .1); |
| 2319 | } |
| 2320 | |
| 2321 | #iawp-parent .scroll-to-top:hover, #iawp-parent .scroll-to-top:active, #iawp-parent .scroll-to-top:focus { |
| 2322 | color: #5123a0; |
| 2323 | background-color: #fff; |
| 2324 | } |
| 2325 | |
| 2326 | #iawp-parent .cell:first-child.hide + .cell.hide + .cell.hide + .cell.hide + .cell.hide + .cell.hide + .cell.hide + .cell, #iawp-parent .cell:first-child.hide + .cell.hide + .cell.hide + .cell.hide + .cell.hide + .cell.hide + .cell, #iawp-parent .cell:first-child.hide + .cell.hide + .cell.hide + .cell.hide + .cell.hide + .cell, #iawp-parent .cell:first-child.hide + .cell.hide + .cell.hide + .cell.hide + .cell, #iawp-parent .cell:first-child.hide + .cell.hide + .cell.hide + .cell, #iawp-parent .cell:first-child.hide + .cell.hide + .cell, #iawp-parent .cell:first-child.hide + .cell, #iawp-parent .cell:first-child { |
| 2327 | padding-left: 48px; |
| 2328 | } |
| 2329 | |
| 2330 | #iawp-parent .cell:first-child.hide + .cell.hide + .cell.hide + .cell.hide + .cell.hide + .cell.hide + .cell.hide + .cell .row-number, #iawp-parent .cell:first-child.hide + .cell.hide + .cell.hide + .cell.hide + .cell.hide + .cell.hide + .cell .row-number, #iawp-parent .cell:first-child.hide + .cell.hide + .cell.hide + .cell.hide + .cell.hide + .cell .row-number, #iawp-parent .cell:first-child.hide + .cell.hide + .cell.hide + .cell.hide + .cell .row-number, #iawp-parent .cell:first-child.hide + .cell.hide + .cell.hide + .cell .row-number, #iawp-parent .cell:first-child.hide + .cell.hide + .cell .row-number, #iawp-parent .cell:first-child.hide + .cell .row-number, #iawp-parent .cell:first-child .row-number { |
| 2331 | display: flex; |
| 2332 | } |
| 2333 | |
| 2334 | #iawp-parent .cell { |
| 2335 | z-index: 3; |
| 2336 | color: #363040; |
| 2337 | padding: 16px 24px; |
| 2338 | font-size: 14px; |
| 2339 | position: relative; |
| 2340 | } |
| 2341 | |
| 2342 | #iawp-parent .cell.hide { |
| 2343 | display: none; |
| 2344 | } |
| 2345 | |
| 2346 | #iawp-parent .cell .animator { |
| 2347 | z-index: 9; |
| 2348 | transition: left .2s ease-in-out; |
| 2349 | position: absolute; |
| 2350 | top: 0; |
| 2351 | bottom: 0; |
| 2352 | left: 100%; |
| 2353 | right: 0; |
| 2354 | } |
| 2355 | |
| 2356 | #iawp-parent .cell .deleted-label { |
| 2357 | opacity: 0; |
| 2358 | margin-left: 4px; |
| 2359 | font-weight: 400; |
| 2360 | } |
| 2361 | |
| 2362 | #iawp-parent .cell .percentage { |
| 2363 | color: #aaa6b3; |
| 2364 | letter-spacing: -.04em; |
| 2365 | margin-left: 4px; |
| 2366 | font-size: 12px; |
| 2367 | } |
| 2368 | |
| 2369 | #iawp-parent .row-number { |
| 2370 | text-align: center; |
| 2371 | color: #9a95a6; |
| 2372 | font-size: 12px; |
| 2373 | font-weight: 400; |
| 2374 | display: none; |
| 2375 | position: absolute; |
| 2376 | right: calc(100% - 32px); |
| 2377 | } |
| 2378 | |
| 2379 | #iawp-parent .row.deleted .cell[data-column="title"] { |
| 2380 | color: #d93b29; |
| 2381 | } |
| 2382 | |
| 2383 | #iawp-parent .row.deleted .cell[data-column="title"]:hover .deleted-label { |
| 2384 | opacity: .5; |
| 2385 | } |
| 2386 | |
| 2387 | #iawp-parent .rows .row:nth-child(2n+1) .cell, #iawp-parent .rows .row:nth-child(2n+1) .cell .animator { |
| 2388 | background-color: #f7f5fa; |
| 2389 | } |
| 2390 | |
| 2391 | #iawp-parent .rows .row:nth-child(2n) .cell, #iawp-parent .rows .row:nth-child(2n) .cell .animator { |
| 2392 | background-color: #fff; |
| 2393 | } |
| 2394 | |
| 2395 | #iawp-parent .rows .cell[data-column="title"], #iawp-parent .rows .cell[data-column="referrer"] { |
| 2396 | font-weight: 700; |
| 2397 | } |
| 2398 | |
| 2399 | #iawp-parent .rows .cell[data-column="url"] { |
| 2400 | color: #9a95a6; |
| 2401 | } |
| 2402 | |
| 2403 | #iawp-parent .rows .cell[data-column="url"] .external-link { |
| 2404 | color: #6d6a73; |
| 2405 | } |
| 2406 | |
| 2407 | #iawp-parent .rows .cell[data-column="url"] .external-link:hover, #iawp-parent .rows .cell[data-column="url"] .external-link:active, #iawp-parent .rows .cell[data-column="url"] .external-link:focus { |
| 2408 | color: #18141f; |
| 2409 | } |
| 2410 | |
| 2411 | #iawp-parent .rows .cell[data-column="type"] .dashicons { |
| 2412 | color: #5123a0; |
| 2413 | } |
| 2414 | |
| 2415 | #iawp-parent .cell-content { |
| 2416 | word-break: break-word; |
| 2417 | align-items: center; |
| 2418 | display: flex; |
| 2419 | } |
| 2420 | |
| 2421 | #iawp-parent .cell-content .dashicons, #iawp-parent .cell-content img { |
| 2422 | margin-right: 6px; |
| 2423 | } |
| 2424 | |
| 2425 | #iawp-parent .cell-content .avatar { |
| 2426 | border-radius: 50%; |
| 2427 | } |
| 2428 | |
| 2429 | #iawp-parent .cell-content .flag { |
| 2430 | width: 32px; |
| 2431 | margin-right: 12px; |
| 2432 | } |
| 2433 | |
| 2434 | #iawp-parent .cell-content .external-link { |
| 2435 | color: #18141f; |
| 2436 | font-size: 13px; |
| 2437 | text-decoration: none; |
| 2438 | transition: color .1s; |
| 2439 | } |
| 2440 | |
| 2441 | #iawp-parent .cell-content .external-link:hover, #iawp-parent .cell-content .external-link:active, #iawp-parent .cell-content .external-link:focus { |
| 2442 | color: #6d6a73; |
| 2443 | } |
| 2444 | |
| 2445 | #iawp-parent .cell-content .external-link .dashicons { |
| 2446 | font-size: 16px; |
| 2447 | transition: color .1s; |
| 2448 | } |
| 2449 | |
| 2450 | #iawp-parent .skeleton-loader:empty { |
| 2451 | width: 100%; |
| 2452 | height: 15px; |
| 2453 | background-color: #ece9f2; |
| 2454 | background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, .5) 50%, rgba(255, 255, 255, 0) 80%), none; |
| 2455 | background-position: 0 0; |
| 2456 | background-repeat: repeat-y; |
| 2457 | background-size: 50px 500px; |
| 2458 | background-attachment: scroll, scroll; |
| 2459 | background-origin: padding-box, padding-box; |
| 2460 | background-clip: border-box, border-box; |
| 2461 | -webkit-animation: shine 1s infinite; |
| 2462 | animation: shine 1s infinite; |
| 2463 | display: block; |
| 2464 | } |
| 2465 | |
| 2466 | #iawp-parent #iawp-parent.dark-mode .skeleton-loader:empty { |
| 2467 | background: linear-gradient(to right, rgba(54, 48, 64, .3), rgba(54, 48, 64, .5) 50%, rgba(54, 48, 64, .3) 80%), #6d6a73; |
| 2468 | } |
| 2469 | |
| 2470 | @-webkit-keyframes shine { |
| 2471 | to { |
| 2472 | background-position: 100% 0; |
| 2473 | } |
| 2474 | } |
| 2475 | |
| 2476 | @keyframes shine { |
| 2477 | to { |
| 2478 | background-position: 100% 0; |
| 2479 | } |
| 2480 | } |
| 2481 | |
| 2482 | #iawp-parent .title-large { |
| 2483 | align-self: center; |
| 2484 | padding: 14px; |
| 2485 | font-size: 21px; |
| 2486 | font-weight: 700; |
| 2487 | } |
| 2488 | |
| 2489 | #iawp-parent .title-med, #iawp-parent .settings-container h2 { |
| 2490 | font-size: 18px; |
| 2491 | font-weight: 700; |
| 2492 | } |
| 2493 | |
| 2494 | #iawp-parent .title-small { |
| 2495 | font-size: 14px; |
| 2496 | font-weight: 700; |
| 2497 | } |
| 2498 | |
| 2499 | #iawp-parent .subtitle-small { |
| 2500 | opacity: .8; |
| 2501 | font-size: 12px; |
| 2502 | } |
| 2503 | |
| 2504 | #iawp-parent .tooltip-parent:hover .tooltip { |
| 2505 | opacity: 1; |
| 2506 | visibility: visible; |
| 2507 | } |
| 2508 | |
| 2509 | #iawp-parent .tooltip { |
| 2510 | color: #fff; |
| 2511 | opacity: 0; |
| 2512 | visibility: hidden; |
| 2513 | background: #18141f; |
| 2514 | border-radius: 3px; |
| 2515 | padding: 4px 9px 5px; |
| 2516 | font-size: 12px; |
| 2517 | position: absolute; |
| 2518 | top: 0; |
| 2519 | } |
| 2520 | |
| 2521 | #iawp-parent .tooltip.left { |
| 2522 | right: 100%; |
| 2523 | } |
| 2524 | |
| 2525 | #iawp-parent .geo-message { |
| 2526 | margin-left: 26px; |
| 2527 | } |
| 2528 | |
| 2529 | @-webkit-keyframes reloadBgDarkMode { |
| 2530 | 0% { |
| 2531 | background-color: #18141f; |
| 2532 | } |
| 2533 | |
| 2534 | 20% { |
| 2535 | background-color: #1f1a28; |
| 2536 | } |
| 2537 | |
| 2538 | 100% { |
| 2539 | background-color: #18141f; |
| 2540 | } |
| 2541 | } |
| 2542 | |
| 2543 | @keyframes reloadBgDarkMode { |
| 2544 | 0% { |
| 2545 | background-color: #18141f; |
| 2546 | } |
| 2547 | |
| 2548 | 20% { |
| 2549 | background-color: #1f1a28; |
| 2550 | } |
| 2551 | |
| 2552 | 100% { |
| 2553 | background-color: #18141f; |
| 2554 | } |
| 2555 | } |
| 2556 | |
| 2557 | .iawp-dark-mode #iawp-parent { |
| 2558 | background-color: #18141f; |
| 2559 | } |
| 2560 | |
| 2561 | .iawp-dark-mode #iawp-parent .stat { |
| 2562 | color: #fff; |
| 2563 | background-color: #363040; |
| 2564 | border-color: #363040; |
| 2565 | } |
| 2566 | |
| 2567 | .iawp-dark-mode #iawp-parent .stat.unfiltered { |
| 2568 | background-color: #1f1a28; |
| 2569 | border-color: #1f1a28; |
| 2570 | } |
| 2571 | |
| 2572 | .iawp-dark-mode #iawp-parent .legend-title { |
| 2573 | color: #fff; |
| 2574 | } |
| 2575 | |
| 2576 | .iawp-dark-mode #iawp-parent .legend-item-for-views { |
| 2577 | background-color: rgba(239, 232, 250, .2); |
| 2578 | } |
| 2579 | |
| 2580 | .iawp-dark-mode #iawp-parent .chart-inner { |
| 2581 | color: #fff; |
| 2582 | background-color: #363040; |
| 2583 | border-color: #363040; |
| 2584 | } |
| 2585 | |
| 2586 | .iawp-dark-mode #iawp-parent .data-error { |
| 2587 | color: #dedae6; |
| 2588 | background-color: #363040; |
| 2589 | } |
| 2590 | |
| 2591 | .iawp-dark-mode #iawp-parent .sort-button { |
| 2592 | color: #fff; |
| 2593 | } |
| 2594 | |
| 2595 | .iawp-dark-mode #iawp-parent .data-table { |
| 2596 | border-color: #363040; |
| 2597 | } |
| 2598 | |
| 2599 | .iawp-dark-mode #iawp-parent .columns .cell { |
| 2600 | background-color: #1f1a28; |
| 2601 | border-bottom: 1px solid #6d6a73; |
| 2602 | } |
| 2603 | |
| 2604 | .iawp-dark-mode #iawp-parent .cell { |
| 2605 | color: #dedae6; |
| 2606 | } |
| 2607 | |
| 2608 | .iawp-dark-mode #iawp-parent .rows .row:nth-child(2n+1) .cell, .iawp-dark-mode #iawp-parent .rows .row:nth-child(2n+1) .cell .animator { |
| 2609 | background-color: #363040; |
| 2610 | } |
| 2611 | |
| 2612 | .iawp-dark-mode #iawp-parent .rows .row:nth-child(2n) .cell, .iawp-dark-mode #iawp-parent .rows .row:nth-child(2n) .cell .animator { |
| 2613 | background-color: #1f1a28; |
| 2614 | } |
| 2615 | |
| 2616 | .iawp-dark-mode #iawp-parent .rows .external-link { |
| 2617 | color: #dedae6; |
| 2618 | } |
| 2619 | |
| 2620 | .iawp-dark-mode #iawp-parent .cell[data-column="url"] { |
| 2621 | color: #6d6a73; |
| 2622 | } |
| 2623 | |
| 2624 | .iawp-dark-mode #iawp-parent .cell[data-column="url"] .external-link { |
| 2625 | color: #9a95a6; |
| 2626 | } |
| 2627 | |
| 2628 | .iawp-dark-mode #iawp-parent .cell[data-column="url"] .external-link:hover, .iawp-dark-mode #iawp-parent .cell[data-column="url"] .external-link:active, .iawp-dark-mode #iawp-parent .cell[data-column="url"] .external-link:focus, .iawp-dark-mode #iawp-parent .cell-content .external-link { |
| 2629 | color: #dedae6; |
| 2630 | } |
| 2631 | |
| 2632 | .iawp-dark-mode #iawp-parent .cell-content .external-link:hover, .iawp-dark-mode #iawp-parent .cell-content .external-link:active, .iawp-dark-mode #iawp-parent .cell-content .external-link:focus { |
| 2633 | color: #f7f5fa; |
| 2634 | } |
| 2635 | |
| 2636 | .iawp-dark-mode #iawp-parent .skeleton-loader:empty { |
| 2637 | background: linear-gradient(to right, rgba(54, 48, 64, .7), rgba(54, 48, 64, .5) 50%, rgba(54, 48, 64, .7) 80%), #6d6a73; |
| 2638 | } |
| 2639 | |
| 2640 | .iawp-dark-mode #iawp-parent .real-time-dashboard.refreshed:after { |
| 2641 | -webkit-animation: reloadBgDarkMode 1s forwards; |
| 2642 | animation: reloadBgDarkMode 1s forwards; |
| 2643 | } |
| 2644 | |
| 2645 | .iawp-dark-mode #iawp-parent .real-time-dashboard .learn-more { |
| 2646 | color: #9a95a6; |
| 2647 | } |
| 2648 | |
| 2649 | .iawp-dark-mode #iawp-parent .real-time-dashboard .iawp-heading { |
| 2650 | color: #fff; |
| 2651 | } |
| 2652 | |
| 2653 | .iawp-dark-mode #iawp-parent .real-time-dashboard .most-popular-list { |
| 2654 | color: #fff; |
| 2655 | background-color: #363040; |
| 2656 | border-color: #363040; |
| 2657 | } |
| 2658 | |
| 2659 | .iawp-dark-mode #iawp-parent .real-time-dashboard .most-popular-list li { |
| 2660 | border-bottom-color: #6d6a73; |
| 2661 | } |
| 2662 | |
| 2663 | .iawp-dark-mode #iawp-parent .real-time-dashboard .most-popular-list .resource:after { |
| 2664 | background: linear-gradient(90deg, rgba(54, 48, 64, .4) 0%, #363040 60%); |
| 2665 | } |
| 2666 | |
| 2667 | @media (min-width: 783px) { |
| 2668 | #iawp-parent { |
| 2669 | margin-left: -20px; |
| 2670 | } |
| 2671 | } |
| 2672 | |
| 2673 | .toplevel_page_independent-analytics #fs_connect .iawp-button, .toplevel_page_independent-analytics #fs_connect .button { |
| 2674 | cursor: pointer; |
| 2675 | background: none; |
| 2676 | border: 1px solid rgba(0, 0, 0, 0); |
| 2677 | border-radius: 3px; |
| 2678 | align-items: center; |
| 2679 | margin: 0; |
| 2680 | padding: 12px 16px; |
| 2681 | font-size: 14px; |
| 2682 | line-height: 1; |
| 2683 | text-decoration: none; |
| 2684 | transition: color .1s, background-color .1s, border-color .1s; |
| 2685 | display: inline-flex; |
| 2686 | } |
| 2687 | |
| 2688 | .toplevel_page_independent-analytics #fs_connect .iawp-button .dashicons, .toplevel_page_independent-analytics #fs_connect .button .dashicons { |
| 2689 | margin-right: 6px; |
| 2690 | transition: color .1s; |
| 2691 | } |
| 2692 | |
| 2693 | .toplevel_page_independent-analytics #fs_connect .iawp-button .count, .toplevel_page_independent-analytics #fs_connect .button .count { |
| 2694 | color: #5123a0; |
| 2695 | background: #fff; |
| 2696 | border-radius: 50%; |
| 2697 | justify-content: center; |
| 2698 | align-items: center; |
| 2699 | font-size: 12px; |
| 2700 | font-weight: 700; |
| 2701 | line-height: 1; |
| 2702 | display: flex; |
| 2703 | } |
| 2704 | |
| 2705 | .toplevel_page_independent-analytics #fs_connect .iawp-button .count:not(:empty), .toplevel_page_independent-analytics #fs_connect .button .count:not(:empty) { |
| 2706 | height: 18px; |
| 2707 | width: 18px; |
| 2708 | margin-left: 8px; |
| 2709 | margin-right: -2px; |
| 2710 | } |
| 2711 | |
| 2712 | .toplevel_page_independent-analytics #fs_connect .iawp-button .disabled-button-text, .toplevel_page_independent-analytics #fs_connect .button .disabled-button-text { |
| 2713 | display: none; |
| 2714 | } |
| 2715 | |
| 2716 | .toplevel_page_independent-analytics #fs_connect .iawp-button:disabled, .toplevel_page_independent-analytics #fs_connect .button:disabled { |
| 2717 | cursor: default; |
| 2718 | } |
| 2719 | |
| 2720 | .toplevel_page_independent-analytics #fs_connect .iawp-button:disabled .disabled-button-text, .toplevel_page_independent-analytics #fs_connect .button:disabled .disabled-button-text { |
| 2721 | display: inline; |
| 2722 | } |
| 2723 | |
| 2724 | .toplevel_page_independent-analytics #fs_connect .iawp-button:disabled .enabled-button-text, .toplevel_page_independent-analytics #fs_connect .button:disabled .enabled-button-text { |
| 2725 | display: none; |
| 2726 | } |
| 2727 | |
| 2728 | .toplevel_page_independent-analytics #fs_connect .iawp-button.white, .toplevel_page_independent-analytics #fs_connect .white.button { |
| 2729 | color: #5123a0; |
| 2730 | background-color: #fff; |
| 2731 | border-color: #fff; |
| 2732 | } |
| 2733 | |
| 2734 | .toplevel_page_independent-analytics #fs_connect .iawp-button.white:hover, .toplevel_page_independent-analytics #fs_connect .white.button:hover, .toplevel_page_independent-analytics #fs_connect .iawp-button.white:active, .toplevel_page_independent-analytics #fs_connect .white.button:active, .toplevel_page_independent-analytics #fs_connect .iawp-button.white:focus, .toplevel_page_independent-analytics #fs_connect .white.button:focus, .toplevel_page_independent-analytics #fs_connect .iawp-button.white .open, .toplevel_page_independent-analytics #fs_connect .white.button .open { |
| 2735 | color: #6c46ae; |
| 2736 | } |
| 2737 | |
| 2738 | .toplevel_page_independent-analytics #fs_connect .iawp-button.purple, .toplevel_page_independent-analytics #fs_connect .iawp-button.button-primary, .toplevel_page_independent-analytics #fs_connect .purple.button, .toplevel_page_independent-analytics #fs_connect .button.button-primary, .toplevel_page_independent-analytics #fs_connect .iawp-button-purple, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .iawp-button.active, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .active.button, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .iawp-button.active, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .active.button { |
| 2739 | color: #fff; |
| 2740 | background-color: #5123a0; |
| 2741 | border-color: #5123a0; |
| 2742 | } |
| 2743 | |
| 2744 | .toplevel_page_independent-analytics #fs_connect .iawp-button.purple:hover, .toplevel_page_independent-analytics #fs_connect .iawp-button.button-primary:hover, .toplevel_page_independent-analytics #fs_connect .purple.button:hover, .toplevel_page_independent-analytics #fs_connect .button.button-primary:hover, .toplevel_page_independent-analytics #fs_connect .iawp-button.purple:active, .toplevel_page_independent-analytics #fs_connect .iawp-button.button-primary:active, .toplevel_page_independent-analytics #fs_connect .purple.button:active, .toplevel_page_independent-analytics #fs_connect .button.button-primary:active, .toplevel_page_independent-analytics #fs_connect .iawp-button.purple:focus, .toplevel_page_independent-analytics #fs_connect .iawp-button.button-primary:focus, .toplevel_page_independent-analytics #fs_connect .purple.button:focus, .toplevel_page_independent-analytics #fs_connect .button.button-primary:focus, .toplevel_page_independent-analytics #fs_connect .iawp-button.purple .open, .toplevel_page_independent-analytics #fs_connect .iawp-button.button-primary .open, .toplevel_page_independent-analytics #fs_connect .purple.button .open, .toplevel_page_independent-analytics #fs_connect .button.button-primary .open, .toplevel_page_independent-analytics #fs_connect .iawp-button-purple:hover, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .iawp-button.active:hover, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .active.button:hover, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .iawp-button.active:hover, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .active.button:hover, .toplevel_page_independent-analytics #fs_connect .iawp-button-purple:active, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .iawp-button.active:active, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .active.button:active, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .iawp-button.active:active, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .active.button:active, .toplevel_page_independent-analytics #fs_connect .iawp-button-purple:focus, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .iawp-button.active:focus, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .active.button:focus, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .iawp-button.active:focus, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .active.button:focus, .toplevel_page_independent-analytics #fs_connect .iawp-button-purple .open, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .iawp-button.active .open, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .active.button .open, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .iawp-button.active .open, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .active.button .open { |
| 2745 | color: #fff; |
| 2746 | background-color: #6c46ae; |
| 2747 | border-color: #6c46ae; |
| 2748 | } |
| 2749 | |
| 2750 | .toplevel_page_independent-analytics #fs_connect .iawp-button.purple:disabled, .toplevel_page_independent-analytics #fs_connect .iawp-button.button-primary:disabled, .toplevel_page_independent-analytics #fs_connect .purple.button:disabled, .toplevel_page_independent-analytics #fs_connect .button.button-primary:disabled, .toplevel_page_independent-analytics #fs_connect .iawp-button-purple:disabled, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .iawp-button.active:disabled, .toplevel_page_independent-analytics #fs_connect #iawp-parent .relative-dates .active.button:disabled, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .iawp-button.active:disabled, #iawp-parent .relative-dates .toplevel_page_independent-analytics #fs_connect .active.button:disabled { |
| 2751 | color: #9a95a6; |
| 2752 | background-color: #f7f5fa; |
| 2753 | border-color: #ece9f2; |
| 2754 | } |
| 2755 | |
| 2756 | .toplevel_page_independent-analytics #fs_connect .iawp-button.red, .toplevel_page_independent-analytics #fs_connect .red.button { |
| 2757 | color: #fff; |
| 2758 | background-color: #d93b29; |
| 2759 | border-color: #d93b29; |
| 2760 | } |
| 2761 | |
| 2762 | .toplevel_page_independent-analytics #fs_connect .iawp-button.red:hover, .toplevel_page_independent-analytics #fs_connect .red.button:hover, .toplevel_page_independent-analytics #fs_connect .iawp-button.red:active, .toplevel_page_independent-analytics #fs_connect .red.button:active, .toplevel_page_independent-analytics #fs_connect .iawp-button.red:focus, .toplevel_page_independent-analytics #fs_connect .red.button:focus, .toplevel_page_independent-analytics #fs_connect .iawp-button.red .open, .toplevel_page_independent-analytics #fs_connect .red.button .open { |
| 2763 | color: #fff; |
| 2764 | background-color: #d94e3f; |
| 2765 | border-color: #d94e3f; |
| 2766 | } |
| 2767 | |
| 2768 | .toplevel_page_independent-analytics #fs_connect .iawp-button.orange, .toplevel_page_independent-analytics #fs_connect .orange.button { |
| 2769 | color: #fff; |
| 2770 | background-color: #f69d0a; |
| 2771 | border-color: #f69d0a; |
| 2772 | } |
| 2773 | |
| 2774 | .toplevel_page_independent-analytics #fs_connect .iawp-button.orange:hover, .toplevel_page_independent-analytics #fs_connect .orange.button:hover, .toplevel_page_independent-analytics #fs_connect .iawp-button.orange:active, .toplevel_page_independent-analytics #fs_connect .orange.button:active, .toplevel_page_independent-analytics #fs_connect .iawp-button.orange:focus, .toplevel_page_independent-analytics #fs_connect .orange.button:focus, .toplevel_page_independent-analytics #fs_connect .iawp-button.orange .open, .toplevel_page_independent-analytics #fs_connect .orange.button .open { |
| 2775 | color: #fff; |
| 2776 | background-color: #ffa826; |
| 2777 | border-color: #ffa826; |
| 2778 | } |
| 2779 | |
| 2780 | .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-white, .toplevel_page_independent-analytics #fs_connect .ghost-white.button { |
| 2781 | color: #fff; |
| 2782 | border-color: #fff; |
| 2783 | } |
| 2784 | |
| 2785 | .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-white:hover, .toplevel_page_independent-analytics #fs_connect .ghost-white.button:hover, .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-white:active, .toplevel_page_independent-analytics #fs_connect .ghost-white.button:active, .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-white:focus, .toplevel_page_independent-analytics #fs_connect .ghost-white.button:focus, .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-white.open, .toplevel_page_independent-analytics #fs_connect .ghost-white.open.button { |
| 2786 | color: #5123a0; |
| 2787 | background-color: #fff; |
| 2788 | border-color: #fff; |
| 2789 | } |
| 2790 | |
| 2791 | .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-white:hover .count, .toplevel_page_independent-analytics #fs_connect .ghost-white.button:hover .count, .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-white:active .count, .toplevel_page_independent-analytics #fs_connect .ghost-white.button:active .count, .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-white:focus .count, .toplevel_page_independent-analytics #fs_connect .ghost-white.button:focus .count, .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-white.open .count, .toplevel_page_independent-analytics #fs_connect .ghost-white.open.button .count { |
| 2792 | color: #fff; |
| 2793 | background: #5123a0; |
| 2794 | } |
| 2795 | |
| 2796 | .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-purple, .toplevel_page_independent-analytics #fs_connect .button { |
| 2797 | color: #5123a0; |
| 2798 | border-color: #5123a0; |
| 2799 | } |
| 2800 | |
| 2801 | .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-purple:hover, .toplevel_page_independent-analytics #fs_connect .button:hover, .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-purple:active, .toplevel_page_independent-analytics #fs_connect .button:active, .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-purple:focus, .toplevel_page_independent-analytics #fs_connect .button:focus, .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-purple .open, .toplevel_page_independent-analytics #fs_connect .button .open { |
| 2802 | color: #fff; |
| 2803 | background-color: #5123a0; |
| 2804 | border-color: #5123a0; |
| 2805 | } |
| 2806 | |
| 2807 | .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-purple:disabled, .toplevel_page_independent-analytics #fs_connect .button:disabled { |
| 2808 | color: #9a95a6; |
| 2809 | background-color: #f7f5fa; |
| 2810 | border-color: #ece9f2; |
| 2811 | } |
| 2812 | |
| 2813 | .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-red, .toplevel_page_independent-analytics #fs_connect .ghost-red.button { |
| 2814 | color: #d93b29; |
| 2815 | border-color: #d93b29; |
| 2816 | } |
| 2817 | |
| 2818 | .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-red:hover, .toplevel_page_independent-analytics #fs_connect .ghost-red.button:hover, .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-red:active, .toplevel_page_independent-analytics #fs_connect .ghost-red.button:active, .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-red:focus, .toplevel_page_independent-analytics #fs_connect .ghost-red.button:focus, .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-red .open, .toplevel_page_independent-analytics #fs_connect .ghost-red.button .open { |
| 2819 | color: #fff; |
| 2820 | background-color: #d93b29; |
| 2821 | border-color: #d93b29; |
| 2822 | } |
| 2823 | |
| 2824 | .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-red:disabled, .toplevel_page_independent-analytics #fs_connect .ghost-red.button:disabled { |
| 2825 | color: #9a95a6; |
| 2826 | background-color: #f7f5fa; |
| 2827 | border-color: #ece9f2; |
| 2828 | } |
| 2829 | |
| 2830 | .toplevel_page_independent-analytics #fs_connect .iawp-button.text, .toplevel_page_independent-analytics #fs_connect .text.button { |
| 2831 | color: #5123a0; |
| 2832 | padding: 0; |
| 2833 | } |
| 2834 | |
| 2835 | .toplevel_page_independent-analytics #fs_connect .date-picker { |
| 2836 | padding: 14px 16px 14px 36px; |
| 2837 | } |
| 2838 | |
| 2839 | .toplevel_page_independent-analytics #fs_connect .sort-button { |
| 2840 | color: #18141f; |
| 2841 | cursor: pointer; |
| 2842 | background: none; |
| 2843 | border: none; |
| 2844 | align-items: center; |
| 2845 | padding: 1px; |
| 2846 | display: flex; |
| 2847 | } |
| 2848 | |
| 2849 | .toplevel_page_independent-analytics #fs_connect .sort-button .dashicons-arrow-up, .toplevel_page_independent-analytics #fs_connect .sort-button .dashicons-arrow-down { |
| 2850 | display: none; |
| 2851 | } |
| 2852 | |
| 2853 | .toplevel_page_independent-analytics #fs_connect .sort-button .name { |
| 2854 | font-weight: 700; |
| 2855 | } |
| 2856 | |
| 2857 | .toplevel_page_independent-analytics #fs_connect .sort-button .dashicons { |
| 2858 | color: #c5c2cc; |
| 2859 | } |
| 2860 | |
| 2861 | .toplevel_page_independent-analytics #fs_connect .sort-button[data-sort-direction="asc"] .dashicons, .toplevel_page_independent-analytics #fs_connect .sort-button[data-sort-direction="desc"] .dashicons { |
| 2862 | color: #5123a0; |
| 2863 | } |
| 2864 | |
| 2865 | .toplevel_page_independent-analytics #fs_connect .sort-button[data-sort-direction="asc"] .dashicons-arrow-up { |
| 2866 | display: inline-block; |
| 2867 | } |
| 2868 | |
| 2869 | .toplevel_page_independent-analytics #fs_connect .sort-button[data-sort-direction="asc"] .dashicons-arrow-down, .toplevel_page_independent-analytics #fs_connect .sort-button[data-sort-direction="asc"] .dashicons-arrow-right { |
| 2870 | display: none; |
| 2871 | } |
| 2872 | |
| 2873 | .toplevel_page_independent-analytics #fs_connect .sort-button[data-sort-direction="desc"] .dashicons-arrow-down { |
| 2874 | display: inline-block; |
| 2875 | } |
| 2876 | |
| 2877 | .toplevel_page_independent-analytics #fs_connect .sort-button[data-sort-direction="desc"] .dashicons-arrow-up, .toplevel_page_independent-analytics #fs_connect .sort-button[data-sort-direction="desc"] .dashicons-arrow-right { |
| 2878 | display: none; |
| 2879 | } |
| 2880 | |
| 2881 | .toplevel_page_independent-analytics #fs_connect .delete-button { |
| 2882 | z-index: 3; |
| 2883 | color: #fff; |
| 2884 | cursor: pointer; |
| 2885 | background-color: #5123a0; |
| 2886 | border: none; |
| 2887 | border-radius: 50%; |
| 2888 | padding: 2px; |
| 2889 | transition: background-color .1s, color .1s; |
| 2890 | position: absolute; |
| 2891 | top: 12px; |
| 2892 | right: -12px; |
| 2893 | } |
| 2894 | |
| 2895 | .toplevel_page_independent-analytics #fs_connect .delete-button:hover, .toplevel_page_independent-analytics #fs_connect .delete-button .open { |
| 2896 | background-color: #6c46ae; |
| 2897 | } |
| 2898 | |
| 2899 | .link-dark { |
| 2900 | color: #363040; |
| 2901 | text-decoration: none; |
| 2902 | } |
| 2903 | |
| 2904 | .link-dark:link, .link-dark:visited { |
| 2905 | color: #363040; |
| 2906 | } |
| 2907 | |
| 2908 | .link-dark:hover, .link-dark:active, .link-dark:focus, .link-dark.active { |
| 2909 | color: #18141f; |
| 2910 | } |
| 2911 | |
| 2912 | .link-purple, #fs_connect.require-license-key .fs-freemium-licensing a, #fs_connect.require-license-key a { |
| 2913 | color: #5123a0; |
| 2914 | text-decoration: none; |
| 2915 | } |
| 2916 | |
| 2917 | .link-purple:link, #fs_connect.require-license-key a:link, .link-purple:visited, #fs_connect.require-license-key a:visited { |
| 2918 | color: #5123a0; |
| 2919 | } |
| 2920 | |
| 2921 | .link-purple:hover, #fs_connect.require-license-key a:hover, .link-purple:active, #fs_connect.require-license-key a:active, .link-purple:focus, #fs_connect.require-license-key a:focus, .link-purple.active, #fs_connect.require-license-key a.active { |
| 2922 | color: #6c46ae; |
| 2923 | } |
| 2924 | |
| 2925 | #fs_connect select, #fs_connect input { |
| 2926 | background-color: #fff; |
| 2927 | border: 1px solid #c5c2cc; |
| 2928 | border-radius: 3px; |
| 2929 | box-shadow: 0 1px 1px rgba(0, 0, 0, .1); |
| 2930 | } |
| 2931 | |
| 2932 | #fs_connect select:focus, #fs_connect input:focus { |
| 2933 | border-color: #5123a0; |
| 2934 | outline: none; |
| 2935 | box-shadow: 0 1px 1px rgba(0, 0, 0, .1); |
| 2936 | } |
| 2937 | |
| 2938 | #fs_connect select.error, #fs_connect input.error { |
| 2939 | border-color: #d93b29; |
| 2940 | } |
| 2941 | |
| 2942 | #fs_connect input { |
| 2943 | padding: 2px 12px; |
| 2944 | } |
| 2945 | |
| 2946 | #fs_connect select { |
| 2947 | padding: 2px 24px 2px 12px; |
| 2948 | } |
| 2949 | |
| 2950 | #fs_connect select:hover, #fs_connect select:focus { |
| 2951 | color: #5123a0; |
| 2952 | } |
| 2953 | |
| 2954 | #fs_connect .block-input { |
| 2955 | width: 100%; |
| 2956 | margin-bottom: 12px; |
| 2957 | display: block; |
| 2958 | } |
| 2959 | |
| 2960 | #fs_connect ::-webkit-input-placeholder { |
| 2961 | color: #aaa6b3; |
| 2962 | opacity: 1; |
| 2963 | } |
| 2964 | |
| 2965 | #fs_connect ::-ms-input-placeholder { |
| 2966 | color: #aaa6b3; |
| 2967 | opacity: 1; |
| 2968 | } |
| 2969 | |
| 2970 | #fs_connect ::placeholder { |
| 2971 | color: #aaa6b3; |
| 2972 | opacity: 1; |
| 2973 | } |
| 2974 | |
| 2975 | #fs_connect #fs_license_key { |
| 2976 | padding: 6px 14px; |
| 2977 | font-size: 18px; |
| 2978 | } |
| 2979 | |
| 2980 | #fs_connect .fs-content .fs-license-key-container { |
| 2981 | width: auto; |
| 2982 | margin: 12px 0; |
| 2983 | } |
| 2984 | |
| 2985 | #fs_connect .fs-content .fs-license-key-container .dashicons { |
| 2986 | color: #9a95a6; |
| 2987 | font-size: 23px; |
| 2988 | top: 13px; |
| 2989 | right: 14px; |
| 2990 | } |
| 2991 | |
| 2992 | #fs_connect.require-license-key { |
| 2993 | max-width: 700px !important; |
| 2994 | } |
| 2995 | |
| 2996 | #fs_connect.require-license-key .fs-visual { |
| 2997 | padding: 10px 0 12px !important; |
| 2998 | } |
| 2999 | |
| 3000 | #fs_connect.require-license-key .fs-content { |
| 3001 | background-color: #f7f5fa; |
| 3002 | } |
| 3003 | |
| 3004 | #fs_connect.require-license-key a.show-license-resend-modal { |
| 3005 | margin-top: 8px; |
| 3006 | } |
| 3007 | |
| 3008 | #fs_connect.require-license-key #license_issues_link { |
| 3009 | align-items: center; |
| 3010 | margin-top: 0; |
| 3011 | font-size: 14px; |
| 3012 | display: flex; |
| 3013 | } |
| 3014 | |
| 3015 | #fs_connect.require-license-key .fs-actions { |
| 3016 | padding: 12px 35px !important; |
| 3017 | } |
| 3018 | |
| 3019 | #fs_connect.require-license-key .fs-actions form { |
| 3020 | order: initial !important; |
| 3021 | } |
| 3022 | |
| 3023 | #fs_connect.require-license-key .fs-trigger { |
| 3024 | padding: 0 !important; |
| 3025 | position: static !important; |
| 3026 | } |
| 3027 | |
| 3028 | #fs_connect.require-license-key .fs-freemium-licensing { |
| 3029 | color: #363040; |
| 3030 | background: #dedae6; |
| 3031 | } |
| 3032 | |
| 3033 | #fs_connect.require-license-key .fs-freemium-licensing a { |
| 3034 | text-decoration: underline; |
| 3035 | } |
| 3036 | |
| 3037 | #fs_connect.require-license-key .fs-freemium-licensing p { |
| 3038 | text-align: left; |
| 3039 | padding-left: 27px; |
| 3040 | } |
| 3041 | |
| 3042 | #fs_connect.require-license-key .fs-permissions .fs-license-sync-disclaimer { |
| 3043 | text-align: left; |
| 3044 | padding: 24px 35px; |
| 3045 | } |
| 3046 | |
| 3047 | #fs_connect.require-license-key .fs-terms { |
| 3048 | bottom: 4px !important; |
| 3049 | } |
| 3050 | |
| 3051 | .toplevel_page_independent-analytics #fs_connect .button-primary:after { |
| 3052 | display: none; |
| 3053 | } |
| 3054 | |
| 3055 | .iawp-not-real-yet #fs_connect, .toplevel_page_independent-analytics #fs_connect { |
| 3056 | max-width: 1200px; |
| 3057 | width: auto; |
| 3058 | background-color: #fff; |
| 3059 | margin: 20px 20px 0 2px; |
| 3060 | position: relative; |
| 3061 | } |
| 3062 | |
| 3063 | .iawp-not-real-yet #fs_connect .fs-visual, .toplevel_page_independent-analytics #fs_connect .fs-visual { |
| 3064 | background-color: rgba(0, 0, 0, 0); |
| 3065 | align-content: center; |
| 3066 | align-items: center; |
| 3067 | margin: 0 35px; |
| 3068 | padding: 20px 0 0; |
| 3069 | display: flex; |
| 3070 | } |
| 3071 | |
| 3072 | .iawp-not-real-yet #fs_connect .fs-visual .fs-site-icon, .toplevel_page_independent-analytics #fs_connect .fs-visual .fs-site-icon { |
| 3073 | width: 340px; |
| 3074 | border: 0; |
| 3075 | margin: 0; |
| 3076 | position: relative; |
| 3077 | top: auto; |
| 3078 | bottom: auto; |
| 3079 | left: auto; |
| 3080 | right: auto; |
| 3081 | } |
| 3082 | |
| 3083 | .iawp-not-real-yet #fs_connect .fs-visual .fs-connect-logo, .iawp-not-real-yet #fs_connect .fs-visual .fs-first.dashicons-plus, .iawp-not-real-yet #fs_connect .fs-visual .fs-plugin-icon, .iawp-not-real-yet #fs_connect .fs-visual .fs-second.dashicons-plus, .toplevel_page_independent-analytics #fs_connect .fs-visual .fs-connect-logo, .toplevel_page_independent-analytics #fs_connect .fs-visual .fs-first.dashicons-plus, .toplevel_page_independent-analytics #fs_connect .fs-visual .fs-plugin-icon, .toplevel_page_independent-analytics #fs_connect .fs-visual .fs-second.dashicons-plus { |
| 3084 | display: none; |
| 3085 | } |
| 3086 | |
| 3087 | .iawp-not-real-yet #fs_connect .fs-visual .fs-site-icon .dashicons, .toplevel_page_independent-analytics #fs_connect .fs-visual .fs-site-icon .dashicons { |
| 3088 | visibility: hidden; |
| 3089 | } |
| 3090 | |
| 3091 | .iawp-not-real-yet #fs_connect .fs-visual .fs-site-icon:before, .toplevel_page_independent-analytics #fs_connect .fs-visual .fs-site-icon:before { |
| 3092 | content: ""; |
| 3093 | height: 100%; |
| 3094 | width: 100%; |
| 3095 | background-image: url("../logo.07c3a4ab.svg"); |
| 3096 | background-position: 0; |
| 3097 | background-repeat: no-repeat; |
| 3098 | background-size: 85%; |
| 3099 | display: block; |
| 3100 | position: absolute; |
| 3101 | } |
| 3102 | |
| 3103 | .iawp-not-real-yet #fs_connect .fs-visual .fs-plugin-icon img, .toplevel_page_independent-analytics #fs_connect .fs-visual .fs-plugin-icon img { |
| 3104 | visibility: hidden; |
| 3105 | } |
| 3106 | |
| 3107 | .iawp-not-real-yet #fs_connect .fs-visual .fs-plugin-icon:before, .toplevel_page_independent-analytics #fs_connect .fs-visual .fs-plugin-icon:before { |
| 3108 | content: ""; |
| 3109 | height: 100%; |
| 3110 | width: 100%; |
| 3111 | background-position: 50%; |
| 3112 | background-repeat: no-repeat; |
| 3113 | background-size: 75%; |
| 3114 | display: block; |
| 3115 | position: absolute; |
| 3116 | } |
| 3117 | |
| 3118 | .iawp-not-real-yet #fs_connect .fs-content, .toplevel_page_independent-analytics #fs_connect .fs-content { |
| 3119 | padding: 20px 35px; |
| 3120 | } |
| 3121 | |
| 3122 | .iawp-not-real-yet #fs_connect .fs-content h3, .toplevel_page_independent-analytics #fs_connect .fs-content h3 { |
| 3123 | margin-top: 0; |
| 3124 | font-size: 1.7em; |
| 3125 | } |
| 3126 | |
| 3127 | .iawp-not-real-yet #fs_connect .fs-content p, .toplevel_page_independent-analytics #fs_connect .fs-content p { |
| 3128 | margin-bottom: 20px; |
| 3129 | } |
| 3130 | |
| 3131 | .iawp-not-real-yet #fs_connect .fs-content p:first-child, .iawp-not-real-yet #fs_connect .fs-content p:last-child, .iawp-not-real-yet #fs_connect .fs-content p:last-of-type, .toplevel_page_independent-analytics #fs_connect .fs-content p:first-child, .toplevel_page_independent-analytics #fs_connect .fs-content p:last-child, .toplevel_page_independent-analytics #fs_connect .fs-content p:last-of-type { |
| 3132 | margin-bottom: 0; |
| 3133 | } |
| 3134 | |
| 3135 | .iawp-not-real-yet #fs_connect .fs-content .iawp-powered-by-freemius, .toplevel_page_independent-analytics #fs_connect .fs-content .iawp-powered-by-freemius { |
| 3136 | height: 30px; |
| 3137 | width: 184px; |
| 3138 | background-position: 100%; |
| 3139 | background-repeat: no-repeat; |
| 3140 | background-size: 100px; |
| 3141 | font-size: 1.1em; |
| 3142 | font-style: italic; |
| 3143 | line-height: 30px; |
| 3144 | position: absolute; |
| 3145 | bottom: 20px; |
| 3146 | } |
| 3147 | |
| 3148 | .iawp-not-real-yet #fs_connect .fs-actions, .toplevel_page_independent-analytics #fs_connect .fs-actions { |
| 3149 | background-color: #fff; |
| 3150 | flex-flow: wrap; |
| 3151 | padding: 0 35px 70px; |
| 3152 | display: flex; |
| 3153 | } |
| 3154 | |
| 3155 | .iawp-not-real-yet #fs_connect .fs-actions form, .toplevel_page_independent-analytics #fs_connect .fs-actions form { |
| 3156 | float: none; |
| 3157 | order: 1; |
| 3158 | margin-right: 15px; |
| 3159 | } |
| 3160 | |
| 3161 | .iawp-not-real-yet #fs_connect .fs-actions #skip_activation, .toplevel_page_independent-analytics #fs_connect .fs-actions #skip_activation { |
| 3162 | float: none; |
| 3163 | order: 2; |
| 3164 | } |
| 3165 | |
| 3166 | .iawp-not-real-yet #fs_connect .fs-actions .button, .toplevel_page_independent-analytics #fs_connect .fs-actions .button { |
| 3167 | height: auto; |
| 3168 | padding: 7px 35px; |
| 3169 | } |
| 3170 | |
| 3171 | .iawp-not-real-yet #fs_connect .fs-actions .button.button-primary, .toplevel_page_independent-analytics #fs_connect .fs-actions .button.button-primary { |
| 3172 | padding-left: 35px; |
| 3173 | padding-right: 35px; |
| 3174 | } |
| 3175 | |
| 3176 | .iawp-not-real-yet #fs_connect .fs-permissions, .toplevel_page_independent-analytics #fs_connect .fs-permissions { |
| 3177 | padding: 0; |
| 3178 | position: relative; |
| 3179 | } |
| 3180 | |
| 3181 | .iawp-not-real-yet #fs_connect .fs-permissions .fs-trigger, .toplevel_page_independent-analytics #fs_connect .fs-permissions .fs-trigger { |
| 3182 | color: #5123a0; |
| 3183 | padding: 10px; |
| 3184 | position: absolute; |
| 3185 | top: -115px; |
| 3186 | left: 380px; |
| 3187 | } |
| 3188 | |
| 3189 | .iawp-not-real-yet #fs_connect .fs-permissions .fs-switch, .toplevel_page_independent-analytics #fs_connect .fs-permissions .fs-switch { |
| 3190 | height: 0; |
| 3191 | visibility: hidden; |
| 3192 | width: 0; |
| 3193 | } |
| 3194 | |
| 3195 | .iawp-not-real-yet #fs_connect .fs-permissions.fs-open, .toplevel_page_independent-analytics #fs_connect .fs-permissions.fs-open { |
| 3196 | padding: 20px 35px; |
| 3197 | position: absolute; |
| 3198 | box-shadow: 0 1px 2px rgba(0, 0, 0, .3); |
| 3199 | } |
| 3200 | |
| 3201 | @media screen and (max-width: 479px) { |
| 3202 | .iawp-not-real-yet #fs_connect .fs-permissions ul, .toplevel_page_independent-analytics #fs_connect .fs-permissions ul { |
| 3203 | margin: 20px 35px; |
| 3204 | position: relative; |
| 3205 | top: -60px; |
| 3206 | } |
| 3207 | } |
| 3208 | |
| 3209 | .iawp-not-real-yet #fs_connect .fs-permissions.fs-open ul, .toplevel_page_independent-analytics #fs_connect .fs-permissions.fs-open ul { |
| 3210 | flex-wrap: wrap; |
| 3211 | margin: 0; |
| 3212 | display: flex; |
| 3213 | } |
| 3214 | |
| 3215 | .iawp-not-real-yet #fs_connect .fs-permissions.fs-open ul li, .toplevel_page_independent-analytics #fs_connect .fs-permissions.fs-open ul li { |
| 3216 | flex: 0 50%; |
| 3217 | padding-bottom: 10px; |
| 3218 | } |
| 3219 | |
| 3220 | .iawp-not-real-yet #fs_connect .fs-permissions.fs-open ul li .dashicons, .toplevel_page_independent-analytics #fs_connect .fs-permissions.fs-open ul li .dashicons { |
| 3221 | padding-right: 15px; |
| 3222 | } |
| 3223 | |
| 3224 | .iawp-not-real-yet #fs_connect .fs-permissions.fs-open ul .dashicons, .toplevel_page_independent-analytics #fs_connect .fs-permissions.fs-open ul .dashicons { |
| 3225 | background-position: 0; |
| 3226 | background-repeat: no-repeat; |
| 3227 | background-size: 65%; |
| 3228 | } |
| 3229 | |
| 3230 | .iawp-not-real-yet #fs_connect .fs-terms, .toplevel_page_independent-analytics #fs_connect .fs-terms { |
| 3231 | width: 240px; |
| 3232 | background-color: rgba(0, 0, 0, 0); |
| 3233 | position: absolute; |
| 3234 | bottom: 20px; |
| 3235 | right: 10px; |
| 3236 | } |
| 3237 | |
| 3238 | /*# sourceMappingURL=style.css.map */ |
| 3239 |