sidebar.css 784 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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. justify-content: flex-start;
  12. border: solid #cfcfcf 1px;
  13. margin-bottom: 1px;
  14. padding-left: 2px;
  15. width: 100%;
  16. }
  17. .tab-title {
  18. display: inline-block;
  19. align-self: center;
  20. overflow: hidden;
  21. text-overflow: ellipsis;
  22. white-space: nowrap;
  23. width: 100%;
  24. }
  25. .tab-favicon {
  26. /* necessary to avoid flicker when hovering the close button */
  27. flex-shrink: 0;
  28. display: inline-block;
  29. background-size: cover;
  30. background-position: center;
  31. width: 15px;
  32. height: 15px;
  33. margin-left: 5px;
  34. margin-right: 5px;
  35. vertical-align: middle;
  36. }
  37. .close-button {
  38. padding: 0 2px;
  39. display: none;
  40. }
  41. .tab:hover > .close-button {
  42. display: inline-block;
  43. }