您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_dialog.scss 827B

12345678910111213141516171819202122232425262728293031323334353637
  1. .dialog{
  2. visibility: visible;
  3. height: auto;
  4. p {
  5. color: $defaultDarkFontColor;
  6. }
  7. .aui-dialog2-content:last-child {
  8. border-bottom-right-radius: 5px;
  9. border-bottom-left-radius: 5px;
  10. }
  11. .aui-dialog2-content:first-child {
  12. border-top-right-radius: 5px;
  13. border-top-left-radius: 5px;
  14. }
  15. .aui-dialog2-footer{
  16. padding-top: 0;
  17. }
  18. .aui-button {
  19. height: 36px;
  20. padding-top: 12px;
  21. border: none;
  22. background-color: transparent!important;
  23. border-left: solid 1px #e4e4e4;
  24. font-weight: 700;
  25. &_close {
  26. color: $defaultFontColor;
  27. }
  28. &_submit {
  29. color: $linkFontColor;
  30. &:hover {
  31. color: $linkHoverFontColor;
  32. }
  33. }
  34. }
  35. }