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