easepick
3 years ago
dashboard_widget.css
3 years ago
dashboard_widget.css.map
3 years ago
pdf.css
3 years ago
pdf.css.map
3 years ago
style.css
3 years ago
style.css.map
3 years ago
dashboard_widget.css
671 lines
| 1 | .chart-container { |
| 2 | width: 100%; |
| 3 | padding: 0 24px; |
| 4 | } |
| 5 | |
| 6 | .chart-inner { |
| 7 | background: #fff; |
| 8 | border: 1px solid #dedae6; |
| 9 | border-radius: 6px; |
| 10 | padding: 24px; |
| 11 | } |
| 12 | |
| 13 | .legend-container { |
| 14 | margin-bottom: 16px; |
| 15 | } |
| 16 | |
| 17 | .legend-title { |
| 18 | margin: 0; |
| 19 | font-size: 18px; |
| 20 | font-weight: 700; |
| 21 | } |
| 22 | |
| 23 | .legend-list { |
| 24 | margin: 12px 0 0; |
| 25 | } |
| 26 | |
| 27 | .legend-item { |
| 28 | cursor: pointer; |
| 29 | -webkit-user-select: none; |
| 30 | -ms-user-select: none; |
| 31 | user-select: none; |
| 32 | border-radius: 18px; |
| 33 | align-items: center; |
| 34 | margin: 0 4px 4px 0; |
| 35 | padding: 4px 12px 4px 8px; |
| 36 | display: inline-flex; |
| 37 | } |
| 38 | |
| 39 | .legend-item.hidden { |
| 40 | opacity: .5; |
| 41 | } |
| 42 | |
| 43 | .legend-item span { |
| 44 | height: 16px; |
| 45 | width: 16px; |
| 46 | border-radius: 50%; |
| 47 | margin-right: 4px; |
| 48 | display: inline-block; |
| 49 | } |
| 50 | |
| 51 | .legend-item p { |
| 52 | margin: 0; |
| 53 | font-weight: 500; |
| 54 | } |
| 55 | |
| 56 | .legend-item-for-views { |
| 57 | background-color: #efe8fa; |
| 58 | } |
| 59 | |
| 60 | .legend-item-for-views span { |
| 61 | background-color: #5123a0; |
| 62 | } |
| 63 | |
| 64 | .legend-item-for-visitors { |
| 65 | background-color: rgba(246, 157, 10, .2); |
| 66 | } |
| 67 | |
| 68 | .legend-item-for-visitors span { |
| 69 | background-color: #f69d0a; |
| 70 | } |
| 71 | |
| 72 | .legend-item-for-sessions { |
| 73 | background-color: rgba(217, 59, 41, .2); |
| 74 | } |
| 75 | |
| 76 | .legend-item-for-sessions span { |
| 77 | background-color: #d93b29; |
| 78 | } |
| 79 | |
| 80 | .legend-item-for-orders { |
| 81 | background-color: rgba(35, 125, 68, .2); |
| 82 | } |
| 83 | |
| 84 | .legend-item-for-orders span { |
| 85 | background-color: #237d44; |
| 86 | } |
| 87 | |
| 88 | .legend-item-for-net-sales { |
| 89 | background-color: rgba(52, 152, 219, .2); |
| 90 | } |
| 91 | |
| 92 | .legend-item-for-net-sales span { |
| 93 | background-color: #3498db; |
| 94 | } |
| 95 | |
| 96 | svg text { |
| 97 | stroke-width: 0; |
| 98 | } |
| 99 | |
| 100 | .google-visualization-tooltip { |
| 101 | min-width: 128px; |
| 102 | border: 1px solid #dedae6; |
| 103 | border-radius: 6px; |
| 104 | box-shadow: 1px 1px #dedae6; |
| 105 | width: fit-content !important; |
| 106 | } |
| 107 | |
| 108 | .google-visualization-tooltip .google-visualization-tooltip-item-list, .google-visualization-tooltip .google-visualization-tooltip-item { |
| 109 | margin: 0; |
| 110 | padding: 0; |
| 111 | } |
| 112 | |
| 113 | .google-visualization-tooltip .iawp-geo-chart-tooltip { |
| 114 | padding: 16px; |
| 115 | } |
| 116 | |
| 117 | .google-visualization-tooltip .iawp-geo-chart-tooltip img { |
| 118 | width: 48px; |
| 119 | margin-bottom: 8px; |
| 120 | } |
| 121 | |
| 122 | .google-visualization-tooltip .iawp-geo-chart-tooltip h1 { |
| 123 | margin-top: 0; |
| 124 | margin-bottom: 8px; |
| 125 | font-size: 18px; |
| 126 | } |
| 127 | |
| 128 | .google-visualization-tooltip .iawp-geo-chart-tooltip p { |
| 129 | margin-top: 0; |
| 130 | margin-bottom: 2px; |
| 131 | } |
| 132 | |
| 133 | .google-visualization-tooltip .iawp-geo-chart-tooltip p:last-child { |
| 134 | margin-bottom: 0; |
| 135 | } |
| 136 | |
| 137 | .google-visualization-tooltip .iawp-geo-chart-tooltip span { |
| 138 | font-weight: bold; |
| 139 | } |
| 140 | |
| 141 | @media (min-width: 750px) { |
| 142 | .legend-container { |
| 143 | align-items: center; |
| 144 | display: flex; |
| 145 | } |
| 146 | |
| 147 | .legend-list { |
| 148 | justify-content: end; |
| 149 | margin: 0; |
| 150 | display: flex; |
| 151 | } |
| 152 | |
| 153 | .legend-item { |
| 154 | margin: 0 0 0 12px; |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | .quick-stats { |
| 159 | flex-wrap: wrap; |
| 160 | margin: 24px; |
| 161 | display: flex; |
| 162 | } |
| 163 | |
| 164 | .stat { |
| 165 | width: 100%; |
| 166 | background-color: #fff; |
| 167 | border: 1px solid #dedae6; |
| 168 | border-radius: 6px; |
| 169 | margin-bottom: 12px; |
| 170 | padding: 18px; |
| 171 | } |
| 172 | |
| 173 | .stat:last-child { |
| 174 | margin-bottom: 0; |
| 175 | } |
| 176 | |
| 177 | .stat.unfiltered { |
| 178 | background-color: #ece9f2; |
| 179 | border-color: #c5c2cc; |
| 180 | } |
| 181 | |
| 182 | .stat.unfiltered circle { |
| 183 | display: none; |
| 184 | } |
| 185 | |
| 186 | .stat.unfiltered .percentage { |
| 187 | opacity: .7; |
| 188 | } |
| 189 | |
| 190 | .stat .metric { |
| 191 | justify-content: space-between; |
| 192 | font-size: 16px; |
| 193 | display: flex; |
| 194 | } |
| 195 | |
| 196 | .stat .dashicons-filter { |
| 197 | display: none; |
| 198 | } |
| 199 | |
| 200 | .stat .circle { |
| 201 | width: 15px; |
| 202 | height: 15px; |
| 203 | } |
| 204 | |
| 205 | .stat .values { |
| 206 | align-items: baseline; |
| 207 | margin: 12px 0; |
| 208 | font-weight: 700; |
| 209 | display: flex; |
| 210 | } |
| 211 | |
| 212 | .stat .count { |
| 213 | margin-right: 8px; |
| 214 | font-size: 28px; |
| 215 | } |
| 216 | |
| 217 | .stat .growth { |
| 218 | color: #36b366; |
| 219 | font-size: 14px; |
| 220 | } |
| 221 | |
| 222 | .stat .percentage { |
| 223 | border-radius: 24px; |
| 224 | align-items: center; |
| 225 | padding: 4px 10px 4px 2px; |
| 226 | display: flex; |
| 227 | } |
| 228 | |
| 229 | .stat .percentage.up { |
| 230 | color: #36b366; |
| 231 | background-color: #e3fced; |
| 232 | } |
| 233 | |
| 234 | .stat .percentage.down { |
| 235 | color: #d93b29; |
| 236 | background-color: #fce6e3; |
| 237 | } |
| 238 | |
| 239 | .stat .period-label { |
| 240 | color: #9a95a6; |
| 241 | font-size: 16px; |
| 242 | } |
| 243 | |
| 244 | .stat.views circle { |
| 245 | fill: #5123a0; |
| 246 | } |
| 247 | |
| 248 | .stat.views .dashicons-filter { |
| 249 | color: #5123a0; |
| 250 | } |
| 251 | |
| 252 | .stat.visitors circle { |
| 253 | fill: #f69d0a; |
| 254 | } |
| 255 | |
| 256 | .stat.visitors .dashicons-filter { |
| 257 | color: #f69d0a; |
| 258 | } |
| 259 | |
| 260 | .stat.sessions circle { |
| 261 | fill: #d93b29; |
| 262 | } |
| 263 | |
| 264 | .stat.sessions .dashicons-filter { |
| 265 | color: #d93b29; |
| 266 | } |
| 267 | |
| 268 | .stat.orders circle { |
| 269 | fill: #237d44; |
| 270 | } |
| 271 | |
| 272 | .stat.orders .dashicons-filter { |
| 273 | color: #237d44; |
| 274 | } |
| 275 | |
| 276 | .stat.net-sales circle { |
| 277 | fill: #3498db; |
| 278 | } |
| 279 | |
| 280 | .stat.net-sales .dashicons-filter { |
| 281 | color: #3498db; |
| 282 | } |
| 283 | |
| 284 | .filtered .stat:not(.unfiltered) .dashicons-filter { |
| 285 | display: inline-block; |
| 286 | } |
| 287 | |
| 288 | .filtered .stat:not(.unfiltered) .circle { |
| 289 | display: none; |
| 290 | } |
| 291 | |
| 292 | @media (min-width: 650px) { |
| 293 | .quick-stats { |
| 294 | flex-wrap: nowrap; |
| 295 | } |
| 296 | |
| 297 | .quick-stats.total-of-5, .quick-stats.filtered { |
| 298 | flex-wrap: wrap; |
| 299 | } |
| 300 | |
| 301 | .quick-stats.total-of-5 .stat, .quick-stats.filtered .stat { |
| 302 | width: 31%; |
| 303 | margin-bottom: 12px; |
| 304 | } |
| 305 | |
| 306 | .quick-stats.total-of-5 .stat:nth-child(4), .quick-stats.total-of-5 .stat:nth-child(5), .quick-stats.total-of-5 .stat:nth-child(6), .quick-stats.filtered .stat:nth-child(4), .quick-stats.filtered .stat:nth-child(5), .quick-stats.filtered .stat:nth-child(6) { |
| 307 | margin-bottom: 0; |
| 308 | } |
| 309 | |
| 310 | .quick-stats.total-of-6.filtered { |
| 311 | max-width: 1100px; |
| 312 | } |
| 313 | |
| 314 | .quick-stats.total-of-10 .stat:nth-child(4), .quick-stats.total-of-10 .stat:nth-child(5), .quick-stats.total-of-10 .stat:nth-child(6) { |
| 315 | margin-bottom: 12px; |
| 316 | } |
| 317 | |
| 318 | .quick-stats.total-of-10 .stat:nth-child(10) { |
| 319 | margin-bottom: 0; |
| 320 | } |
| 321 | |
| 322 | .stat { |
| 323 | width: 33%; |
| 324 | max-width: 300px; |
| 325 | margin-bottom: 0; |
| 326 | margin-right: 12px; |
| 327 | } |
| 328 | |
| 329 | .stat:last-child { |
| 330 | margin-right: 0; |
| 331 | } |
| 332 | } |
| 333 | |
| 334 | @media (min-width: 1300px) { |
| 335 | .quick-stats.total-of-5 { |
| 336 | flex-wrap: nowrap; |
| 337 | } |
| 338 | |
| 339 | .quick-stats.total-of-5 .stat { |
| 340 | width: 20%; |
| 341 | margin-bottom: 0; |
| 342 | } |
| 343 | |
| 344 | .quick-stats.total-of-10 .stat { |
| 345 | width: 18%; |
| 346 | margin-bottom: 12px; |
| 347 | } |
| 348 | |
| 349 | .quick-stats.total-of-10 .stat:nth-child(6), .quick-stats.total-of-10 .stat:nth-child(7), .quick-stats.total-of-10 .stat:nth-child(8), .quick-stats.total-of-10 .stat:nth-child(9) { |
| 350 | margin-bottom: 0; |
| 351 | } |
| 352 | } |
| 353 | |
| 354 | .iawp-button { |
| 355 | cursor: pointer; |
| 356 | background: none; |
| 357 | border: 1px solid rgba(0, 0, 0, 0); |
| 358 | border-radius: 3px; |
| 359 | align-items: center; |
| 360 | margin: 0; |
| 361 | padding: 12px 16px; |
| 362 | font-size: 14px; |
| 363 | line-height: 1; |
| 364 | text-decoration: none; |
| 365 | transition: color .1s, background-color .1s, border-color .1s; |
| 366 | display: inline-flex; |
| 367 | } |
| 368 | |
| 369 | .iawp-button .dashicons { |
| 370 | margin-right: 6px; |
| 371 | transition: color .1s; |
| 372 | } |
| 373 | |
| 374 | .iawp-button .count { |
| 375 | color: #5123a0; |
| 376 | background: #fff; |
| 377 | border-radius: 50%; |
| 378 | justify-content: center; |
| 379 | align-items: center; |
| 380 | font-size: 12px; |
| 381 | font-weight: 700; |
| 382 | line-height: 1; |
| 383 | display: flex; |
| 384 | } |
| 385 | |
| 386 | .iawp-button .count:not(:empty) { |
| 387 | height: 18px; |
| 388 | width: 18px; |
| 389 | margin-left: 8px; |
| 390 | margin-right: -2px; |
| 391 | } |
| 392 | |
| 393 | .iawp-button .disabled-button-text { |
| 394 | display: none; |
| 395 | } |
| 396 | |
| 397 | .iawp-button:disabled { |
| 398 | cursor: default; |
| 399 | } |
| 400 | |
| 401 | .iawp-button:disabled .disabled-button-text { |
| 402 | display: inline; |
| 403 | } |
| 404 | |
| 405 | .iawp-button:disabled .enabled-button-text { |
| 406 | display: none; |
| 407 | } |
| 408 | |
| 409 | .iawp-button.white { |
| 410 | color: #5123a0; |
| 411 | background-color: #fff; |
| 412 | border-color: #fff; |
| 413 | } |
| 414 | |
| 415 | .iawp-button.white:hover, .iawp-button.white:active, .iawp-button.white:focus, .iawp-button.white .open { |
| 416 | color: #6c46ae; |
| 417 | } |
| 418 | |
| 419 | .iawp-button.purple, .iawp-button-purple { |
| 420 | color: #fff; |
| 421 | background-color: #5123a0; |
| 422 | border-color: #5123a0; |
| 423 | } |
| 424 | |
| 425 | .iawp-button.purple:hover, .iawp-button.purple:active, .iawp-button.purple:focus, .iawp-button.purple .open, .iawp-button-purple:hover, .iawp-button-purple:active, .iawp-button-purple:focus, .iawp-button-purple .open { |
| 426 | color: #fff; |
| 427 | background-color: #6c46ae; |
| 428 | border-color: #6c46ae; |
| 429 | } |
| 430 | |
| 431 | .iawp-button.purple:disabled, .iawp-button-purple:disabled { |
| 432 | color: #9a95a6; |
| 433 | background-color: #f7f5fa; |
| 434 | border-color: #ece9f2; |
| 435 | } |
| 436 | |
| 437 | .iawp-button.red { |
| 438 | color: #fff; |
| 439 | background-color: #d93b29; |
| 440 | border-color: #d93b29; |
| 441 | } |
| 442 | |
| 443 | .iawp-button.red:hover, .iawp-button.red:active, .iawp-button.red:focus, .iawp-button.red .open { |
| 444 | color: #fff; |
| 445 | background-color: #d94e3f; |
| 446 | border-color: #d94e3f; |
| 447 | } |
| 448 | |
| 449 | .iawp-button.orange { |
| 450 | color: #fff; |
| 451 | background-color: #f69d0a; |
| 452 | border-color: #f69d0a; |
| 453 | } |
| 454 | |
| 455 | .iawp-button.orange:hover, .iawp-button.orange:active, .iawp-button.orange:focus, .iawp-button.orange .open { |
| 456 | color: #fff; |
| 457 | background-color: #ffa826; |
| 458 | border-color: #ffa826; |
| 459 | } |
| 460 | |
| 461 | .iawp-button.ghost-white { |
| 462 | color: #fff; |
| 463 | border-color: #fff; |
| 464 | } |
| 465 | |
| 466 | .iawp-button.ghost-white:hover, .iawp-button.ghost-white:active, .iawp-button.ghost-white:focus, .iawp-button.ghost-white.open { |
| 467 | color: #5123a0; |
| 468 | background-color: #fff; |
| 469 | border-color: #fff; |
| 470 | } |
| 471 | |
| 472 | .iawp-button.ghost-white:hover .count, .iawp-button.ghost-white:active .count, .iawp-button.ghost-white:focus .count, .iawp-button.ghost-white.open .count { |
| 473 | color: #fff; |
| 474 | background: #5123a0; |
| 475 | } |
| 476 | |
| 477 | .iawp-button.ghost-purple { |
| 478 | color: #5123a0; |
| 479 | border-color: #5123a0; |
| 480 | } |
| 481 | |
| 482 | .iawp-button.ghost-purple:hover, .iawp-button.ghost-purple:active, .iawp-button.ghost-purple:focus, .iawp-button.ghost-purple .open { |
| 483 | color: #fff; |
| 484 | background-color: #5123a0; |
| 485 | border-color: #5123a0; |
| 486 | } |
| 487 | |
| 488 | .iawp-button.ghost-purple:disabled { |
| 489 | color: #9a95a6; |
| 490 | background-color: #f7f5fa; |
| 491 | border-color: #ece9f2; |
| 492 | } |
| 493 | |
| 494 | .iawp-button.ghost-red { |
| 495 | color: #d93b29; |
| 496 | border-color: #d93b29; |
| 497 | } |
| 498 | |
| 499 | .iawp-button.ghost-red:hover, .iawp-button.ghost-red:active, .iawp-button.ghost-red:focus, .iawp-button.ghost-red .open { |
| 500 | color: #fff; |
| 501 | background-color: #d93b29; |
| 502 | border-color: #d93b29; |
| 503 | } |
| 504 | |
| 505 | .iawp-button.ghost-red:disabled { |
| 506 | color: #9a95a6; |
| 507 | background-color: #f7f5fa; |
| 508 | border-color: #ece9f2; |
| 509 | } |
| 510 | |
| 511 | .iawp-button.text { |
| 512 | color: #5123a0; |
| 513 | padding: 0; |
| 514 | } |
| 515 | |
| 516 | .date-picker { |
| 517 | padding: 14px 16px 14px 36px; |
| 518 | } |
| 519 | |
| 520 | .sort-button { |
| 521 | color: #18141f; |
| 522 | cursor: pointer; |
| 523 | background: none; |
| 524 | border: none; |
| 525 | align-items: center; |
| 526 | padding: 1px; |
| 527 | display: flex; |
| 528 | } |
| 529 | |
| 530 | .sort-button .dashicons-arrow-up, .sort-button .dashicons-arrow-down { |
| 531 | display: none; |
| 532 | } |
| 533 | |
| 534 | .sort-button .name { |
| 535 | font-weight: 700; |
| 536 | } |
| 537 | |
| 538 | .sort-button .dashicons { |
| 539 | color: #c5c2cc; |
| 540 | } |
| 541 | |
| 542 | .sort-button[data-sort-direction="asc"] .dashicons, .sort-button[data-sort-direction="desc"] .dashicons { |
| 543 | color: #5123a0; |
| 544 | } |
| 545 | |
| 546 | .sort-button[data-sort-direction="asc"] .dashicons-arrow-up { |
| 547 | display: inline-block; |
| 548 | } |
| 549 | |
| 550 | .sort-button[data-sort-direction="asc"] .dashicons-arrow-down, .sort-button[data-sort-direction="asc"] .dashicons-arrow-right { |
| 551 | display: none; |
| 552 | } |
| 553 | |
| 554 | .sort-button[data-sort-direction="desc"] .dashicons-arrow-down { |
| 555 | display: inline-block; |
| 556 | } |
| 557 | |
| 558 | .sort-button[data-sort-direction="desc"] .dashicons-arrow-up, .sort-button[data-sort-direction="desc"] .dashicons-arrow-right { |
| 559 | display: none; |
| 560 | } |
| 561 | |
| 562 | .delete-button { |
| 563 | z-index: 3; |
| 564 | color: #fff; |
| 565 | cursor: pointer; |
| 566 | background-color: #5123a0; |
| 567 | border: none; |
| 568 | border-radius: 50%; |
| 569 | padding: 2px; |
| 570 | transition: background-color .1s, color .1s; |
| 571 | position: absolute; |
| 572 | top: 12px; |
| 573 | right: -12px; |
| 574 | } |
| 575 | |
| 576 | .delete-button:hover, .delete-button .open { |
| 577 | background-color: #6c46ae; |
| 578 | } |
| 579 | |
| 580 | #iawp, #iawp * { |
| 581 | box-sizing: border-box; |
| 582 | } |
| 583 | |
| 584 | #iawp .postbox-header .iawp-button { |
| 585 | padding: 6px 8px; |
| 586 | text-decoration: none; |
| 587 | } |
| 588 | |
| 589 | #iawp .inside { |
| 590 | margin-top: 0; |
| 591 | padding: 0; |
| 592 | } |
| 593 | |
| 594 | #iawp .chart-container { |
| 595 | padding: 6px 0 0; |
| 596 | } |
| 597 | |
| 598 | #iawp .chart-inner { |
| 599 | border: none; |
| 600 | padding: 6px 12px 12px; |
| 601 | } |
| 602 | |
| 603 | #iawp .legend-container { |
| 604 | margin-bottom: 10px; |
| 605 | } |
| 606 | |
| 607 | #iawp .legend-item { |
| 608 | margin-left: 8px; |
| 609 | } |
| 610 | |
| 611 | #iawp .legend-item:first-child { |
| 612 | margin-left: 0; |
| 613 | } |
| 614 | |
| 615 | #iawp .legend-item p { |
| 616 | font-size: 11px; |
| 617 | } |
| 618 | |
| 619 | #iawp .legend-item span { |
| 620 | width: 13px; |
| 621 | height: 13px; |
| 622 | } |
| 623 | |
| 624 | #iawp .legend-title { |
| 625 | display: none; |
| 626 | } |
| 627 | |
| 628 | #iawp .quick-stats { |
| 629 | gap: 0; |
| 630 | margin: 0; |
| 631 | display: flex; |
| 632 | } |
| 633 | |
| 634 | #iawp .quick-stats .stat { |
| 635 | width: 50%; |
| 636 | border: none; |
| 637 | border-top: 1px solid #dedae6; |
| 638 | border-radius: 0; |
| 639 | padding: 12px 18px; |
| 640 | } |
| 641 | |
| 642 | #iawp .quick-stats .stat:first-child { |
| 643 | border-right: 1px solid #dedae6; |
| 644 | } |
| 645 | |
| 646 | #iawp .quick-stats .stat .metric { |
| 647 | font-size: 14px; |
| 648 | } |
| 649 | |
| 650 | #iawp .quick-stats .stat .percentage { |
| 651 | padding: 1px 8px 1px 2px; |
| 652 | font-size: 12px; |
| 653 | } |
| 654 | |
| 655 | #iawp .quick-stats .stat .values { |
| 656 | flex-wrap: wrap; |
| 657 | margin: 0; |
| 658 | display: flex; |
| 659 | } |
| 660 | |
| 661 | #iawp .quick-stats .stat .count { |
| 662 | word-break: break-word; |
| 663 | font-size: 24px; |
| 664 | } |
| 665 | |
| 666 | #iawp .quick-stats .stat .period-label { |
| 667 | font-size: 13px; |
| 668 | } |
| 669 | |
| 670 | /*# sourceMappingURL=dashboard_widget.css.map */ |
| 671 |