settings.css 558 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. div.colour-field {
  2. border: 1px solid #cbd3d5;
  3. border-radius: 5px;
  4. padding-top: 10px;
  5. padding-bottom: 10px;
  6. margin-bottom: 15px;
  7. }
  8. div.colour-field input {
  9. color: #000;
  10. }
  11. input.invalid {
  12. background-color: #ffb5b5 !important;
  13. }
  14. input.invalid + p.help-text::after {
  15. content: " - Does not match pattern!";
  16. }
  17. div.form-content input:not([type=radio]) {
  18. width: 100% !important;
  19. }
  20. tab > div.row {
  21. padding: 0px 10px 0px 10px;
  22. }
  23. tab > div.row > div {
  24. padding: 5px !important;
  25. }
  26. tab > div.row > div:first-child {
  27. max-width: 42px;
  28. }