| @@ -1482,13 +1482,209 @@ | ||
| 1482 | 1482 | -webkit-box-shadow: none; |
| 1483 | 1483 | box-shadow: none; |
| 1484 | 1484 | } |
| 1485 | 1485 | |
| 1486 | -.toplevel_page_merchant { | |
| 1486 | +.merchant-white-label-field .merchant-module-page-setting-field-inner.disabled { | |
| 1487 | + cursor: pointer; | |
| 1488 | +} | |
| 1489 | +.merchant-white-label-field .merchant-module-page-setting-field-inner.disabled input, | |
| 1490 | +.merchant-white-label-field .merchant-module-page-setting-field-inner.disabled select, | |
| 1491 | +.merchant-white-label-field .merchant-module-page-setting-field-inner.disabled textarea, | |
| 1492 | +.merchant-white-label-field .merchant-module-page-setting-field-inner.disabled button, | |
| 1493 | +.merchant-white-label-field .merchant-module-page-setting-field-inner.disabled label { | |
| 1494 | + pointer-events: none; | |
| 1495 | +} | |
| 1496 | + | |
| 1497 | +.merchant-white-label-bookmark { | |
| 1498 | + display: -webkit-box; | |
| 1499 | + display: -ms-flexbox; | |
| 1500 | + display: flex; | |
| 1501 | + gap: 10px; | |
| 1502 | + margin-bottom: 16px; | |
| 1503 | + padding: 12px 16px; | |
| 1504 | + border: 1px solid #e0c470; | |
| 1505 | + border-radius: 4px; | |
| 1506 | + background-color: #fff8e5; | |
| 1507 | + color: #674600; | |
| 1508 | +} | |
| 1509 | +.merchant-white-label-bookmark .dashicons { | |
| 1510 | + -ms-flex-negative: 0; | |
| 1511 | + flex-shrink: 0; | |
| 1512 | + line-height: 1.5; | |
| 1513 | +} | |
| 1514 | +.merchant-white-label-bookmark a { | |
| 1515 | + word-break: break-all; | |
| 1516 | +} | |
| 1517 | + | |
| 1518 | +.merchant-white-label-modal-overlay { | |
| 1519 | + position: fixed; | |
| 1520 | + top: 0; | |
| 1521 | + left: 0; | |
| 1522 | + right: 0; | |
| 1523 | + bottom: 0; | |
| 1524 | + z-index: 99999; | |
| 1525 | + display: -webkit-box; | |
| 1526 | + display: -ms-flexbox; | |
| 1527 | + display: flex; | |
| 1528 | + -webkit-box-align: center; | |
| 1529 | + -ms-flex-align: center; | |
| 1530 | + align-items: center; | |
| 1531 | + -webkit-box-pack: center; | |
| 1532 | + -ms-flex-pack: center; | |
| 1533 | + justify-content: center; | |
| 1534 | + background-color: rgba(0, 0, 0, 0.6); | |
| 1535 | + opacity: 0; | |
| 1536 | + visibility: hidden; | |
| 1537 | + pointer-events: none; | |
| 1538 | + -webkit-transition: all 0.2s; | |
| 1539 | + transition: all 0.2s; | |
| 1540 | +} | |
| 1541 | +.merchant-white-label-modal-overlay.merchant-show { | |
| 1542 | + pointer-events: auto; | |
| 1543 | + opacity: 1; | |
| 1544 | + visibility: visible; | |
| 1545 | +} | |
| 1546 | + | |
| 1547 | +.merchant-white-label-modal-box { | |
| 1548 | + position: relative; | |
| 1549 | + width: 460px; | |
| 1550 | + max-width: 92%; | |
| 1551 | + padding: 30px 40px 0; | |
| 1552 | + overflow: hidden; | |
| 1553 | + border-radius: 8px; | |
| 1554 | + background-color: #fff; | |
| 1555 | + -webkit-box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 6px 16px rgba(0, 0, 0, 0.12); | |
| 1556 | + box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 6px 16px rgba(0, 0, 0, 0.12); | |
| 1557 | + text-align: center; | |
| 1558 | +} | |
| 1559 | + | |
| 1560 | +.merchant-white-label-modal-close { | |
| 1561 | + position: absolute; | |
| 1562 | + top: 16px; | |
| 1563 | + right: 16px; | |
| 1564 | + display: -webkit-box; | |
| 1565 | + display: -ms-flexbox; | |
| 1566 | + display: flex; | |
| 1567 | + -webkit-box-align: center; | |
| 1568 | + -ms-flex-align: center; | |
| 1569 | + align-items: center; | |
| 1570 | + -webkit-box-pack: center; | |
| 1571 | + -ms-flex-pack: center; | |
| 1572 | + justify-content: center; | |
| 1573 | + width: 28px; | |
| 1574 | + height: 28px; | |
| 1575 | + padding: 0; | |
| 1576 | + border: none; | |
| 1577 | + background: none; | |
| 1578 | + color: #a7aaad; | |
| 1579 | + cursor: pointer; | |
| 1580 | + -webkit-transition: color 0.15s; | |
| 1581 | + transition: color 0.15s; | |
| 1582 | +} | |
| 1583 | +.merchant-white-label-modal-close:hover, .merchant-white-label-modal-close:focus { | |
| 1584 | + color: #50575e; | |
| 1585 | +} | |
| 1586 | + | |
| 1587 | +.merchant-white-label-modal-lock { | |
| 1588 | + color: #a7aaad; | |
| 1589 | + line-height: 1; | |
| 1590 | +} | |
| 1591 | + | |
| 1592 | +.merchant-white-label-modal-title { | |
| 1593 | + margin: 20px 0 16px; | |
| 1594 | + color: #1d2327; | |
| 1595 | + font-size: 24px; | |
| 1596 | + font-weight: 700; | |
| 1597 | + line-height: 1.3; | |
| 1598 | +} | |
| 1599 | + | |
| 1600 | +.merchant-white-label-modal-body { | |
| 1601 | + margin: 0 auto 28px; | |
| 1602 | + max-width: 30em; | |
| 1603 | + color: #50575e; | |
| 1604 | + font-size: 15px; | |
| 1605 | + line-height: 1.6; | |
| 1606 | +} | |
| 1607 | +.merchant-white-label-modal-body strong { | |
| 1608 | + color: #1d2327; | |
| 1609 | + text-transform: uppercase; | |
| 1610 | +} | |
| 1611 | + | |
| 1612 | +.merchant-white-label-modal-cta.button { | |
| 1613 | + height: auto; | |
| 1614 | + min-width: 240px; | |
| 1615 | + padding: 10px 28px; | |
| 1616 | + border-radius: 3px; | |
| 1617 | + font-size: 15px; | |
| 1618 | + font-weight: 600; | |
| 1619 | + line-height: 1.4; | |
| 1620 | +} | |
| 1621 | + | |
| 1622 | +.merchant-white-label-modal-bonus { | |
| 1623 | + position: relative; | |
| 1624 | + margin: 46px -40px 0; | |
| 1625 | + padding: 22px 40px 20px; | |
| 1626 | + background-color: #f0f2fb; | |
| 1627 | + color: #50575e; | |
| 1628 | + font-size: 14px; | |
| 1629 | + line-height: 1.6; | |
| 1630 | +} | |
| 1631 | +.merchant-white-label-modal-bonus strong { | |
| 1632 | + color: #1d2327; | |
| 1633 | +} | |
| 1634 | +.merchant-white-label-modal-bonus .merchant-white-label-modal-bonus-highlight { | |
| 1635 | + color: #00a32a; | |
| 1636 | +} | |
| 1637 | + | |
| 1638 | +.merchant-white-label-modal-bonus-badge { | |
| 1639 | + position: absolute; | |
| 1640 | + top: -14px; | |
| 1641 | + left: 50%; | |
| 1642 | + display: -webkit-box; | |
| 1643 | + display: -ms-flexbox; | |
| 1644 | + display: flex; | |
| 1645 | + -webkit-box-align: center; | |
| 1646 | + -ms-flex-align: center; | |
| 1647 | + align-items: center; | |
| 1648 | + -webkit-box-pack: center; | |
| 1649 | + -ms-flex-pack: center; | |
| 1650 | + justify-content: center; | |
| 1651 | + -webkit-box-sizing: border-box; | |
| 1652 | + box-sizing: border-box; | |
| 1653 | + width: 35px; | |
| 1654 | + height: 35px; | |
| 1655 | + -webkit-transform: translateX(-50%); | |
| 1656 | + transform: translateX(-50%); | |
| 1657 | + border: 5px solid #fff; | |
| 1658 | + border-radius: 50%; | |
| 1659 | + background-color: #00a32a; | |
| 1660 | + color: #fff; | |
| 1661 | +} | |
| 1662 | +.merchant-white-label-modal-bonus-badge svg { | |
| 1663 | + display: block; | |
| 1664 | + width: 13px; | |
| 1665 | + height: 13px; | |
| 1666 | +} | |
| 1667 | + | |
| 1668 | +.merchant-white-label-modal-footer { | |
| 1669 | + margin: 0 -40px; | |
| 1670 | + padding: 16px 40px 20px; | |
| 1671 | + color: #787c82; | |
| 1672 | + font-size: 13px; | |
| 1673 | +} | |
| 1674 | +.merchant-white-label-modal-footer a { | |
| 1675 | + color: inherit; | |
| 1676 | + text-decoration: underline; | |
| 1677 | +} | |
| 1678 | +.merchant-white-label-modal-footer a:hover, .merchant-white-label-modal-footer a:focus { | |
| 1679 | + color: #1d2327; | |
| 1680 | +} | |
| 1681 | + | |
| 1682 | +body.toplevel_page_merchant { | |
| 1487 | 1683 | background-color: #F4F6F8; |
| 1488 | 1684 | } |
| 1489 | -.toplevel_page_merchant #wpbody-content > .updated, | |
| 1490 | -.toplevel_page_merchant #wpbody-content > .notice { | |
| 1685 | +body.toplevel_page_merchant #wpbody-content > .updated, | |
| 1686 | +body.toplevel_page_merchant #wpbody-content > .notice { | |
| 1491 | 1687 | display: none; |
| 1492 | 1688 | } |
| 1493 | 1689 | |
| 1494 | 1690 | .merchant-top-bar { |