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.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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. box-shadow: none;
  34. outline: none;
  35. &_close {
  36. font-weight: 400 !important;
  37. color: $buttonBackground;
  38. background: none !important;
  39. :hover {
  40. text-decoration: underline;
  41. }
  42. }
  43. &_submit {
  44. font-weight: 700 !important;
  45. color: $defaultColor;
  46. background: $buttonBackground;
  47. border-radius: 3px;
  48. }
  49. }
  50. }