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
1890 lines
| 1 | #iawp-parent .data-table { |
| 2 | border: 1px solid #dedae6; |
| 3 | margin: 24px; |
| 4 | } |
| 5 | |
| 6 | body, #iawp-parent { |
| 7 | background-color: #ece9f2; |
| 8 | } |
| 9 | |
| 10 | #wpbody-content { |
| 11 | padding-bottom: 0; |
| 12 | } |
| 13 | |
| 14 | #wpbody-content > .error, #wpbody-content > .notice { |
| 15 | display: none; |
| 16 | } |
| 17 | |
| 18 | .loading-icon { |
| 19 | z-index: 39; |
| 20 | opacity: 0; |
| 21 | visibility: hidden; |
| 22 | background: rgba(24, 20, 31, .65); |
| 23 | justify-content: center; |
| 24 | align-items: center; |
| 25 | transition: opacity .3s, visibility .3s; |
| 26 | display: flex; |
| 27 | position: fixed; |
| 28 | top: 0; |
| 29 | bottom: 0; |
| 30 | left: 0; |
| 31 | right: 0; |
| 32 | } |
| 33 | |
| 34 | .loading-icon img { |
| 35 | opacity: 0; |
| 36 | transition: opacity .5s, -webkit-transform .5s, transform .5s; |
| 37 | -webkit-transform: scale(.9); |
| 38 | transform: scale(.9); |
| 39 | } |
| 40 | |
| 41 | #iawp-parent { |
| 42 | min-height: 120vh; |
| 43 | margin-left: -20px; |
| 44 | padding-bottom: 60px; |
| 45 | } |
| 46 | |
| 47 | #iawp-parent * { |
| 48 | box-sizing: border-box; |
| 49 | } |
| 50 | |
| 51 | #iawp-parent.loading .cell .animator { |
| 52 | left: 0; |
| 53 | } |
| 54 | |
| 55 | #iawp-parent.loading .loading-icon { |
| 56 | opacity: 1; |
| 57 | visibility: visible; |
| 58 | } |
| 59 | |
| 60 | #iawp-parent.loading .loading-icon img { |
| 61 | opacity: 1; |
| 62 | -webkit-transform: scale(1); |
| 63 | transform: scale(1); |
| 64 | } |
| 65 | |
| 66 | #iawp-parent .chart-container { |
| 67 | width: 100%; |
| 68 | padding: 0 24px; |
| 69 | } |
| 70 | |
| 71 | #iawp-parent .quick-stats { |
| 72 | gap: 24px; |
| 73 | margin: 24px; |
| 74 | display: flex; |
| 75 | } |
| 76 | |
| 77 | #iawp-parent .chart-inner { |
| 78 | background: #fff; |
| 79 | border: 1px solid #dedae6; |
| 80 | border-radius: 6px; |
| 81 | padding: 24px; |
| 82 | } |
| 83 | |
| 84 | #iawp-parent .legend-container { |
| 85 | align-items: center; |
| 86 | margin-bottom: 16px; |
| 87 | display: flex; |
| 88 | } |
| 89 | |
| 90 | #iawp-parent .legend-title { |
| 91 | margin: 0; |
| 92 | font-size: 18px; |
| 93 | font-weight: 700; |
| 94 | } |
| 95 | |
| 96 | #iawp-parent .legend-list { |
| 97 | justify-content: end; |
| 98 | margin: 0; |
| 99 | display: flex; |
| 100 | } |
| 101 | |
| 102 | #iawp-parent .legend-item { |
| 103 | cursor: pointer; |
| 104 | -webkit-user-select: none; |
| 105 | -ms-user-select: none; |
| 106 | user-select: none; |
| 107 | border-radius: 18px; |
| 108 | align-items: center; |
| 109 | margin: 0 0 0 16px; |
| 110 | padding: 4px 12px 4px 8px; |
| 111 | display: inline-flex; |
| 112 | } |
| 113 | |
| 114 | #iawp-parent .legend-item.hidden { |
| 115 | opacity: .5; |
| 116 | } |
| 117 | |
| 118 | #iawp-parent .legend-item span { |
| 119 | height: 16px; |
| 120 | width: 16px; |
| 121 | border-radius: 50%; |
| 122 | margin-right: 4px; |
| 123 | display: inline-block; |
| 124 | } |
| 125 | |
| 126 | #iawp-parent .legend-item p { |
| 127 | margin: 0; |
| 128 | font-weight: 500; |
| 129 | } |
| 130 | |
| 131 | #iawp-parent .legend-item-for-views { |
| 132 | background-color: #efe8fa; |
| 133 | } |
| 134 | |
| 135 | #iawp-parent .legend-item-for-views span { |
| 136 | background-color: #5123a0; |
| 137 | } |
| 138 | |
| 139 | #iawp-parent .legend-item-for-visitors { |
| 140 | background-color: rgba(246, 157, 10, .2); |
| 141 | } |
| 142 | |
| 143 | #iawp-parent .legend-item-for-visitors span { |
| 144 | background-color: #f69d0a; |
| 145 | } |
| 146 | |
| 147 | #iawp-parent svg text { |
| 148 | stroke-width: 0; |
| 149 | } |
| 150 | |
| 151 | #iawp-parent .data-table { |
| 152 | grid-auto-rows: minmax(30px, auto); |
| 153 | display: grid; |
| 154 | position: relative; |
| 155 | } |
| 156 | |
| 157 | #iawp-parent .data-table[data-column-count="2"] { |
| 158 | grid-template-columns: repeat(2, minmax(70px, auto)); |
| 159 | } |
| 160 | |
| 161 | #iawp-parent .data-table[data-column-count="3"] { |
| 162 | grid-template-columns: repeat(3, minmax(70px, auto)); |
| 163 | } |
| 164 | |
| 165 | #iawp-parent .data-table[data-column-count="4"] { |
| 166 | grid-template-columns: repeat(4, minmax(70px, auto)); |
| 167 | } |
| 168 | |
| 169 | #iawp-parent .data-table[data-column-count="5"] { |
| 170 | grid-template-columns: repeat(5, minmax(70px, auto)); |
| 171 | } |
| 172 | |
| 173 | #iawp-parent .data-table[data-column-count="6"] { |
| 174 | grid-template-columns: repeat(6, minmax(70px, auto)); |
| 175 | } |
| 176 | |
| 177 | #iawp-parent .data-table[data-column-count="7"] { |
| 178 | grid-template-columns: repeat(7, minmax(70px, auto)); |
| 179 | } |
| 180 | |
| 181 | #iawp-parent .data-table[data-column-count="8"] { |
| 182 | grid-template-columns: repeat(8, minmax(70px, auto)); |
| 183 | } |
| 184 | |
| 185 | #iawp-parent .data-table .rows, #iawp-parent .data-table .row, #iawp-parent .data-table .columns { |
| 186 | display: contents; |
| 187 | } |
| 188 | |
| 189 | #iawp-parent .data-error { |
| 190 | text-align: center; |
| 191 | color: #363040; |
| 192 | background-color: #f7f5fa; |
| 193 | grid-column: 1 / -1; |
| 194 | margin: 0; |
| 195 | padding: 24px; |
| 196 | } |
| 197 | |
| 198 | #iawp-parent .columns .cell { |
| 199 | z-index: 19; |
| 200 | background-color: #fff; |
| 201 | border-bottom: 1px solid #dedae6; |
| 202 | position: -webkit-sticky; |
| 203 | position: sticky; |
| 204 | top: 144px; |
| 205 | } |
| 206 | |
| 207 | @media (min-width: 601px) { |
| 208 | #iawp-parent .columns .cell { |
| 209 | top: 190px; |
| 210 | } |
| 211 | } |
| 212 | |
| 213 | @media (min-width: 783px) { |
| 214 | #iawp-parent .columns .cell { |
| 215 | top: 176px; |
| 216 | } |
| 217 | } |
| 218 | |
| 219 | @media (min-width: 783px) { |
| 220 | #iawp-parent .columns .cell { |
| 221 | top: 114px; |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | #iawp-parent .header { |
| 226 | flex-wrap: row; |
| 227 | background: #fff; |
| 228 | border-bottom: 1px solid #dedae6; |
| 229 | align-items: center; |
| 230 | display: flex; |
| 231 | } |
| 232 | |
| 233 | #iawp-parent .header .logo { |
| 234 | border-right: 1px solid #dedae6; |
| 235 | padding: 14px 32px 12px; |
| 236 | } |
| 237 | |
| 238 | #iawp-parent .header .logo img { |
| 239 | width: 200px; |
| 240 | height: auto; |
| 241 | } |
| 242 | |
| 243 | #iawp-parent .header .kb { |
| 244 | margin: 0 36px 0 auto; |
| 245 | } |
| 246 | |
| 247 | #iawp-parent .header .kb a { |
| 248 | text-decoration: none; |
| 249 | } |
| 250 | |
| 251 | #iawp-parent .header .kb a .dashicons { |
| 252 | margin: 0 0 0 6px; |
| 253 | } |
| 254 | |
| 255 | #iawp-parent .header .kb .review { |
| 256 | margin-right: 18px; |
| 257 | } |
| 258 | |
| 259 | #iawp-parent .menu { |
| 260 | background: #fff; |
| 261 | padding: 0 0 0 20px; |
| 262 | } |
| 263 | |
| 264 | #iawp-parent .menu-item { |
| 265 | border-bottom: 5px solid rgba(0, 0, 0, 0); |
| 266 | margin: 0 -4px 0 0; |
| 267 | padding: 10px 18px; |
| 268 | font-size: 14px; |
| 269 | display: inline-block; |
| 270 | } |
| 271 | |
| 272 | #iawp-parent .menu-item:hover, #iawp-parent .menu-item:active, #iawp-parent .menu-item:focus { |
| 273 | box-shadow: none; |
| 274 | border-bottom-color: #dedae6; |
| 275 | outline: none; |
| 276 | } |
| 277 | |
| 278 | #iawp-parent .menu-item.active { |
| 279 | border-bottom-color: #5123a0; |
| 280 | } |
| 281 | |
| 282 | #iawp-parent .relative-dates { |
| 283 | grid-gap: 8px; |
| 284 | grid-template-rows: repeat(2, 1fr); |
| 285 | grid-auto-flow: column; |
| 286 | display: grid; |
| 287 | } |
| 288 | |
| 289 | #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 { |
| 290 | padding: 8px; |
| 291 | } |
| 292 | |
| 293 | #iawp-parent .toolbar { |
| 294 | z-index: 29; |
| 295 | background: #5123a0; |
| 296 | flex-wrap: wrap; |
| 297 | justify-content: center; |
| 298 | display: flex; |
| 299 | position: -webkit-sticky; |
| 300 | position: sticky; |
| 301 | top: 0; |
| 302 | } |
| 303 | |
| 304 | #iawp-parent .toolbar .buttons { |
| 305 | width: 100%; |
| 306 | justify-content: center; |
| 307 | align-items: center; |
| 308 | padding: 18px 24px; |
| 309 | display: flex; |
| 310 | } |
| 311 | |
| 312 | #iawp-parent .toolbar .buttons > div { |
| 313 | margin-right: 12px; |
| 314 | } |
| 315 | |
| 316 | #iawp-parent .toolbar .buttons > div:last-child { |
| 317 | margin-right: 0; |
| 318 | } |
| 319 | |
| 320 | #iawp-parent .toolbar .date-picker-container { |
| 321 | position: relative; |
| 322 | } |
| 323 | |
| 324 | #iawp-parent .toolbar .date-picker-container .dashicons { |
| 325 | color: #5123a0; |
| 326 | position: absolute; |
| 327 | top: 11px; |
| 328 | left: 12px; |
| 329 | } |
| 330 | |
| 331 | @media (min-width: 601px) { |
| 332 | #iawp-parent .toolbar { |
| 333 | top: 46px; |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | @media (min-width: 783px) { |
| 338 | #iawp-parent .toolbar { |
| 339 | top: 32px; |
| 340 | } |
| 341 | } |
| 342 | |
| 343 | @media (min-width: 1200px) { |
| 344 | #iawp-parent .toolbar { |
| 345 | flex-wrap: nowrap; |
| 346 | justify-content: flex-start; |
| 347 | } |
| 348 | |
| 349 | #iawp-parent .toolbar .buttons { |
| 350 | width: auto; |
| 351 | justify-content: flex-start; |
| 352 | } |
| 353 | } |
| 354 | |
| 355 | #iawp-parent .filters .condition { |
| 356 | margin-bottom: 12px; |
| 357 | padding-right: 24px; |
| 358 | position: relative; |
| 359 | } |
| 360 | |
| 361 | #iawp-parent .filters .operator-select-container, #iawp-parent .filters .operand-field-container { |
| 362 | position: relative; |
| 363 | } |
| 364 | |
| 365 | #iawp-parent .filters .operator-select-container:before, #iawp-parent .filters .operand-field-container:before { |
| 366 | content: ""; |
| 367 | z-index: 3; |
| 368 | background: #efe8fa; |
| 369 | border-radius: 3px; |
| 370 | position: absolute; |
| 371 | top: 1px; |
| 372 | bottom: 1px; |
| 373 | left: 1px; |
| 374 | right: 1px; |
| 375 | } |
| 376 | |
| 377 | #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 { |
| 378 | display: none; |
| 379 | } |
| 380 | |
| 381 | #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 { |
| 382 | z-index: 9; |
| 383 | display: block; |
| 384 | position: relative; |
| 385 | } |
| 386 | |
| 387 | #iawp-parent .filters .actions button { |
| 388 | margin-right: 4px; |
| 389 | } |
| 390 | |
| 391 | #iawp-parent .input-group { |
| 392 | background: #f7f5fa; |
| 393 | border: 1px solid #dedae6; |
| 394 | border-radius: 3px; |
| 395 | justify-content: space-between; |
| 396 | padding: 8px; |
| 397 | display: flex; |
| 398 | } |
| 399 | |
| 400 | #iawp-parent .input-group > div { |
| 401 | flex: 1; |
| 402 | margin: 0 3px; |
| 403 | } |
| 404 | |
| 405 | #iawp-parent .input-group > div select, #iawp-parent .input-group > div input { |
| 406 | width: 100%; |
| 407 | } |
| 408 | |
| 409 | #iawp-parent #iawp-learn { |
| 410 | max-width: 1000px; |
| 411 | padding: 12px; |
| 412 | } |
| 413 | |
| 414 | #iawp-parent #iawp-learn h2 { |
| 415 | margin: 0 0 12px; |
| 416 | font-size: 28px; |
| 417 | } |
| 418 | |
| 419 | #iawp-parent #iawp-learn h3 { |
| 420 | margin: 0 0 12px; |
| 421 | font-size: 21px; |
| 422 | } |
| 423 | |
| 424 | #iawp-parent #iawp-learn p, #iawp-parent #iawp-learn li { |
| 425 | margin: 10px 0; |
| 426 | font-size: 16px; |
| 427 | } |
| 428 | |
| 429 | #iawp-parent #iawp-learn ul { |
| 430 | margin-top: 24px; |
| 431 | } |
| 432 | |
| 433 | #iawp-parent #iawp-learn li { |
| 434 | margin-bottom: 18px; |
| 435 | } |
| 436 | |
| 437 | #iawp-parent #iawp-learn a { |
| 438 | color: #5123a0; |
| 439 | } |
| 440 | |
| 441 | #iawp-parent #iawp-learn .heading { |
| 442 | padding: 24px; |
| 443 | } |
| 444 | |
| 445 | #iawp-parent #iawp-learn .heading p { |
| 446 | font-size: 18px; |
| 447 | } |
| 448 | |
| 449 | #iawp-parent #iawp-learn .search-container { |
| 450 | margin: 28px 0 18px; |
| 451 | position: relative; |
| 452 | } |
| 453 | |
| 454 | #iawp-parent #iawp-learn .search-container .dashicons { |
| 455 | color: #6d6a73; |
| 456 | position: absolute; |
| 457 | top: 10px; |
| 458 | left: 12px; |
| 459 | } |
| 460 | |
| 461 | #iawp-parent #iawp-learn .search-field { |
| 462 | max-width: none; |
| 463 | width: 100%; |
| 464 | background-color: #f7f5fa; |
| 465 | border-radius: 24px; |
| 466 | margin-left: -2px; |
| 467 | padding: 6px 18px 6px 38px; |
| 468 | font-size: 14px; |
| 469 | } |
| 470 | |
| 471 | #iawp-parent #iawp-learn .search-field:focus { |
| 472 | background-color: #fff; |
| 473 | } |
| 474 | |
| 475 | #iawp-parent #iawp-learn .tutorials { |
| 476 | justify-content: space-between; |
| 477 | padding: 0 24px; |
| 478 | display: flex; |
| 479 | } |
| 480 | |
| 481 | #iawp-parent #iawp-learn .advanced { |
| 482 | width: 54%; |
| 483 | margin-right: 6%; |
| 484 | } |
| 485 | |
| 486 | #iawp-parent #iawp-learn .basic { |
| 487 | width: 38%; |
| 488 | margin-right: 2%; |
| 489 | } |
| 490 | |
| 491 | #iawp-parent #iawp-learn .tutorial { |
| 492 | margin-bottom: 36px; |
| 493 | } |
| 494 | |
| 495 | #iawp-parent #iawp-learn .product-updates { |
| 496 | border-top: 1px solid #dedae6; |
| 497 | padding: 24px; |
| 498 | } |
| 499 | |
| 500 | #iawp-parent .mm { |
| 501 | font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif; |
| 502 | } |
| 503 | |
| 504 | #iawp-parent .mm__overlay { |
| 505 | background: rgba(0, 0, 0, .6); |
| 506 | justify-content: center; |
| 507 | align-items: center; |
| 508 | display: flex; |
| 509 | position: fixed; |
| 510 | top: 0; |
| 511 | bottom: 0; |
| 512 | left: 0; |
| 513 | right: 0; |
| 514 | } |
| 515 | |
| 516 | #iawp-parent .mm__container { |
| 517 | max-width: 500px; |
| 518 | max-height: 100vh; |
| 519 | box-sizing: border-box; |
| 520 | background-color: #fff; |
| 521 | border-radius: 4px; |
| 522 | padding: 30px; |
| 523 | overflow-y: auto; |
| 524 | } |
| 525 | |
| 526 | #iawp-parent .mm__header { |
| 527 | justify-content: space-between; |
| 528 | align-items: center; |
| 529 | display: flex; |
| 530 | } |
| 531 | |
| 532 | #iawp-parent .mm__title { |
| 533 | color: #00449e; |
| 534 | box-sizing: border-box; |
| 535 | margin-top: 0; |
| 536 | margin-bottom: 0; |
| 537 | font-size: 1.25rem; |
| 538 | font-weight: 600; |
| 539 | line-height: 1.25; |
| 540 | } |
| 541 | |
| 542 | #iawp-parent .mm__close { |
| 543 | background: none; |
| 544 | border: 0; |
| 545 | } |
| 546 | |
| 547 | #iawp-parent .mm__header .mm__close:before { |
| 548 | content: "✕"; |
| 549 | } |
| 550 | |
| 551 | #iawp-parent .mm__content { |
| 552 | color: rgba(0, 0, 0, .8); |
| 553 | margin-top: 2rem; |
| 554 | margin-bottom: 2rem; |
| 555 | line-height: 1.5; |
| 556 | } |
| 557 | |
| 558 | #iawp-parent .mm__btn { |
| 559 | color: rgba(0, 0, 0, .8); |
| 560 | cursor: pointer; |
| 561 | -webkit-appearance: button; |
| 562 | text-transform: none; |
| 563 | will-change: transform; |
| 564 | -moz-osx-font-smoothing: grayscale; |
| 565 | -webkit-backface-visibility: hidden; |
| 566 | backface-visibility: hidden; |
| 567 | background-color: #e6e6e6; |
| 568 | border-style: none; |
| 569 | border-width: 0; |
| 570 | border-radius: .25rem; |
| 571 | margin: 0; |
| 572 | padding: .5rem 1rem; |
| 573 | font-size: .875rem; |
| 574 | line-height: 1.15; |
| 575 | transition: -webkit-transform .25s ease-out, transform .25s ease-out, -webkit-transform .25s ease-out; |
| 576 | overflow: visible; |
| 577 | -webkit-transform: translateZ(0); |
| 578 | transform: translateZ(0); |
| 579 | } |
| 580 | |
| 581 | #iawp-parent .mm__btn:focus, #iawp-parent .mm__btn:hover { |
| 582 | -webkit-transform: scale(1.05); |
| 583 | transform: scale(1.05); |
| 584 | } |
| 585 | |
| 586 | #iawp-parent .mm__btn-primary { |
| 587 | color: #fff; |
| 588 | background-color: #00449e; |
| 589 | } |
| 590 | |
| 591 | @-webkit-keyframes mmfadeIn { |
| 592 | from { |
| 593 | opacity: 0; |
| 594 | } |
| 595 | |
| 596 | to { |
| 597 | opacity: 1; |
| 598 | } |
| 599 | } |
| 600 | |
| 601 | @keyframes mmfadeIn { |
| 602 | from { |
| 603 | opacity: 0; |
| 604 | } |
| 605 | |
| 606 | to { |
| 607 | opacity: 1; |
| 608 | } |
| 609 | } |
| 610 | |
| 611 | @-webkit-keyframes mmfadeOut { |
| 612 | from { |
| 613 | opacity: 1; |
| 614 | } |
| 615 | |
| 616 | to { |
| 617 | opacity: 0; |
| 618 | } |
| 619 | } |
| 620 | |
| 621 | @keyframes mmfadeOut { |
| 622 | from { |
| 623 | opacity: 1; |
| 624 | } |
| 625 | |
| 626 | to { |
| 627 | opacity: 0; |
| 628 | } |
| 629 | } |
| 630 | |
| 631 | @-webkit-keyframes mmslideIn { |
| 632 | from { |
| 633 | -webkit-transform: translateY(15%); |
| 634 | transform: translateY(15%); |
| 635 | } |
| 636 | |
| 637 | to { |
| 638 | -webkit-transform: translateY(0); |
| 639 | transform: translateY(0); |
| 640 | } |
| 641 | } |
| 642 | |
| 643 | @keyframes mmslideIn { |
| 644 | from { |
| 645 | -webkit-transform: translateY(15%); |
| 646 | transform: translateY(15%); |
| 647 | } |
| 648 | |
| 649 | to { |
| 650 | -webkit-transform: translateY(0); |
| 651 | transform: translateY(0); |
| 652 | } |
| 653 | } |
| 654 | |
| 655 | @-webkit-keyframes mmslideOut { |
| 656 | from { |
| 657 | -webkit-transform: translateY(0); |
| 658 | transform: translateY(0); |
| 659 | } |
| 660 | |
| 661 | to { |
| 662 | -webkit-transform: translateY(-10%); |
| 663 | transform: translateY(-10%); |
| 664 | } |
| 665 | } |
| 666 | |
| 667 | @keyframes mmslideOut { |
| 668 | from { |
| 669 | -webkit-transform: translateY(0); |
| 670 | transform: translateY(0); |
| 671 | } |
| 672 | |
| 673 | to { |
| 674 | -webkit-transform: translateY(-10%); |
| 675 | transform: translateY(-10%); |
| 676 | } |
| 677 | } |
| 678 | |
| 679 | #iawp-parent .micromodal-slide { |
| 680 | display: none; |
| 681 | } |
| 682 | |
| 683 | #iawp-parent .micromodal-slide.is-open { |
| 684 | display: block; |
| 685 | } |
| 686 | |
| 687 | #iawp-parent .micromodal-slide[aria-hidden="false"] .mm__overlay { |
| 688 | -webkit-animation: mmfadeIn .3s cubic-bezier(0, 0, .2, 1); |
| 689 | animation: mmfadeIn .3s cubic-bezier(0, 0, .2, 1); |
| 690 | } |
| 691 | |
| 692 | #iawp-parent .micromodal-slide[aria-hidden="false"] .mm__container { |
| 693 | -webkit-animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1); |
| 694 | animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1); |
| 695 | } |
| 696 | |
| 697 | #iawp-parent .micromodal-slide[aria-hidden="true"] .mm__overlay { |
| 698 | -webkit-animation: mmfadeOut .3s cubic-bezier(0, 0, .2, 1); |
| 699 | animation: mmfadeOut .3s cubic-bezier(0, 0, .2, 1); |
| 700 | } |
| 701 | |
| 702 | #iawp-parent .micromodal-slide[aria-hidden="true"] .mm__container { |
| 703 | -webkit-animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1); |
| 704 | animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1); |
| 705 | } |
| 706 | |
| 707 | #iawp-parent .micromodal-slide .mm__container, #iawp-parent .micromodal-slide .mm__overlay { |
| 708 | will-change: transform; |
| 709 | } |
| 710 | |
| 711 | #iawp-parent .modal-parent.small { |
| 712 | position: relative; |
| 713 | } |
| 714 | |
| 715 | #iawp-parent .modal { |
| 716 | z-index: 19; |
| 717 | opacity: 0; |
| 718 | visibility: hidden; |
| 719 | background: #fff; |
| 720 | border-radius: 3px; |
| 721 | transition: opacity .2s, visibility .2s, -webkit-transform .2s, transform .2s; |
| 722 | position: absolute; |
| 723 | top: calc(100% + 16px); |
| 724 | left: 0; |
| 725 | box-shadow: 0 4px 8px rgba(0, 0, 0, .1); |
| 726 | } |
| 727 | |
| 728 | #iawp-parent .modal.show { |
| 729 | opacity: 1; |
| 730 | visibility: visible; |
| 731 | -webkit-transform: translateY(-4px); |
| 732 | transform: translateY(-4px); |
| 733 | } |
| 734 | |
| 735 | #iawp-parent .modal.small { |
| 736 | width: 220px; |
| 737 | } |
| 738 | |
| 739 | #iawp-parent .modal.large { |
| 740 | width: 96%; |
| 741 | max-width: 800px; |
| 742 | top: 80px; |
| 743 | left: 50%; |
| 744 | -webkit-transform: translateX(-50%); |
| 745 | transform: translateX(-50%); |
| 746 | } |
| 747 | |
| 748 | #iawp-parent .modal.large.show { |
| 749 | -webkit-transform: translateY(-4px)translateX(-50%); |
| 750 | transform: translateY(-4px)translateX(-50%); |
| 751 | } |
| 752 | |
| 753 | #iawp-parent .modal.flex { |
| 754 | width: auto; |
| 755 | max-width: unset; |
| 756 | } |
| 757 | |
| 758 | #iawp-parent .modal-inner { |
| 759 | padding: 12px 24px; |
| 760 | } |
| 761 | |
| 762 | #iawp-parent .modal-inner > div { |
| 763 | margin-bottom: 18px; |
| 764 | } |
| 765 | |
| 766 | @media (min-width: 1200px) { |
| 767 | #iawp-parent .modal-parent { |
| 768 | position: relative; |
| 769 | } |
| 770 | |
| 771 | #iawp-parent .modal.large { |
| 772 | width: 800px; |
| 773 | top: calc(100% + 12px); |
| 774 | left: 0; |
| 775 | -webkit-transform: none; |
| 776 | transform: none; |
| 777 | } |
| 778 | |
| 779 | #iawp-parent .modal.large.show { |
| 780 | -webkit-transform: translateY(-4px); |
| 781 | transform: translateY(-4px); |
| 782 | } |
| 783 | |
| 784 | #iawp-parent .modal.flex { |
| 785 | width: auto; |
| 786 | } |
| 787 | } |
| 788 | |
| 789 | #iawp-parent .settings-container { |
| 790 | color: #18141f; |
| 791 | max-width: 700px; |
| 792 | background: #fff; |
| 793 | border: 1px solid #dedae6; |
| 794 | border-radius: 6px; |
| 795 | margin: 24px; |
| 796 | padding: 12px 24px 24px; |
| 797 | } |
| 798 | |
| 799 | #iawp-parent .settings-container p.submit { |
| 800 | padding-bottom: 0; |
| 801 | } |
| 802 | |
| 803 | #iawp-parent .settings-container label { |
| 804 | display: inline; |
| 805 | } |
| 806 | |
| 807 | #iawp-parent .settings-container .button-group { |
| 808 | margin: 12px 0; |
| 809 | } |
| 810 | |
| 811 | #iawp-parent .settings-container .button-group button { |
| 812 | margin-right: 12px; |
| 813 | } |
| 814 | |
| 815 | #iawp-parent .settings-container th { |
| 816 | width: 240px; |
| 817 | } |
| 818 | |
| 819 | #iawp-parent .settings-container td { |
| 820 | margin-top: 12px; |
| 821 | } |
| 822 | |
| 823 | #iawp-parent .settings-container .post-types label { |
| 824 | margin-right: 4px; |
| 825 | } |
| 826 | |
| 827 | #iawp-parent .settings-container .shortcode-note { |
| 828 | margin-left: 240px; |
| 829 | } |
| 830 | |
| 831 | #iawp-parent .settings-container .shortcode-note p { |
| 832 | font-size: 14px; |
| 833 | } |
| 834 | |
| 835 | @media (min-width: 783px) { |
| 836 | #iawp-parent .settings-container td { |
| 837 | margin-top: 0; |
| 838 | } |
| 839 | } |
| 840 | |
| 841 | #iawp-parent .stat { |
| 842 | width: 50%; |
| 843 | max-width: 400px; |
| 844 | background-color: #fff; |
| 845 | border: 1px solid #dedae6; |
| 846 | border-radius: 6px; |
| 847 | padding: 18px; |
| 848 | } |
| 849 | |
| 850 | #iawp-parent .stat:last-child { |
| 851 | margin-right: 0; |
| 852 | } |
| 853 | |
| 854 | #iawp-parent .stat.unfiltered { |
| 855 | background-color: #ece9f2; |
| 856 | border-color: #c5c2cc; |
| 857 | } |
| 858 | |
| 859 | #iawp-parent .stat.unfiltered circle { |
| 860 | display: none; |
| 861 | } |
| 862 | |
| 863 | #iawp-parent .stat.unfiltered .percentage { |
| 864 | opacity: .7; |
| 865 | } |
| 866 | |
| 867 | #iawp-parent .stat .metric { |
| 868 | justify-content: space-between; |
| 869 | font-size: 16px; |
| 870 | display: flex; |
| 871 | } |
| 872 | |
| 873 | #iawp-parent .stat .dashicons-filter { |
| 874 | display: none; |
| 875 | } |
| 876 | |
| 877 | #iawp-parent .stat .circle { |
| 878 | width: 15px; |
| 879 | height: 15px; |
| 880 | } |
| 881 | |
| 882 | #iawp-parent .stat .values { |
| 883 | align-items: baseline; |
| 884 | margin: 12px 0; |
| 885 | font-weight: 700; |
| 886 | display: flex; |
| 887 | } |
| 888 | |
| 889 | #iawp-parent .stat .count { |
| 890 | margin-right: 8px; |
| 891 | font-size: 28px; |
| 892 | } |
| 893 | |
| 894 | #iawp-parent .stat .growth { |
| 895 | color: #36b366; |
| 896 | font-size: 14px; |
| 897 | } |
| 898 | |
| 899 | #iawp-parent .stat .percentage { |
| 900 | border-radius: 24px; |
| 901 | align-items: center; |
| 902 | padding: 4px 10px 4px 2px; |
| 903 | display: flex; |
| 904 | } |
| 905 | |
| 906 | #iawp-parent .stat .percentage.up { |
| 907 | color: #36b366; |
| 908 | background-color: #e3fced; |
| 909 | } |
| 910 | |
| 911 | #iawp-parent .stat .percentage.down { |
| 912 | color: #d93b29; |
| 913 | background-color: #fce6e3; |
| 914 | } |
| 915 | |
| 916 | #iawp-parent .stat .period-label { |
| 917 | color: #9a95a6; |
| 918 | font-size: 16px; |
| 919 | } |
| 920 | |
| 921 | #iawp-parent .stat.views circle { |
| 922 | fill: #5123a0; |
| 923 | } |
| 924 | |
| 925 | #iawp-parent .stat.views .dashicons-filter { |
| 926 | color: #5123a0; |
| 927 | } |
| 928 | |
| 929 | #iawp-parent .stat.visitors circle { |
| 930 | fill: #f69d0a; |
| 931 | } |
| 932 | |
| 933 | #iawp-parent .stat.visitors .dashicons-filter { |
| 934 | color: #f69d0a; |
| 935 | } |
| 936 | |
| 937 | #iawp-parent .filtered .stat:not(.unfiltered) .dashicons-filter { |
| 938 | display: inline-block; |
| 939 | } |
| 940 | |
| 941 | #iawp-parent .filtered .stat:not(.unfiltered) .circle { |
| 942 | display: none; |
| 943 | } |
| 944 | |
| 945 | #iawp-parent .iawp-button, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button { |
| 946 | cursor: pointer; |
| 947 | background: none; |
| 948 | border: 1px solid rgba(0, 0, 0, 0); |
| 949 | border-radius: 3px; |
| 950 | align-items: center; |
| 951 | margin: 0; |
| 952 | padding: 12px 16px; |
| 953 | font-size: 14px; |
| 954 | line-height: 1; |
| 955 | text-decoration: none; |
| 956 | transition: color .1s, background-color .1s, border-color .1s; |
| 957 | display: inline-flex; |
| 958 | } |
| 959 | |
| 960 | #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 { |
| 961 | margin-right: 6px; |
| 962 | transition: color .1s; |
| 963 | } |
| 964 | |
| 965 | #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 { |
| 966 | color: #5123a0; |
| 967 | background: #fff; |
| 968 | border-radius: 50%; |
| 969 | justify-content: center; |
| 970 | align-items: center; |
| 971 | font-size: 12px; |
| 972 | font-weight: 700; |
| 973 | line-height: 1; |
| 974 | display: flex; |
| 975 | } |
| 976 | |
| 977 | #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) { |
| 978 | height: 18px; |
| 979 | width: 18px; |
| 980 | margin-left: 8px; |
| 981 | margin-right: -2px; |
| 982 | } |
| 983 | |
| 984 | #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 { |
| 985 | cursor: default; |
| 986 | } |
| 987 | |
| 988 | #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 { |
| 989 | color: #5123a0; |
| 990 | background-color: #fff; |
| 991 | border-color: #fff; |
| 992 | } |
| 993 | |
| 994 | #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 { |
| 995 | color: #6c46ae; |
| 996 | } |
| 997 | |
| 998 | #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 { |
| 999 | color: #fff; |
| 1000 | background-color: #5123a0; |
| 1001 | border-color: #5123a0; |
| 1002 | } |
| 1003 | |
| 1004 | #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 { |
| 1005 | color: #fff; |
| 1006 | background-color: #6c46ae; |
| 1007 | border-color: #6c46ae; |
| 1008 | } |
| 1009 | |
| 1010 | #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 { |
| 1011 | opacity: .5; |
| 1012 | } |
| 1013 | |
| 1014 | #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 { |
| 1015 | color: #fff; |
| 1016 | background-color: #d93b29; |
| 1017 | border-color: #d93b29; |
| 1018 | } |
| 1019 | |
| 1020 | #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 { |
| 1021 | color: #fff; |
| 1022 | background-color: #d94e3f; |
| 1023 | border-color: #d94e3f; |
| 1024 | } |
| 1025 | |
| 1026 | #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 { |
| 1027 | color: #fff; |
| 1028 | border-color: #fff; |
| 1029 | } |
| 1030 | |
| 1031 | #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 { |
| 1032 | color: #5123a0; |
| 1033 | background-color: #fff; |
| 1034 | border-color: #fff; |
| 1035 | } |
| 1036 | |
| 1037 | #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 { |
| 1038 | color: #fff; |
| 1039 | background: #5123a0; |
| 1040 | } |
| 1041 | |
| 1042 | #iawp-parent .iawp-button.ghost-purple, #iawp-parent .toplevel_page_independent-analytics #fs_connect .button, .toplevel_page_independent-analytics #fs_connect #iawp-parent .button { |
| 1043 | color: #5123a0; |
| 1044 | border-color: #5123a0; |
| 1045 | } |
| 1046 | |
| 1047 | #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 { |
| 1048 | color: #fff; |
| 1049 | background-color: #5123a0; |
| 1050 | border-color: #5123a0; |
| 1051 | } |
| 1052 | |
| 1053 | #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 { |
| 1054 | color: #9a95a6; |
| 1055 | background-color: #f7f5fa; |
| 1056 | border-color: #ece9f2; |
| 1057 | } |
| 1058 | |
| 1059 | #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 { |
| 1060 | color: #d93b29; |
| 1061 | border-color: #d93b29; |
| 1062 | } |
| 1063 | |
| 1064 | #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 { |
| 1065 | color: #fff; |
| 1066 | background-color: #d93b29; |
| 1067 | border-color: #d93b29; |
| 1068 | } |
| 1069 | |
| 1070 | #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 { |
| 1071 | color: #9a95a6; |
| 1072 | background-color: #f7f5fa; |
| 1073 | border-color: #ece9f2; |
| 1074 | } |
| 1075 | |
| 1076 | #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 { |
| 1077 | color: #5123a0; |
| 1078 | padding: 0; |
| 1079 | } |
| 1080 | |
| 1081 | #iawp-parent .date-picker { |
| 1082 | padding: 14px 16px 14px 36px; |
| 1083 | } |
| 1084 | |
| 1085 | #iawp-parent .sort-button { |
| 1086 | color: #18141f; |
| 1087 | cursor: pointer; |
| 1088 | background: none; |
| 1089 | border: none; |
| 1090 | align-items: center; |
| 1091 | padding: 1px; |
| 1092 | display: flex; |
| 1093 | } |
| 1094 | |
| 1095 | #iawp-parent .sort-button .dashicons-arrow-up, #iawp-parent .sort-button .dashicons-arrow-down { |
| 1096 | display: none; |
| 1097 | } |
| 1098 | |
| 1099 | #iawp-parent .sort-button .name { |
| 1100 | font-weight: 700; |
| 1101 | } |
| 1102 | |
| 1103 | #iawp-parent .sort-button .dashicons { |
| 1104 | color: #c5c2cc; |
| 1105 | } |
| 1106 | |
| 1107 | #iawp-parent .sort-button.asc .dashicons, #iawp-parent .sort-button.desc .dashicons { |
| 1108 | color: #5123a0; |
| 1109 | } |
| 1110 | |
| 1111 | #iawp-parent .sort-button.asc .dashicons-arrow-up { |
| 1112 | display: inline-block; |
| 1113 | } |
| 1114 | |
| 1115 | #iawp-parent .sort-button.asc .dashicons-arrow-down, #iawp-parent .sort-button.asc .dashicons-arrow-right { |
| 1116 | display: none; |
| 1117 | } |
| 1118 | |
| 1119 | #iawp-parent .sort-button.desc .dashicons-arrow-down { |
| 1120 | display: inline-block; |
| 1121 | } |
| 1122 | |
| 1123 | #iawp-parent .sort-button.desc .dashicons-arrow-up, #iawp-parent .sort-button.desc .dashicons-arrow-right { |
| 1124 | display: none; |
| 1125 | } |
| 1126 | |
| 1127 | #iawp-parent .delete-button { |
| 1128 | z-index: 3; |
| 1129 | color: #fff; |
| 1130 | cursor: pointer; |
| 1131 | background-color: #5123a0; |
| 1132 | border: none; |
| 1133 | border-radius: 50%; |
| 1134 | padding: 2px; |
| 1135 | transition: background-color .1s, color .1s; |
| 1136 | position: absolute; |
| 1137 | top: 12px; |
| 1138 | right: -12px; |
| 1139 | } |
| 1140 | |
| 1141 | #iawp-parent .delete-button:hover { |
| 1142 | background-color: #6c46ae; |
| 1143 | } |
| 1144 | |
| 1145 | #iawp-parent .icon-med { |
| 1146 | margin-right: 3px; |
| 1147 | font-size: 21px; |
| 1148 | } |
| 1149 | |
| 1150 | #iawp-parent .dashicons.spin { |
| 1151 | -webkit-animation: dashicons-spin 1s linear infinite; |
| 1152 | animation: dashicons-spin 1s linear infinite; |
| 1153 | } |
| 1154 | |
| 1155 | @-webkit-keyframes dashicons-spin { |
| 1156 | 0% { |
| 1157 | -webkit-transform: rotate(0deg); |
| 1158 | transform: rotate(0deg); |
| 1159 | } |
| 1160 | |
| 1161 | 100% { |
| 1162 | -webkit-transform: rotate(360deg); |
| 1163 | transform: rotate(360deg); |
| 1164 | } |
| 1165 | } |
| 1166 | |
| 1167 | @keyframes dashicons-spin { |
| 1168 | 0% { |
| 1169 | -webkit-transform: rotate(0deg); |
| 1170 | transform: rotate(0deg); |
| 1171 | } |
| 1172 | |
| 1173 | 100% { |
| 1174 | -webkit-transform: rotate(360deg); |
| 1175 | transform: rotate(360deg); |
| 1176 | } |
| 1177 | } |
| 1178 | |
| 1179 | #iawp-parent .image-large { |
| 1180 | width: 36px; |
| 1181 | height: 36px; |
| 1182 | } |
| 1183 | |
| 1184 | #iawp-parent select, #iawp-parent input { |
| 1185 | background-color: #fff; |
| 1186 | border: 1px solid #c5c2cc; |
| 1187 | border-radius: 3px; |
| 1188 | box-shadow: 0 1px 1px rgba(0, 0, 0, .1); |
| 1189 | } |
| 1190 | |
| 1191 | #iawp-parent select:focus, #iawp-parent input:focus { |
| 1192 | border-color: #5123a0; |
| 1193 | outline: none; |
| 1194 | box-shadow: 0 1px 1px rgba(0, 0, 0, .1); |
| 1195 | } |
| 1196 | |
| 1197 | #iawp-parent select.error, #iawp-parent input.error { |
| 1198 | border-color: #d93b29; |
| 1199 | } |
| 1200 | |
| 1201 | #iawp-parent input { |
| 1202 | padding: 2px 12px; |
| 1203 | } |
| 1204 | |
| 1205 | #iawp-parent select { |
| 1206 | padding: 2px 24px 2px 12px; |
| 1207 | } |
| 1208 | |
| 1209 | #iawp-parent select:hover, #iawp-parent select:focus { |
| 1210 | color: #5123a0; |
| 1211 | } |
| 1212 | |
| 1213 | #iawp-parent .block-input { |
| 1214 | width: 100%; |
| 1215 | margin-bottom: 12px; |
| 1216 | display: block; |
| 1217 | } |
| 1218 | |
| 1219 | #iawp-parent label { |
| 1220 | margin: 12px 0; |
| 1221 | display: block; |
| 1222 | } |
| 1223 | |
| 1224 | #iawp-parent .link-dark { |
| 1225 | color: #363040; |
| 1226 | text-decoration: none; |
| 1227 | } |
| 1228 | |
| 1229 | #iawp-parent .link-dark:link, #iawp-parent .link-dark:visited { |
| 1230 | color: #363040; |
| 1231 | } |
| 1232 | |
| 1233 | #iawp-parent .link-dark:hover, #iawp-parent .link-dark:active, #iawp-parent .link-dark:focus, #iawp-parent .link-dark.active { |
| 1234 | color: #18141f; |
| 1235 | } |
| 1236 | |
| 1237 | #iawp-parent .scroll-to-top { |
| 1238 | z-index: 39; |
| 1239 | text-align: center; |
| 1240 | color: #fff; |
| 1241 | cursor: pointer; |
| 1242 | background-color: #5123a0; |
| 1243 | border: none; |
| 1244 | border-radius: 50%; |
| 1245 | padding: 18px; |
| 1246 | line-height: 1; |
| 1247 | transition: background-color .1s, color .1s; |
| 1248 | position: fixed; |
| 1249 | bottom: 32px; |
| 1250 | right: 32px; |
| 1251 | box-shadow: 0 0 12px rgba(0, 0, 0, .1); |
| 1252 | } |
| 1253 | |
| 1254 | #iawp-parent .scroll-to-top:hover, #iawp-parent .scroll-to-top:active, #iawp-parent .scroll-to-top:focus { |
| 1255 | color: #5123a0; |
| 1256 | background-color: #fff; |
| 1257 | } |
| 1258 | |
| 1259 | #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 { |
| 1260 | padding-left: 48px; |
| 1261 | } |
| 1262 | |
| 1263 | #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 { |
| 1264 | display: flex; |
| 1265 | } |
| 1266 | |
| 1267 | #iawp-parent .cell { |
| 1268 | z-index: 3; |
| 1269 | color: #363040; |
| 1270 | padding: 16px 24px; |
| 1271 | font-size: 14px; |
| 1272 | position: relative; |
| 1273 | } |
| 1274 | |
| 1275 | #iawp-parent .cell.hide { |
| 1276 | display: none; |
| 1277 | } |
| 1278 | |
| 1279 | #iawp-parent .cell .animator { |
| 1280 | z-index: 9; |
| 1281 | transition: left .2s ease-in-out; |
| 1282 | position: absolute; |
| 1283 | top: 0; |
| 1284 | bottom: 0; |
| 1285 | left: 100%; |
| 1286 | right: 0; |
| 1287 | } |
| 1288 | |
| 1289 | #iawp-parent .cell .deleted-label { |
| 1290 | opacity: 0; |
| 1291 | margin-left: 4px; |
| 1292 | font-weight: 400; |
| 1293 | } |
| 1294 | |
| 1295 | #iawp-parent .row-number { |
| 1296 | text-align: center; |
| 1297 | color: #9a95a6; |
| 1298 | font-size: 12px; |
| 1299 | font-weight: 400; |
| 1300 | display: none; |
| 1301 | position: absolute; |
| 1302 | right: calc(100% - 32px); |
| 1303 | } |
| 1304 | |
| 1305 | #iawp-parent .row.deleted .cell[data-column="title"] { |
| 1306 | color: #d93b29; |
| 1307 | } |
| 1308 | |
| 1309 | #iawp-parent .row.deleted .cell[data-column="title"]:hover .deleted-label { |
| 1310 | opacity: .5; |
| 1311 | } |
| 1312 | |
| 1313 | #iawp-parent .rows .row:nth-child(2n+1) .cell, #iawp-parent .rows .row:nth-child(2n+1) .cell .animator { |
| 1314 | background-color: #f7f5fa; |
| 1315 | } |
| 1316 | |
| 1317 | #iawp-parent .rows .row:nth-child(2n) .cell, #iawp-parent .rows .row:nth-child(2n) .cell .animator { |
| 1318 | background-color: #fff; |
| 1319 | } |
| 1320 | |
| 1321 | #iawp-parent .rows .cell[data-column="title"], #iawp-parent .rows .cell[data-column="referrer"] { |
| 1322 | font-weight: 700; |
| 1323 | } |
| 1324 | |
| 1325 | #iawp-parent .rows .cell[data-column="url"] { |
| 1326 | color: #9a95a6; |
| 1327 | } |
| 1328 | |
| 1329 | #iawp-parent .rows .cell[data-column="url"] .external-link { |
| 1330 | color: #6d6a73; |
| 1331 | } |
| 1332 | |
| 1333 | #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 { |
| 1334 | color: #18141f; |
| 1335 | } |
| 1336 | |
| 1337 | #iawp-parent .rows .cell[data-column="type"] .dashicons { |
| 1338 | color: #5123a0; |
| 1339 | } |
| 1340 | |
| 1341 | #iawp-parent .cell-content { |
| 1342 | word-break: break-word; |
| 1343 | align-items: center; |
| 1344 | display: flex; |
| 1345 | } |
| 1346 | |
| 1347 | #iawp-parent .cell-content .dashicons, #iawp-parent .cell-content img { |
| 1348 | margin-right: 6px; |
| 1349 | } |
| 1350 | |
| 1351 | #iawp-parent .cell-content .avatar { |
| 1352 | border-radius: 50%; |
| 1353 | } |
| 1354 | |
| 1355 | #iawp-parent .cell-content .flag { |
| 1356 | width: 32px; |
| 1357 | margin-right: 12px; |
| 1358 | } |
| 1359 | |
| 1360 | #iawp-parent .cell-content .external-link { |
| 1361 | color: #18141f; |
| 1362 | font-size: 13px; |
| 1363 | text-decoration: none; |
| 1364 | transition: color .1s; |
| 1365 | } |
| 1366 | |
| 1367 | #iawp-parent .cell-content .external-link:hover, #iawp-parent .cell-content .external-link:active, #iawp-parent .cell-content .external-link:focus { |
| 1368 | color: #6d6a73; |
| 1369 | } |
| 1370 | |
| 1371 | #iawp-parent .cell-content .external-link .dashicons { |
| 1372 | font-size: 16px; |
| 1373 | transition: color .1s; |
| 1374 | } |
| 1375 | |
| 1376 | #iawp-parent .title-large { |
| 1377 | align-self: center; |
| 1378 | padding: 14px; |
| 1379 | font-size: 21px; |
| 1380 | font-weight: 700; |
| 1381 | } |
| 1382 | |
| 1383 | #iawp-parent .title-med, #iawp-parent .settings-container h2 { |
| 1384 | font-size: 18px; |
| 1385 | font-weight: 700; |
| 1386 | } |
| 1387 | |
| 1388 | #iawp-parent .title-small { |
| 1389 | font-size: 14px; |
| 1390 | font-weight: 700; |
| 1391 | } |
| 1392 | |
| 1393 | #iawp-parent .subtitle-small { |
| 1394 | opacity: .8; |
| 1395 | font-size: 12px; |
| 1396 | } |
| 1397 | |
| 1398 | #iawp-parent .tooltip-parent:hover .tooltip { |
| 1399 | opacity: 1; |
| 1400 | visibility: visible; |
| 1401 | } |
| 1402 | |
| 1403 | #iawp-parent .tooltip { |
| 1404 | color: #fff; |
| 1405 | opacity: 0; |
| 1406 | visibility: hidden; |
| 1407 | background: #18141f; |
| 1408 | border-radius: 3px; |
| 1409 | padding: 4px 9px 5px; |
| 1410 | font-size: 12px; |
| 1411 | position: absolute; |
| 1412 | top: 0; |
| 1413 | } |
| 1414 | |
| 1415 | #iawp-parent .tooltip.left { |
| 1416 | right: 100%; |
| 1417 | } |
| 1418 | |
| 1419 | #iawp-parent.dark-mode { |
| 1420 | background-color: #18141f; |
| 1421 | } |
| 1422 | |
| 1423 | #iawp-parent.dark-mode .stat { |
| 1424 | color: #fff; |
| 1425 | background-color: #363040; |
| 1426 | border-color: #363040; |
| 1427 | } |
| 1428 | |
| 1429 | #iawp-parent.dark-mode .stat.unfiltered { |
| 1430 | background-color: #1f1a28; |
| 1431 | border-color: #1f1a28; |
| 1432 | } |
| 1433 | |
| 1434 | #iawp-parent.dark-mode .legend-title { |
| 1435 | color: #fff; |
| 1436 | } |
| 1437 | |
| 1438 | #iawp-parent.dark-mode .legend-item-for-views { |
| 1439 | background-color: rgba(239, 232, 250, .2); |
| 1440 | } |
| 1441 | |
| 1442 | #iawp-parent.dark-mode .chart-inner { |
| 1443 | color: #fff; |
| 1444 | background-color: #363040; |
| 1445 | border-color: #363040; |
| 1446 | } |
| 1447 | |
| 1448 | #iawp-parent.dark-mode .data-error { |
| 1449 | color: #dedae6; |
| 1450 | background-color: #363040; |
| 1451 | } |
| 1452 | |
| 1453 | #iawp-parent.dark-mode .sort-button { |
| 1454 | color: #fff; |
| 1455 | } |
| 1456 | |
| 1457 | #iawp-parent.dark-mode .data-table { |
| 1458 | border-color: #363040; |
| 1459 | } |
| 1460 | |
| 1461 | #iawp-parent.dark-mode .columns .cell { |
| 1462 | background-color: #1f1a28; |
| 1463 | border-bottom: 1px solid #6d6a73; |
| 1464 | } |
| 1465 | |
| 1466 | #iawp-parent.dark-mode .cell { |
| 1467 | color: #dedae6; |
| 1468 | } |
| 1469 | |
| 1470 | #iawp-parent.dark-mode .rows .row:nth-child(2n+1) .cell, #iawp-parent.dark-mode .rows .row:nth-child(2n+1) .cell .animator { |
| 1471 | background-color: #363040; |
| 1472 | } |
| 1473 | |
| 1474 | #iawp-parent.dark-mode .rows .row:nth-child(2n) .cell, #iawp-parent.dark-mode .rows .row:nth-child(2n) .cell .animator { |
| 1475 | background-color: #1f1a28; |
| 1476 | } |
| 1477 | |
| 1478 | #iawp-parent.dark-mode .rows .external-link { |
| 1479 | color: #dedae6; |
| 1480 | } |
| 1481 | |
| 1482 | #iawp-parent.dark-mode .cell[data-column="url"] { |
| 1483 | color: #6d6a73; |
| 1484 | } |
| 1485 | |
| 1486 | #iawp-parent.dark-mode .cell[data-column="url"] .external-link { |
| 1487 | color: #9a95a6; |
| 1488 | } |
| 1489 | |
| 1490 | #iawp-parent.dark-mode .cell[data-column="url"] .external-link:hover, #iawp-parent.dark-mode .cell[data-column="url"] .external-link:active, #iawp-parent.dark-mode .cell[data-column="url"] .external-link:focus, #iawp-parent.dark-mode .cell-content .external-link { |
| 1491 | color: #dedae6; |
| 1492 | } |
| 1493 | |
| 1494 | #iawp-parent.dark-mode .cell-content .external-link:hover, #iawp-parent.dark-mode .cell-content .external-link:active, #iawp-parent.dark-mode .cell-content .external-link:focus { |
| 1495 | color: #f7f5fa; |
| 1496 | } |
| 1497 | |
| 1498 | #iawp-parent .geo-message { |
| 1499 | margin-left: 26px; |
| 1500 | } |
| 1501 | |
| 1502 | .toplevel_page_independent-analytics #fs_connect .iawp-button, .toplevel_page_independent-analytics #fs_connect .button { |
| 1503 | cursor: pointer; |
| 1504 | background: none; |
| 1505 | border: 1px solid rgba(0, 0, 0, 0); |
| 1506 | border-radius: 3px; |
| 1507 | align-items: center; |
| 1508 | margin: 0; |
| 1509 | padding: 12px 16px; |
| 1510 | font-size: 14px; |
| 1511 | line-height: 1; |
| 1512 | text-decoration: none; |
| 1513 | transition: color .1s, background-color .1s, border-color .1s; |
| 1514 | display: inline-flex; |
| 1515 | } |
| 1516 | |
| 1517 | .toplevel_page_independent-analytics #fs_connect .iawp-button .dashicons, .toplevel_page_independent-analytics #fs_connect .button .dashicons { |
| 1518 | margin-right: 6px; |
| 1519 | transition: color .1s; |
| 1520 | } |
| 1521 | |
| 1522 | .toplevel_page_independent-analytics #fs_connect .iawp-button .count, .toplevel_page_independent-analytics #fs_connect .button .count { |
| 1523 | color: #5123a0; |
| 1524 | background: #fff; |
| 1525 | border-radius: 50%; |
| 1526 | justify-content: center; |
| 1527 | align-items: center; |
| 1528 | font-size: 12px; |
| 1529 | font-weight: 700; |
| 1530 | line-height: 1; |
| 1531 | display: flex; |
| 1532 | } |
| 1533 | |
| 1534 | .toplevel_page_independent-analytics #fs_connect .iawp-button .count:not(:empty), .toplevel_page_independent-analytics #fs_connect .button .count:not(:empty) { |
| 1535 | height: 18px; |
| 1536 | width: 18px; |
| 1537 | margin-left: 8px; |
| 1538 | margin-right: -2px; |
| 1539 | } |
| 1540 | |
| 1541 | .toplevel_page_independent-analytics #fs_connect .iawp-button:disabled, .toplevel_page_independent-analytics #fs_connect .button:disabled { |
| 1542 | cursor: default; |
| 1543 | } |
| 1544 | |
| 1545 | .toplevel_page_independent-analytics #fs_connect .iawp-button.white, .toplevel_page_independent-analytics #fs_connect .white.button { |
| 1546 | color: #5123a0; |
| 1547 | background-color: #fff; |
| 1548 | border-color: #fff; |
| 1549 | } |
| 1550 | |
| 1551 | .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 { |
| 1552 | color: #6c46ae; |
| 1553 | } |
| 1554 | |
| 1555 | .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 { |
| 1556 | color: #fff; |
| 1557 | background-color: #5123a0; |
| 1558 | border-color: #5123a0; |
| 1559 | } |
| 1560 | |
| 1561 | .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 { |
| 1562 | color: #fff; |
| 1563 | background-color: #6c46ae; |
| 1564 | border-color: #6c46ae; |
| 1565 | } |
| 1566 | |
| 1567 | .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 { |
| 1568 | opacity: .5; |
| 1569 | } |
| 1570 | |
| 1571 | .toplevel_page_independent-analytics #fs_connect .iawp-button.red, .toplevel_page_independent-analytics #fs_connect .red.button { |
| 1572 | color: #fff; |
| 1573 | background-color: #d93b29; |
| 1574 | border-color: #d93b29; |
| 1575 | } |
| 1576 | |
| 1577 | .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 { |
| 1578 | color: #fff; |
| 1579 | background-color: #d94e3f; |
| 1580 | border-color: #d94e3f; |
| 1581 | } |
| 1582 | |
| 1583 | .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-white, .toplevel_page_independent-analytics #fs_connect .ghost-white.button { |
| 1584 | color: #fff; |
| 1585 | border-color: #fff; |
| 1586 | } |
| 1587 | |
| 1588 | .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 { |
| 1589 | color: #5123a0; |
| 1590 | background-color: #fff; |
| 1591 | border-color: #fff; |
| 1592 | } |
| 1593 | |
| 1594 | .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 { |
| 1595 | color: #fff; |
| 1596 | background: #5123a0; |
| 1597 | } |
| 1598 | |
| 1599 | .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-purple, .toplevel_page_independent-analytics #fs_connect .button { |
| 1600 | color: #5123a0; |
| 1601 | border-color: #5123a0; |
| 1602 | } |
| 1603 | |
| 1604 | .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 { |
| 1605 | color: #fff; |
| 1606 | background-color: #5123a0; |
| 1607 | border-color: #5123a0; |
| 1608 | } |
| 1609 | |
| 1610 | .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-purple:disabled, .toplevel_page_independent-analytics #fs_connect .button:disabled { |
| 1611 | color: #9a95a6; |
| 1612 | background-color: #f7f5fa; |
| 1613 | border-color: #ece9f2; |
| 1614 | } |
| 1615 | |
| 1616 | .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-red, .toplevel_page_independent-analytics #fs_connect .ghost-red.button { |
| 1617 | color: #d93b29; |
| 1618 | border-color: #d93b29; |
| 1619 | } |
| 1620 | |
| 1621 | .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 { |
| 1622 | color: #fff; |
| 1623 | background-color: #d93b29; |
| 1624 | border-color: #d93b29; |
| 1625 | } |
| 1626 | |
| 1627 | .toplevel_page_independent-analytics #fs_connect .iawp-button.ghost-red:disabled, .toplevel_page_independent-analytics #fs_connect .ghost-red.button:disabled { |
| 1628 | color: #9a95a6; |
| 1629 | background-color: #f7f5fa; |
| 1630 | border-color: #ece9f2; |
| 1631 | } |
| 1632 | |
| 1633 | .toplevel_page_independent-analytics #fs_connect .iawp-button.text, .toplevel_page_independent-analytics #fs_connect .text.button { |
| 1634 | color: #5123a0; |
| 1635 | padding: 0; |
| 1636 | } |
| 1637 | |
| 1638 | .toplevel_page_independent-analytics #fs_connect .date-picker { |
| 1639 | padding: 14px 16px 14px 36px; |
| 1640 | } |
| 1641 | |
| 1642 | .toplevel_page_independent-analytics #fs_connect .sort-button { |
| 1643 | color: #18141f; |
| 1644 | cursor: pointer; |
| 1645 | background: none; |
| 1646 | border: none; |
| 1647 | align-items: center; |
| 1648 | padding: 1px; |
| 1649 | display: flex; |
| 1650 | } |
| 1651 | |
| 1652 | .toplevel_page_independent-analytics #fs_connect .sort-button .dashicons-arrow-up, .toplevel_page_independent-analytics #fs_connect .sort-button .dashicons-arrow-down { |
| 1653 | display: none; |
| 1654 | } |
| 1655 | |
| 1656 | .toplevel_page_independent-analytics #fs_connect .sort-button .name { |
| 1657 | font-weight: 700; |
| 1658 | } |
| 1659 | |
| 1660 | .toplevel_page_independent-analytics #fs_connect .sort-button .dashicons { |
| 1661 | color: #c5c2cc; |
| 1662 | } |
| 1663 | |
| 1664 | .toplevel_page_independent-analytics #fs_connect .sort-button.asc .dashicons, .toplevel_page_independent-analytics #fs_connect .sort-button.desc .dashicons { |
| 1665 | color: #5123a0; |
| 1666 | } |
| 1667 | |
| 1668 | .toplevel_page_independent-analytics #fs_connect .sort-button.asc .dashicons-arrow-up { |
| 1669 | display: inline-block; |
| 1670 | } |
| 1671 | |
| 1672 | .toplevel_page_independent-analytics #fs_connect .sort-button.asc .dashicons-arrow-down, .toplevel_page_independent-analytics #fs_connect .sort-button.asc .dashicons-arrow-right { |
| 1673 | display: none; |
| 1674 | } |
| 1675 | |
| 1676 | .toplevel_page_independent-analytics #fs_connect .sort-button.desc .dashicons-arrow-down { |
| 1677 | display: inline-block; |
| 1678 | } |
| 1679 | |
| 1680 | .toplevel_page_independent-analytics #fs_connect .sort-button.desc .dashicons-arrow-up, .toplevel_page_independent-analytics #fs_connect .sort-button.desc .dashicons-arrow-right { |
| 1681 | display: none; |
| 1682 | } |
| 1683 | |
| 1684 | .toplevel_page_independent-analytics #fs_connect .delete-button { |
| 1685 | z-index: 3; |
| 1686 | color: #fff; |
| 1687 | cursor: pointer; |
| 1688 | background-color: #5123a0; |
| 1689 | border: none; |
| 1690 | border-radius: 50%; |
| 1691 | padding: 2px; |
| 1692 | transition: background-color .1s, color .1s; |
| 1693 | position: absolute; |
| 1694 | top: 12px; |
| 1695 | right: -12px; |
| 1696 | } |
| 1697 | |
| 1698 | .toplevel_page_independent-analytics #fs_connect .delete-button:hover { |
| 1699 | background-color: #6c46ae; |
| 1700 | } |
| 1701 | |
| 1702 | .toplevel_page_independent-analytics #fs_connect .button-primary:after { |
| 1703 | display: none; |
| 1704 | } |
| 1705 | |
| 1706 | .iawp-not-real-yet #fs_connect, .toplevel_page_independent-analytics #fs_connect { |
| 1707 | max-width: 1200px; |
| 1708 | width: auto; |
| 1709 | background-color: #fff; |
| 1710 | margin: 20px 20px 0 2px; |
| 1711 | position: relative; |
| 1712 | } |
| 1713 | |
| 1714 | .iawp-not-real-yet #fs_connect .fs-visual, .toplevel_page_independent-analytics #fs_connect .fs-visual { |
| 1715 | background-color: rgba(0, 0, 0, 0); |
| 1716 | align-content: center; |
| 1717 | align-items: center; |
| 1718 | margin: 0 35px; |
| 1719 | padding: 20px 0 0; |
| 1720 | display: flex; |
| 1721 | } |
| 1722 | |
| 1723 | .iawp-not-real-yet #fs_connect .fs-visual .fs-site-icon, .toplevel_page_independent-analytics #fs_connect .fs-visual .fs-site-icon { |
| 1724 | width: 340px; |
| 1725 | border: 0; |
| 1726 | margin: 0; |
| 1727 | position: relative; |
| 1728 | top: auto; |
| 1729 | bottom: auto; |
| 1730 | left: auto; |
| 1731 | right: auto; |
| 1732 | } |
| 1733 | |
| 1734 | .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 { |
| 1735 | display: none; |
| 1736 | } |
| 1737 | |
| 1738 | .iawp-not-real-yet #fs_connect .fs-visual .fs-site-icon .dashicons, .toplevel_page_independent-analytics #fs_connect .fs-visual .fs-site-icon .dashicons { |
| 1739 | visibility: hidden; |
| 1740 | } |
| 1741 | |
| 1742 | .iawp-not-real-yet #fs_connect .fs-visual .fs-site-icon:before, .toplevel_page_independent-analytics #fs_connect .fs-visual .fs-site-icon:before { |
| 1743 | content: ""; |
| 1744 | height: 100%; |
| 1745 | width: 100%; |
| 1746 | background-image: url("../logo.2fc2e39d.svg"); |
| 1747 | background-position: 0; |
| 1748 | background-repeat: no-repeat; |
| 1749 | background-size: 85%; |
| 1750 | display: block; |
| 1751 | position: absolute; |
| 1752 | } |
| 1753 | |
| 1754 | .iawp-not-real-yet #fs_connect .fs-visual .fs-plugin-icon img, .toplevel_page_independent-analytics #fs_connect .fs-visual .fs-plugin-icon img { |
| 1755 | visibility: hidden; |
| 1756 | } |
| 1757 | |
| 1758 | .iawp-not-real-yet #fs_connect .fs-visual .fs-plugin-icon:before, .toplevel_page_independent-analytics #fs_connect .fs-visual .fs-plugin-icon:before { |
| 1759 | content: ""; |
| 1760 | height: 100%; |
| 1761 | width: 100%; |
| 1762 | background-position: 50%; |
| 1763 | background-repeat: no-repeat; |
| 1764 | background-size: 75%; |
| 1765 | display: block; |
| 1766 | position: absolute; |
| 1767 | } |
| 1768 | |
| 1769 | .iawp-not-real-yet #fs_connect .fs-content, .toplevel_page_independent-analytics #fs_connect .fs-content { |
| 1770 | padding: 20px 35px; |
| 1771 | } |
| 1772 | |
| 1773 | .iawp-not-real-yet #fs_connect .fs-content h3, .toplevel_page_independent-analytics #fs_connect .fs-content h3 { |
| 1774 | margin-top: 0; |
| 1775 | font-size: 1.7em; |
| 1776 | } |
| 1777 | |
| 1778 | .iawp-not-real-yet #fs_connect .fs-content p, .toplevel_page_independent-analytics #fs_connect .fs-content p { |
| 1779 | margin-bottom: 20px; |
| 1780 | } |
| 1781 | |
| 1782 | .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 { |
| 1783 | margin-bottom: 0; |
| 1784 | } |
| 1785 | |
| 1786 | .iawp-not-real-yet #fs_connect .fs-content .iawp-powered-by-freemius, .toplevel_page_independent-analytics #fs_connect .fs-content .iawp-powered-by-freemius { |
| 1787 | height: 30px; |
| 1788 | width: 184px; |
| 1789 | background-position: 100%; |
| 1790 | background-repeat: no-repeat; |
| 1791 | background-size: 100px; |
| 1792 | font-size: 1.1em; |
| 1793 | font-style: italic; |
| 1794 | line-height: 30px; |
| 1795 | position: absolute; |
| 1796 | bottom: 20px; |
| 1797 | } |
| 1798 | |
| 1799 | .iawp-not-real-yet #fs_connect .fs-actions, .toplevel_page_independent-analytics #fs_connect .fs-actions { |
| 1800 | background-color: #fff; |
| 1801 | flex-flow: wrap; |
| 1802 | padding: 0 35px 70px; |
| 1803 | display: flex; |
| 1804 | } |
| 1805 | |
| 1806 | .iawp-not-real-yet #fs_connect .fs-actions form, .toplevel_page_independent-analytics #fs_connect .fs-actions form { |
| 1807 | float: none; |
| 1808 | order: 1; |
| 1809 | margin-right: 15px; |
| 1810 | } |
| 1811 | |
| 1812 | .iawp-not-real-yet #fs_connect .fs-actions #skip_activation, .toplevel_page_independent-analytics #fs_connect .fs-actions #skip_activation { |
| 1813 | float: none; |
| 1814 | order: 2; |
| 1815 | } |
| 1816 | |
| 1817 | .iawp-not-real-yet #fs_connect .fs-actions .button, .toplevel_page_independent-analytics #fs_connect .fs-actions .button { |
| 1818 | height: auto; |
| 1819 | padding: 7px 35px; |
| 1820 | } |
| 1821 | |
| 1822 | .iawp-not-real-yet #fs_connect .fs-actions .button.button-primary, .toplevel_page_independent-analytics #fs_connect .fs-actions .button.button-primary { |
| 1823 | padding-left: 35px; |
| 1824 | padding-right: 35px; |
| 1825 | } |
| 1826 | |
| 1827 | .iawp-not-real-yet #fs_connect .fs-permissions, .toplevel_page_independent-analytics #fs_connect .fs-permissions { |
| 1828 | padding: 0; |
| 1829 | position: relative; |
| 1830 | } |
| 1831 | |
| 1832 | .iawp-not-real-yet #fs_connect .fs-permissions .fs-trigger, .toplevel_page_independent-analytics #fs_connect .fs-permissions .fs-trigger { |
| 1833 | color: #5123a0; |
| 1834 | padding: 10px; |
| 1835 | position: absolute; |
| 1836 | top: -115px; |
| 1837 | left: 380px; |
| 1838 | } |
| 1839 | |
| 1840 | .iawp-not-real-yet #fs_connect .fs-permissions .fs-switch, .toplevel_page_independent-analytics #fs_connect .fs-permissions .fs-switch { |
| 1841 | height: 0; |
| 1842 | visibility: hidden; |
| 1843 | width: 0; |
| 1844 | } |
| 1845 | |
| 1846 | .iawp-not-real-yet #fs_connect .fs-permissions.fs-open, .toplevel_page_independent-analytics #fs_connect .fs-permissions.fs-open { |
| 1847 | padding: 20px 35px; |
| 1848 | position: absolute; |
| 1849 | box-shadow: 0 1px 2px rgba(0, 0, 0, .3); |
| 1850 | } |
| 1851 | |
| 1852 | @media screen and (max-width: 479px) { |
| 1853 | .iawp-not-real-yet #fs_connect .fs-permissions ul, .toplevel_page_independent-analytics #fs_connect .fs-permissions ul { |
| 1854 | margin: 20px 35px; |
| 1855 | position: relative; |
| 1856 | top: -60px; |
| 1857 | } |
| 1858 | } |
| 1859 | |
| 1860 | .iawp-not-real-yet #fs_connect .fs-permissions.fs-open ul, .toplevel_page_independent-analytics #fs_connect .fs-permissions.fs-open ul { |
| 1861 | flex-wrap: wrap; |
| 1862 | margin: 0; |
| 1863 | display: flex; |
| 1864 | } |
| 1865 | |
| 1866 | .iawp-not-real-yet #fs_connect .fs-permissions.fs-open ul li, .toplevel_page_independent-analytics #fs_connect .fs-permissions.fs-open ul li { |
| 1867 | flex: 0 50%; |
| 1868 | padding-bottom: 10px; |
| 1869 | } |
| 1870 | |
| 1871 | .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 { |
| 1872 | padding-right: 15px; |
| 1873 | } |
| 1874 | |
| 1875 | .iawp-not-real-yet #fs_connect .fs-permissions.fs-open ul .dashicons, .toplevel_page_independent-analytics #fs_connect .fs-permissions.fs-open ul .dashicons { |
| 1876 | background-position: 0; |
| 1877 | background-repeat: no-repeat; |
| 1878 | background-size: 65%; |
| 1879 | } |
| 1880 | |
| 1881 | .iawp-not-real-yet #fs_connect .fs-terms, .toplevel_page_independent-analytics #fs_connect .fs-terms { |
| 1882 | width: 240px; |
| 1883 | background-color: rgba(0, 0, 0, 0); |
| 1884 | position: absolute; |
| 1885 | bottom: 20px; |
| 1886 | right: 10px; |
| 1887 | } |
| 1888 | |
| 1889 | /*# sourceMappingURL=style.css.map */ |
| 1890 |