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.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. .dialog {
  2. visibility: visible;
  3. height: auto;
  4. h3 {
  5. color: $auiDialogColor;
  6. }
  7. .aui {
  8. &-icon {
  9. color: $auiDialogColor;
  10. &-small {
  11. width: 14px;
  12. height: 14px;
  13. }
  14. }
  15. &-iconfont-close-dialog {
  16. cursor: pointer;
  17. right: 20px;
  18. position: absolute;
  19. top: -49px;
  20. }
  21. &-dialog2 {
  22. &-header, &-footer {
  23. background-color: $auiDialogBg;
  24. border: none;
  25. }
  26. &-header {
  27. height: em(58, 12);
  28. border-bottom: 1px solid $auiBorderColor;
  29. h2 {
  30. font-size: em(20, 12);
  31. font-weight: $dialogTitleFontWeight;
  32. letter-spacing: $titleLetterSpacing;
  33. color: $auiDialogColor;
  34. }
  35. &-main {
  36. padding-right: 0;
  37. }
  38. }
  39. &-footer {
  40. border-top: 1px solid $auiBorderColor;
  41. }
  42. &-content {
  43. font-size: em(14, 12);
  44. min-height: 0;
  45. background-color: $auiDialogContentBg;
  46. color: $auiDialogColor;
  47. p,span, h3 {
  48. font-weight: $labelFontWeight;
  49. letter-spacing: $letterSpacing;
  50. }
  51. &:last-child {
  52. border-bottom-right-radius: 5px;
  53. border-bottom-left-radius: 5px;
  54. }
  55. &:first-child {
  56. border-top-right-radius: 5px;
  57. border-top-left-radius: 5px;
  58. }
  59. }
  60. }
  61. }
  62. .input-control:not(:last-child) {
  63. border-bottom: 1px solid $auiBorderColor;
  64. }
  65. }