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.

_dialog.scss 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .dialog{
  2. visibility: visible;
  3. height: auto;
  4. p {
  5. color: $defaultDarkColor;
  6. }
  7. textarea {
  8. background: none;
  9. border: 1px solid $inputBorderColor;
  10. }
  11. .aui-dialog2-content:last-child {
  12. border-bottom-right-radius: 5px;
  13. border-bottom-left-radius: 5px;
  14. }
  15. .aui-dialog2-content:first-child {
  16. border-top-right-radius: 5px;
  17. border-top-left-radius: 5px;
  18. }
  19. .aui-dialog2-footer{
  20. border-top: 0;
  21. border-radius: 0;
  22. padding-top: 0;
  23. background: none;
  24. border: none;
  25. height: auto;
  26. margin-top: 10px;
  27. }
  28. .aui-button {
  29. height: 28px;
  30. font-size: 12px;
  31. padding: 3px 6px 3px 6px;
  32. border: none;
  33. &_close {
  34. font-weight: 400 !important;
  35. color: $buttonBackground;
  36. background: none !important;
  37. :hover {
  38. text-decoration: underline;
  39. }
  40. }
  41. &_submit {
  42. font-weight: 700 !important;
  43. color: $defaultColor;
  44. background: $buttonBackground;
  45. border-radius: 3px;
  46. }
  47. }
  48. }