window.scss 899 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .window-header {
  2. padding: 14px 20px;
  3. position: relative;
  4. display: flex;
  5. justify-content: space-between;
  6. align-items: center;
  7. background: hsla(0, 0%, 100%, .1);
  8. -webkit-backdrop-filter: blur(2px);
  9. backdrop-filter: blur(2px);
  10. border-bottom: 1px solid rgba(55, 155, 255, .5);;
  11. }
  12. .window-header-title {
  13. color: #FFFFFF;
  14. max-width: calc(100% - 100px);
  15. width: 100%;
  16. .window-header-main-title {
  17. font-size: 20px;
  18. font-weight: bolder;
  19. overflow: hidden;
  20. text-overflow: ellipsis;
  21. white-space: nowrap;
  22. display: block;
  23. max-width: 50vw;
  24. // 字体颜色
  25. color: var(--color-fg-default);
  26. }
  27. .window-header-sub-title {
  28. font-size: 14px;
  29. text-align: left;
  30. // 字体颜色
  31. color: var(--color-fg-default);
  32. }
  33. }
  34. .window-actions {
  35. display: inline-flex;
  36. }
  37. .window-action-button:not(:first-child) {
  38. margin-left: 10px;
  39. }