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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. .dialog {
  2. visibility: visible;
  3. height: auto;
  4. h1, h2, h3, h4, h5, h6 {
  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. color: $auiDialogColor;
  33. }
  34. &-main {
  35. padding-right: 0;
  36. }
  37. }
  38. &-footer {
  39. border-top: 1px solid $auiBorderColor;
  40. }
  41. &-content {
  42. font-size: em(14, 12);
  43. min-height: 0;
  44. background-color: $auiDialogContentBg;
  45. color: $auiDialogColor;
  46. p,span, h3 {
  47. font-weight: $labelFontWeight;
  48. }
  49. &:last-child {
  50. border-bottom-right-radius: 5px;
  51. border-bottom-left-radius: 5px;
  52. }
  53. &:first-child {
  54. border-top-right-radius: 5px;
  55. border-top-left-radius: 5px;
  56. }
  57. }
  58. }
  59. }
  60. .form-control:not(:last-child) {
  61. border-bottom: 1px solid $auiBorderColor;
  62. }
  63. }
  64. .modal-dialog-form {
  65. color: $modalTextColor;
  66. }
  67. .modal-dialog-footer {
  68. font-size: $modalButtonFontSize;
  69. }