window.scss 628 B

123456789101112131415161718192021222324252627282930313233343536
  1. .window-header {
  2. padding: 14px 20px;
  3. border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
  4. position: relative;
  5. display: flex;
  6. justify-content: space-between;
  7. align-items: center;
  8. }
  9. .window-header-title {
  10. max-width: calc(100% - 100px);
  11. overflow: hidden;
  12. .window-header-main-title {
  13. font-size: 20px;
  14. font-weight: bolder;
  15. overflow: hidden;
  16. text-overflow: ellipsis;
  17. white-space: nowrap;
  18. display: block;
  19. max-width: 50vw;
  20. }
  21. .window-header-sub-title {
  22. font-size: 14px;
  23. }
  24. }
  25. .window-actions {
  26. display: inline-flex;
  27. }
  28. .window-action-button:not(:first-child) {
  29. margin-left: 10px;
  30. }