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

_modals.scss 390B

1234567891011121314151617181920212223
  1. @mixin modal-variant($background) {
  2. .modal-title {
  3. color: color-yiq($background);
  4. }
  5. .modal-header,
  6. .modal-footer {
  7. border-color: rgba(color-yiq($background), .075);
  8. }
  9. .modal-content {
  10. background-color: $background;
  11. color: color-yiq($background);
  12. .heading {
  13. color: color-yiq($background);
  14. }
  15. }
  16. .close {
  17. &>span:not(.sr-only) {
  18. color: $white;
  19. }
  20. }
  21. }