style.css
878 lines
| 1 | body, #iawp-parent { |
| 2 | background-color: #f7f5fa; |
| 3 | } |
| 4 | |
| 5 | #wpbody-content { |
| 6 | padding-bottom: 0; |
| 7 | } |
| 8 | |
| 9 | #wpbody-content > .error, #wpbody-content > .notice { |
| 10 | display: none; |
| 11 | } |
| 12 | |
| 13 | .loading-icon { |
| 14 | z-index: 39; |
| 15 | opacity: 0; |
| 16 | visibility: hidden; |
| 17 | background: rgba(24, 20, 31, .65); |
| 18 | justify-content: center; |
| 19 | align-items: center; |
| 20 | transition: opacity .3s, visibility .3s; |
| 21 | display: flex; |
| 22 | position: fixed; |
| 23 | top: 0; |
| 24 | bottom: 0; |
| 25 | left: 0; |
| 26 | right: 0; |
| 27 | } |
| 28 | |
| 29 | .loading-icon img { |
| 30 | opacity: 0; |
| 31 | transition: opacity .5s, -webkit-transform .5s, transform .5s; |
| 32 | -webkit-transform: scale(.9); |
| 33 | transform: scale(.9); |
| 34 | } |
| 35 | |
| 36 | #iawp-parent { |
| 37 | min-height: 120vh; |
| 38 | margin-left: -20px; |
| 39 | padding-bottom: 60px; |
| 40 | } |
| 41 | |
| 42 | #iawp-parent * { |
| 43 | box-sizing: border-box; |
| 44 | } |
| 45 | |
| 46 | #iawp-parent.loading .cell .animator { |
| 47 | left: 0; |
| 48 | } |
| 49 | |
| 50 | #iawp-parent.loading .loading-icon { |
| 51 | opacity: 1; |
| 52 | visibility: visible; |
| 53 | } |
| 54 | |
| 55 | #iawp-parent.loading .loading-icon img { |
| 56 | opacity: 1; |
| 57 | -webkit-transform: scale(1); |
| 58 | transform: scale(1); |
| 59 | } |
| 60 | |
| 61 | #iawp-parent .chart-container { |
| 62 | background-color: #f7f5fa; |
| 63 | } |
| 64 | |
| 65 | #iawp-parent .chart-inner { |
| 66 | padding: 24px; |
| 67 | } |
| 68 | |
| 69 | #iawp-parent .data-table { |
| 70 | grid-auto-rows: minmax(30px, auto); |
| 71 | display: grid; |
| 72 | position: relative; |
| 73 | } |
| 74 | |
| 75 | #iawp-parent .data-table[data-column-count="2"] { |
| 76 | grid-template-columns: repeat(2, minmax(70px, auto)); |
| 77 | } |
| 78 | |
| 79 | #iawp-parent .data-table[data-column-count="3"] { |
| 80 | grid-template-columns: repeat(3, minmax(70px, auto)); |
| 81 | } |
| 82 | |
| 83 | #iawp-parent .data-table[data-column-count="4"] { |
| 84 | grid-template-columns: repeat(4, minmax(70px, auto)); |
| 85 | } |
| 86 | |
| 87 | #iawp-parent .data-table[data-column-count="5"] { |
| 88 | grid-template-columns: repeat(5, minmax(70px, auto)); |
| 89 | } |
| 90 | |
| 91 | #iawp-parent .data-table[data-column-count="6"] { |
| 92 | grid-template-columns: repeat(6, minmax(70px, auto)); |
| 93 | } |
| 94 | |
| 95 | #iawp-parent .data-table[data-column-count="7"] { |
| 96 | grid-template-columns: repeat(7, minmax(70px, auto)); |
| 97 | } |
| 98 | |
| 99 | #iawp-parent .data-table .rows, #iawp-parent .data-table .row, #iawp-parent .data-table .columns { |
| 100 | display: contents; |
| 101 | } |
| 102 | |
| 103 | #iawp-parent .data-error { |
| 104 | text-align: center; |
| 105 | color: #363040; |
| 106 | background-color: #ece9f2; |
| 107 | grid-column: 1 / -1; |
| 108 | margin: 0; |
| 109 | padding: 12px 24px; |
| 110 | } |
| 111 | |
| 112 | #iawp-parent .columns .cell { |
| 113 | z-index: 19; |
| 114 | background-color: #f7f5fa; |
| 115 | border-bottom: 1px solid #c5c2cc; |
| 116 | position: -webkit-sticky; |
| 117 | position: sticky; |
| 118 | top: 144px; |
| 119 | } |
| 120 | |
| 121 | @media (min-width: 601px) { |
| 122 | #iawp-parent .columns .cell { |
| 123 | top: 190px; |
| 124 | } |
| 125 | } |
| 126 | |
| 127 | @media (min-width: 783px) { |
| 128 | #iawp-parent .columns .cell { |
| 129 | top: 176px; |
| 130 | } |
| 131 | } |
| 132 | |
| 133 | @media (min-width: 783px) { |
| 134 | #iawp-parent .columns .cell { |
| 135 | top: 114px; |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | #iawp-parent .header { |
| 140 | flex-wrap: row; |
| 141 | background: #fff; |
| 142 | border-bottom: 1px solid #dedae6; |
| 143 | align-items: center; |
| 144 | display: flex; |
| 145 | } |
| 146 | |
| 147 | #iawp-parent .header .logo { |
| 148 | border-right: 1px solid #dedae6; |
| 149 | padding: 14px 32px 12px; |
| 150 | } |
| 151 | |
| 152 | #iawp-parent .header .logo img { |
| 153 | width: 200px; |
| 154 | height: auto; |
| 155 | } |
| 156 | |
| 157 | #iawp-parent .header .kb { |
| 158 | margin: 0 36px 0 auto; |
| 159 | } |
| 160 | |
| 161 | #iawp-parent .header .kb a { |
| 162 | text-decoration: none; |
| 163 | } |
| 164 | |
| 165 | #iawp-parent .header .kb a .dashicons { |
| 166 | margin: 0 0 0 6px; |
| 167 | } |
| 168 | |
| 169 | #iawp-parent .menu { |
| 170 | background: #fff; |
| 171 | padding: 0 0 0 20px; |
| 172 | } |
| 173 | |
| 174 | #iawp-parent .menu-item { |
| 175 | border-bottom: 5px solid rgba(0, 0, 0, 0); |
| 176 | margin: 0 -4px 0 0; |
| 177 | padding: 10px 18px; |
| 178 | font-size: 14px; |
| 179 | display: inline-block; |
| 180 | } |
| 181 | |
| 182 | #iawp-parent .menu-item:hover, #iawp-parent .menu-item:active, #iawp-parent .menu-item:focus { |
| 183 | box-shadow: none; |
| 184 | border-bottom-color: #dedae6; |
| 185 | outline: none; |
| 186 | } |
| 187 | |
| 188 | #iawp-parent .menu-item.active { |
| 189 | border-bottom-color: #5123a0; |
| 190 | } |
| 191 | |
| 192 | #iawp-parent .toolbar { |
| 193 | z-index: 29; |
| 194 | background: #5123a0; |
| 195 | flex-wrap: wrap; |
| 196 | justify-content: center; |
| 197 | display: flex; |
| 198 | position: -webkit-sticky; |
| 199 | position: sticky; |
| 200 | top: 0; |
| 201 | } |
| 202 | |
| 203 | #iawp-parent .toolbar .buttons { |
| 204 | width: 100%; |
| 205 | justify-content: center; |
| 206 | align-items: center; |
| 207 | padding: 18px 24px; |
| 208 | display: flex; |
| 209 | } |
| 210 | |
| 211 | #iawp-parent .toolbar .buttons > div { |
| 212 | margin-right: 12px; |
| 213 | } |
| 214 | |
| 215 | #iawp-parent .toolbar .buttons > div:last-child { |
| 216 | margin-right: 0; |
| 217 | } |
| 218 | |
| 219 | #iawp-parent .toolbar .date-picker-container { |
| 220 | position: relative; |
| 221 | } |
| 222 | |
| 223 | #iawp-parent .toolbar .date-picker-container .dashicons { |
| 224 | color: #5123a0; |
| 225 | position: absolute; |
| 226 | top: 11px; |
| 227 | left: 12px; |
| 228 | } |
| 229 | |
| 230 | #iawp-parent .toolbar .quick-stats { |
| 231 | width: 100%; |
| 232 | margin-left: auto; |
| 233 | display: flex; |
| 234 | } |
| 235 | |
| 236 | #iawp-parent .toolbar .stat { |
| 237 | width: 50%; |
| 238 | color: #fff; |
| 239 | background: #3a1e6b; |
| 240 | flex-direction: column; |
| 241 | justify-content: center; |
| 242 | align-items: center; |
| 243 | padding: 12px 32px; |
| 244 | display: flex; |
| 245 | } |
| 246 | |
| 247 | #iawp-parent .toolbar .stat.difference.positive { |
| 248 | background: #36b366; |
| 249 | } |
| 250 | |
| 251 | #iawp-parent .toolbar .stat.difference.negative { |
| 252 | background: #d93b29; |
| 253 | } |
| 254 | |
| 255 | #iawp-parent .toolbar .stat .percentage { |
| 256 | align-items: center; |
| 257 | display: flex; |
| 258 | } |
| 259 | |
| 260 | @media (min-width: 601px) { |
| 261 | #iawp-parent .toolbar { |
| 262 | top: 46px; |
| 263 | } |
| 264 | } |
| 265 | |
| 266 | @media (min-width: 783px) { |
| 267 | #iawp-parent .toolbar { |
| 268 | top: 32px; |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | @media (min-width: 1200px) { |
| 273 | #iawp-parent .toolbar { |
| 274 | flex-wrap: nowrap; |
| 275 | justify-content: flex-start; |
| 276 | } |
| 277 | |
| 278 | #iawp-parent .toolbar .buttons { |
| 279 | justify-content: flex-start; |
| 280 | } |
| 281 | |
| 282 | #iawp-parent .toolbar .buttons, #iawp-parent .toolbar .quick-stats { |
| 283 | width: auto; |
| 284 | } |
| 285 | |
| 286 | #iawp-parent .toolbar .stat { |
| 287 | width: auto; |
| 288 | padding: 0 24px; |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | #iawp-parent .filters .condition { |
| 293 | margin-bottom: 12px; |
| 294 | padding-right: 24px; |
| 295 | position: relative; |
| 296 | } |
| 297 | |
| 298 | #iawp-parent .filters .operator-select-container, #iawp-parent .filters .operand-field-container { |
| 299 | position: relative; |
| 300 | } |
| 301 | |
| 302 | #iawp-parent .filters .operator-select-container:before, #iawp-parent .filters .operand-field-container:before { |
| 303 | content: ""; |
| 304 | z-index: 3; |
| 305 | background: #efe8fa; |
| 306 | border-radius: 3px; |
| 307 | position: absolute; |
| 308 | top: 1px; |
| 309 | bottom: 1px; |
| 310 | left: 1px; |
| 311 | right: 1px; |
| 312 | } |
| 313 | |
| 314 | #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 { |
| 315 | display: none; |
| 316 | } |
| 317 | |
| 318 | #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 { |
| 319 | z-index: 9; |
| 320 | display: block; |
| 321 | position: relative; |
| 322 | } |
| 323 | |
| 324 | #iawp-parent .condition-blueprint { |
| 325 | display: none; |
| 326 | } |
| 327 | |
| 328 | #iawp-parent .input-group { |
| 329 | background: #f7f5fa; |
| 330 | border: 1px solid #dedae6; |
| 331 | border-radius: 3px; |
| 332 | justify-content: space-between; |
| 333 | padding: 8px; |
| 334 | display: flex; |
| 335 | } |
| 336 | |
| 337 | #iawp-parent .input-group > div { |
| 338 | flex: 1; |
| 339 | margin: 0 3px; |
| 340 | } |
| 341 | |
| 342 | #iawp-parent .input-group > div select, #iawp-parent .input-group > div input { |
| 343 | width: 100%; |
| 344 | } |
| 345 | |
| 346 | #iawp-parent .modal-parent.small { |
| 347 | position: relative; |
| 348 | } |
| 349 | |
| 350 | #iawp-parent .modal { |
| 351 | z-index: 19; |
| 352 | opacity: 0; |
| 353 | visibility: hidden; |
| 354 | background: #fff; |
| 355 | border-radius: 3px; |
| 356 | transition: opacity .2s, visibility .2s, -webkit-transform .2s, transform .2s; |
| 357 | position: absolute; |
| 358 | top: calc(100% + 16px); |
| 359 | left: 0; |
| 360 | box-shadow: 0 4px 8px rgba(0, 0, 0, .1); |
| 361 | } |
| 362 | |
| 363 | #iawp-parent .modal.show { |
| 364 | opacity: 1; |
| 365 | visibility: visible; |
| 366 | -webkit-transform: translateY(-4px); |
| 367 | transform: translateY(-4px); |
| 368 | } |
| 369 | |
| 370 | #iawp-parent .modal.small { |
| 371 | width: 220px; |
| 372 | } |
| 373 | |
| 374 | #iawp-parent .modal.large { |
| 375 | width: 96%; |
| 376 | max-width: 800px; |
| 377 | top: 80px; |
| 378 | left: 50%; |
| 379 | -webkit-transform: translateX(-50%); |
| 380 | transform: translateX(-50%); |
| 381 | } |
| 382 | |
| 383 | #iawp-parent .modal.large.show { |
| 384 | -webkit-transform: translateY(-4px)translateX(-50%); |
| 385 | transform: translateY(-4px)translateX(-50%); |
| 386 | } |
| 387 | |
| 388 | #iawp-parent .modal-inner { |
| 389 | padding: 12px 24px; |
| 390 | } |
| 391 | |
| 392 | #iawp-parent .modal-inner > div { |
| 393 | margin-bottom: 18px; |
| 394 | } |
| 395 | |
| 396 | @media (min-width: 1500px) { |
| 397 | #iawp-parent .modal-parent { |
| 398 | position: relative; |
| 399 | } |
| 400 | |
| 401 | #iawp-parent .modal.large { |
| 402 | width: 800px; |
| 403 | top: calc(100% + 12px); |
| 404 | left: 0; |
| 405 | -webkit-transform: none; |
| 406 | transform: none; |
| 407 | } |
| 408 | |
| 409 | #iawp-parent .modal.large.show { |
| 410 | -webkit-transform: translateY(-4px); |
| 411 | transform: translateY(-4px); |
| 412 | } |
| 413 | } |
| 414 | |
| 415 | #iawp-parent .settings-container { |
| 416 | color: #18141f; |
| 417 | max-width: 700px; |
| 418 | background: #fff; |
| 419 | border: 1px solid #dedae6; |
| 420 | border-radius: 3px; |
| 421 | margin: 24px; |
| 422 | padding: 12px 24px 24px; |
| 423 | } |
| 424 | |
| 425 | #iawp-parent .settings-container p.submit { |
| 426 | padding-bottom: 0; |
| 427 | } |
| 428 | |
| 429 | #iawp-parent .settings-container label { |
| 430 | display: inline; |
| 431 | } |
| 432 | |
| 433 | #iawp-parent .settings-container .button-group { |
| 434 | margin: 12px 0; |
| 435 | } |
| 436 | |
| 437 | #iawp-parent .settings-container .button-group button { |
| 438 | margin-right: 12px; |
| 439 | } |
| 440 | |
| 441 | #iawp-parent .settings-container th { |
| 442 | width: 240px; |
| 443 | } |
| 444 | |
| 445 | #iawp-parent .settings-container td { |
| 446 | margin-top: 12px; |
| 447 | } |
| 448 | |
| 449 | @media (min-width: 783px) { |
| 450 | #iawp-parent .settings-container td { |
| 451 | margin-top: 0; |
| 452 | } |
| 453 | } |
| 454 | |
| 455 | #iawp-parent .iawp-button { |
| 456 | cursor: pointer; |
| 457 | background: none; |
| 458 | border: 1px solid rgba(0, 0, 0, 0); |
| 459 | border-radius: 3px; |
| 460 | align-items: center; |
| 461 | margin: 0; |
| 462 | padding: 12px 16px; |
| 463 | font-size: 14px; |
| 464 | line-height: 1; |
| 465 | transition: color .1s, background-color .1s, border-color .1s; |
| 466 | display: inline-flex; |
| 467 | } |
| 468 | |
| 469 | #iawp-parent .iawp-button .dashicons { |
| 470 | margin-right: 6px; |
| 471 | transition: color .1s; |
| 472 | } |
| 473 | |
| 474 | #iawp-parent .iawp-button .count { |
| 475 | color: #5123a0; |
| 476 | background: #fff; |
| 477 | border-radius: 50%; |
| 478 | justify-content: center; |
| 479 | align-items: center; |
| 480 | font-size: 12px; |
| 481 | font-weight: 700; |
| 482 | line-height: 1; |
| 483 | display: flex; |
| 484 | } |
| 485 | |
| 486 | #iawp-parent .iawp-button.active .count { |
| 487 | height: 18px; |
| 488 | width: 18px; |
| 489 | margin-left: 8px; |
| 490 | margin-right: -2px; |
| 491 | } |
| 492 | |
| 493 | #iawp-parent .iawp-button:disabled { |
| 494 | cursor: default; |
| 495 | opacity: .7; |
| 496 | } |
| 497 | |
| 498 | #iawp-parent .iawp-button.white { |
| 499 | color: #5123a0; |
| 500 | background-color: #fff; |
| 501 | border-color: #fff; |
| 502 | } |
| 503 | |
| 504 | #iawp-parent .iawp-button.white:hover, #iawp-parent .iawp-button.white:active, #iawp-parent .iawp-button.white:focus { |
| 505 | color: #6c46ae; |
| 506 | } |
| 507 | |
| 508 | #iawp-parent .iawp-button.purple { |
| 509 | color: #fff; |
| 510 | background-color: #5123a0; |
| 511 | border-color: #5123a0; |
| 512 | } |
| 513 | |
| 514 | #iawp-parent .iawp-button.purple:hover, #iawp-parent .iawp-button.purple:active, #iawp-parent .iawp-button.purple:focus { |
| 515 | color: #fff; |
| 516 | background-color: #6c46ae; |
| 517 | border-color: #6c46ae; |
| 518 | } |
| 519 | |
| 520 | #iawp-parent .iawp-button.ghost-white { |
| 521 | color: #fff; |
| 522 | border-color: #fff; |
| 523 | } |
| 524 | |
| 525 | #iawp-parent .iawp-button.ghost-white:hover, #iawp-parent .iawp-button.ghost-white:active, #iawp-parent .iawp-button.ghost-white:focus, #iawp-parent .iawp-button.ghost-white.open { |
| 526 | color: #5123a0; |
| 527 | background-color: #fff; |
| 528 | border-color: #fff; |
| 529 | } |
| 530 | |
| 531 | #iawp-parent .iawp-button.ghost-white:hover .count, #iawp-parent .iawp-button.ghost-white:active .count, #iawp-parent .iawp-button.ghost-white:focus .count, #iawp-parent .iawp-button.ghost-white.open .count { |
| 532 | color: #fff; |
| 533 | background: #5123a0; |
| 534 | } |
| 535 | |
| 536 | #iawp-parent .iawp-button.ghost-purple { |
| 537 | color: #5123a0; |
| 538 | border-color: #5123a0; |
| 539 | } |
| 540 | |
| 541 | #iawp-parent .iawp-button.ghost-purple:hover, #iawp-parent .iawp-button.ghost-purple:active, #iawp-parent .iawp-button.ghost-purple:focus { |
| 542 | color: #fff; |
| 543 | background-color: #5123a0; |
| 544 | border-color: #5123a0; |
| 545 | } |
| 546 | |
| 547 | #iawp-parent .iawp-button.text { |
| 548 | color: #5123a0; |
| 549 | padding: 0; |
| 550 | } |
| 551 | |
| 552 | #iawp-parent .date-picker { |
| 553 | padding: 14px 16px 14px 36px; |
| 554 | } |
| 555 | |
| 556 | #iawp-parent .sort-button { |
| 557 | color: #18141f; |
| 558 | cursor: pointer; |
| 559 | background: none; |
| 560 | border: none; |
| 561 | align-items: center; |
| 562 | padding: 1px; |
| 563 | display: flex; |
| 564 | } |
| 565 | |
| 566 | #iawp-parent .sort-button .dashicons-arrow-up, #iawp-parent .sort-button .dashicons-arrow-down { |
| 567 | display: none; |
| 568 | } |
| 569 | |
| 570 | #iawp-parent .sort-button .name { |
| 571 | font-weight: 700; |
| 572 | } |
| 573 | |
| 574 | #iawp-parent .sort-button .dashicons { |
| 575 | color: #c5c2cc; |
| 576 | } |
| 577 | |
| 578 | #iawp-parent .sort-button.asc .dashicons, #iawp-parent .sort-button.desc .dashicons { |
| 579 | color: #5123a0; |
| 580 | } |
| 581 | |
| 582 | #iawp-parent .sort-button.asc .dashicons-arrow-up { |
| 583 | display: inline-block; |
| 584 | } |
| 585 | |
| 586 | #iawp-parent .sort-button.asc .dashicons-arrow-down, #iawp-parent .sort-button.asc .dashicons-arrow-right { |
| 587 | display: none; |
| 588 | } |
| 589 | |
| 590 | #iawp-parent .sort-button.desc .dashicons-arrow-down { |
| 591 | display: inline-block; |
| 592 | } |
| 593 | |
| 594 | #iawp-parent .sort-button.desc .dashicons-arrow-up, #iawp-parent .sort-button.desc .dashicons-arrow-right { |
| 595 | display: none; |
| 596 | } |
| 597 | |
| 598 | #iawp-parent .delete-button { |
| 599 | z-index: 3; |
| 600 | color: #fff; |
| 601 | cursor: pointer; |
| 602 | background-color: #5123a0; |
| 603 | border: none; |
| 604 | border-radius: 50%; |
| 605 | padding: 2px; |
| 606 | transition: background-color .1s, color .1s; |
| 607 | position: absolute; |
| 608 | top: 12px; |
| 609 | right: -12px; |
| 610 | } |
| 611 | |
| 612 | #iawp-parent .delete-button:hover { |
| 613 | background-color: #6c46ae; |
| 614 | } |
| 615 | |
| 616 | #iawp-parent .icon-med { |
| 617 | margin-right: 3px; |
| 618 | font-size: 21px; |
| 619 | } |
| 620 | |
| 621 | #iawp-parent .image-large { |
| 622 | width: 36px; |
| 623 | height: 36px; |
| 624 | } |
| 625 | |
| 626 | #iawp-parent select, #iawp-parent input { |
| 627 | background-color: #fff; |
| 628 | border: 1px solid #c5c2cc; |
| 629 | border-radius: 3px; |
| 630 | box-shadow: 0 1px 1px rgba(0, 0, 0, .1); |
| 631 | } |
| 632 | |
| 633 | #iawp-parent select:focus, #iawp-parent input:focus { |
| 634 | border-color: #5123a0; |
| 635 | outline: none; |
| 636 | box-shadow: 0 1px 1px rgba(0, 0, 0, .1); |
| 637 | } |
| 638 | |
| 639 | #iawp-parent select.error, #iawp-parent input.error { |
| 640 | border-color: #d93b29; |
| 641 | } |
| 642 | |
| 643 | #iawp-parent input { |
| 644 | padding: 2px 12px; |
| 645 | } |
| 646 | |
| 647 | #iawp-parent select { |
| 648 | padding: 2px 24px 2px 12px; |
| 649 | } |
| 650 | |
| 651 | #iawp-parent select:hover, #iawp-parent select:focus { |
| 652 | color: #5123a0; |
| 653 | } |
| 654 | |
| 655 | #iawp-parent label { |
| 656 | margin: 12px 0; |
| 657 | display: block; |
| 658 | } |
| 659 | |
| 660 | #iawp-parent .link-dark { |
| 661 | color: #363040; |
| 662 | text-decoration: none; |
| 663 | } |
| 664 | |
| 665 | #iawp-parent .link-dark:link, #iawp-parent .link-dark:visited { |
| 666 | color: #363040; |
| 667 | } |
| 668 | |
| 669 | #iawp-parent .link-dark:hover, #iawp-parent .link-dark:active, #iawp-parent .link-dark:focus, #iawp-parent .link-dark.active { |
| 670 | color: #18141f; |
| 671 | } |
| 672 | |
| 673 | #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 { |
| 674 | padding-left: 48px; |
| 675 | } |
| 676 | |
| 677 | #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 { |
| 678 | display: flex; |
| 679 | } |
| 680 | |
| 681 | #iawp-parent .cell { |
| 682 | z-index: 3; |
| 683 | color: #363040; |
| 684 | padding: 16px 24px; |
| 685 | font-size: 14px; |
| 686 | position: relative; |
| 687 | } |
| 688 | |
| 689 | #iawp-parent .cell.hide { |
| 690 | display: none; |
| 691 | } |
| 692 | |
| 693 | #iawp-parent .cell .animator { |
| 694 | z-index: 9; |
| 695 | transition: left .2s ease-in-out; |
| 696 | position: absolute; |
| 697 | top: 0; |
| 698 | bottom: 0; |
| 699 | left: 100%; |
| 700 | right: 0; |
| 701 | } |
| 702 | |
| 703 | #iawp-parent .cell .deleted-label { |
| 704 | opacity: 0; |
| 705 | margin-left: 4px; |
| 706 | font-weight: 400; |
| 707 | } |
| 708 | |
| 709 | #iawp-parent .row-number { |
| 710 | text-align: center; |
| 711 | color: #9a95a6; |
| 712 | font-size: 12px; |
| 713 | font-weight: 400; |
| 714 | display: none; |
| 715 | position: absolute; |
| 716 | right: calc(100% - 32px); |
| 717 | } |
| 718 | |
| 719 | #iawp-parent .row.deleted .cell[data-column="title"] { |
| 720 | color: #d93b29; |
| 721 | } |
| 722 | |
| 723 | #iawp-parent .row.deleted .cell[data-column="title"]:hover .deleted-label { |
| 724 | opacity: .5; |
| 725 | } |
| 726 | |
| 727 | #iawp-parent .rows .row:nth-child(2n+1) .cell, #iawp-parent .rows .row:nth-child(2n+1) .cell .animator { |
| 728 | background-color: #ece9f2; |
| 729 | } |
| 730 | |
| 731 | #iawp-parent .rows .row:nth-child(2n) .cell, #iawp-parent .rows .row:nth-child(2n) .cell .animator { |
| 732 | background-color: #f7f5fa; |
| 733 | } |
| 734 | |
| 735 | #iawp-parent .rows .cell[data-column="title"], #iawp-parent .rows .cell[data-column="referrer"] { |
| 736 | font-weight: 700; |
| 737 | } |
| 738 | |
| 739 | #iawp-parent .rows .cell[data-column="url"] { |
| 740 | color: #9a95a6; |
| 741 | } |
| 742 | |
| 743 | #iawp-parent .rows .cell[data-column="url"] .external-link { |
| 744 | color: #6d6a73; |
| 745 | } |
| 746 | |
| 747 | #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 { |
| 748 | color: #18141f; |
| 749 | } |
| 750 | |
| 751 | #iawp-parent .rows .cell[data-column="type"] .dashicons { |
| 752 | color: #5123a0; |
| 753 | } |
| 754 | |
| 755 | #iawp-parent .cell-content { |
| 756 | align-items: center; |
| 757 | display: flex; |
| 758 | } |
| 759 | |
| 760 | #iawp-parent .cell-content .dashicons, #iawp-parent .cell-content img { |
| 761 | margin-right: 6px; |
| 762 | } |
| 763 | |
| 764 | #iawp-parent .cell-content .avatar { |
| 765 | border-radius: 50%; |
| 766 | } |
| 767 | |
| 768 | #iawp-parent .cell-content .external-link { |
| 769 | color: #18141f; |
| 770 | font-size: 13px; |
| 771 | text-decoration: none; |
| 772 | transition: color .1s; |
| 773 | } |
| 774 | |
| 775 | #iawp-parent .cell-content .external-link:hover, #iawp-parent .cell-content .external-link:active, #iawp-parent .cell-content .external-link:focus { |
| 776 | color: #6d6a73; |
| 777 | } |
| 778 | |
| 779 | #iawp-parent .cell-content .external-link .dashicons { |
| 780 | font-size: 16px; |
| 781 | transition: color .1s; |
| 782 | } |
| 783 | |
| 784 | #iawp-parent .title-large { |
| 785 | align-self: center; |
| 786 | padding: 14px; |
| 787 | font-size: 21px; |
| 788 | font-weight: 700; |
| 789 | } |
| 790 | |
| 791 | #iawp-parent .title-med, #iawp-parent .settings-container h2 { |
| 792 | font-size: 18px; |
| 793 | font-weight: 700; |
| 794 | } |
| 795 | |
| 796 | #iawp-parent .title-small { |
| 797 | font-size: 14px; |
| 798 | font-weight: 700; |
| 799 | } |
| 800 | |
| 801 | #iawp-parent .subtitle-small { |
| 802 | opacity: .8; |
| 803 | font-size: 12px; |
| 804 | } |
| 805 | |
| 806 | #iawp-parent .tooltip-parent:hover .tooltip { |
| 807 | opacity: 1; |
| 808 | visibility: visible; |
| 809 | } |
| 810 | |
| 811 | #iawp-parent .tooltip { |
| 812 | color: #fff; |
| 813 | opacity: 0; |
| 814 | visibility: hidden; |
| 815 | background: #18141f; |
| 816 | border-radius: 3px; |
| 817 | padding: 4px 9px 5px; |
| 818 | font-size: 12px; |
| 819 | position: absolute; |
| 820 | top: 0; |
| 821 | } |
| 822 | |
| 823 | #iawp-parent .tooltip.left { |
| 824 | right: 100%; |
| 825 | } |
| 826 | |
| 827 | #iawp-parent.dark-mode, #iawp-parent.dark-mode .chart-container { |
| 828 | background-color: #18141f; |
| 829 | } |
| 830 | |
| 831 | #iawp-parent.dark-mode .data-error { |
| 832 | color: #dedae6; |
| 833 | background-color: #1f1a28; |
| 834 | } |
| 835 | |
| 836 | #iawp-parent.dark-mode .sort-button { |
| 837 | color: #fff; |
| 838 | } |
| 839 | |
| 840 | #iawp-parent.dark-mode .columns .cell { |
| 841 | background-color: #18141f; |
| 842 | border-bottom: 1px solid #363040; |
| 843 | } |
| 844 | |
| 845 | #iawp-parent.dark-mode .cell { |
| 846 | color: #dedae6; |
| 847 | } |
| 848 | |
| 849 | #iawp-parent.dark-mode .rows .row:nth-child(2n+1) .cell, #iawp-parent.dark-mode .rows .row:nth-child(2n+1) .cell .animator { |
| 850 | background-color: #1f1a28; |
| 851 | } |
| 852 | |
| 853 | #iawp-parent.dark-mode .rows .row:nth-child(2n) .cell, #iawp-parent.dark-mode .rows .row:nth-child(2n) .cell .animator { |
| 854 | background-color: #18141f; |
| 855 | } |
| 856 | |
| 857 | #iawp-parent.dark-mode .rows .external-link { |
| 858 | color: #dedae6; |
| 859 | } |
| 860 | |
| 861 | #iawp-parent.dark-mode .cell[data-column="url"] { |
| 862 | color: #6d6a73; |
| 863 | } |
| 864 | |
| 865 | #iawp-parent.dark-mode .cell[data-column="url"] .external-link { |
| 866 | color: #9a95a6; |
| 867 | } |
| 868 | |
| 869 | #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 { |
| 870 | color: #dedae6; |
| 871 | } |
| 872 | |
| 873 | #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 { |
| 874 | color: #f7f5fa; |
| 875 | } |
| 876 | |
| 877 | /*# sourceMappingURL=style.css.map */ |
| 878 |