window.scss 661 B

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