You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
693 B

  1. /* Copyright 2018 Tecnativa - David Vidal
  2. License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
  3. */
  4. .order-list-button {
  5. font-size: 20px;
  6. }
  7. .order-line .button {
  8. cursor: pointer;
  9. top: 0px;
  10. line-height: 32px;
  11. padding: 3px 13px;
  12. font-size: 20px;
  13. background: rgb(230, 230, 230);
  14. margin-left: 12px;
  15. border-radius: 3px;
  16. border: solid 1px rgb(209, 209, 209);
  17. transition: all 150ms linear;
  18. }
  19. .order-line .button:active {
  20. background: black;
  21. border-color: black;
  22. color: white;
  23. }
  24. .order-returned-warning {
  25. font-size: 16px;
  26. font-style: italic;
  27. padding: 8px 0;
  28. background-color: rgb(239, 153, 65);
  29. color: white;
  30. }