panel.css 535 B

123456789101112131415161718192021222324252627282930313233343536
  1. html, body {
  2. width: 100%;
  3. }
  4. #tabs {
  5. margin-top: 1px;
  6. width: 100%;
  7. }
  8. .tab {
  9. display: flex;
  10. align-items: center;
  11. border: solid #cfcfcf 1px;
  12. margin-bottom: 1px;
  13. padding-left: 2px;
  14. width: 100%;
  15. }
  16. .tab-title {
  17. display: inline-block;
  18. overflow: hidden;
  19. text-overflow: ellipsis;
  20. white-space: nowrap;
  21. width: 90%;
  22. }
  23. .tab-favicon {
  24. display: inline-block;
  25. background-size: cover;
  26. background-position: center;
  27. width: 15px;
  28. height: 15px;
  29. margin-left: 5px;
  30. margin-right: 5px;
  31. vertical-align: middle;
  32. }