_toolbar.scss 821 B

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * The toolbar contains :
  3. * - a refresh tool - refresh the whole panel
  4. * - a popup tool - Open the inspector in a new panel
  5. * ...
  6. */
  7. .toolbar {
  8. display:flex;
  9. .tool {
  10. width : $tabbar-height;
  11. height : $tabbar-height;
  12. display : flex;
  13. justify-content: center;
  14. align-items : center;
  15. cursor : pointer;
  16. position : relative;
  17. border-right : 1px solid $background-lighter2;
  18. &:hover {
  19. background-color: $background-lighter2;
  20. }
  21. &:active {
  22. color:$color-top;
  23. background-color: $background-lighter3;
  24. }
  25. // This tool is activated
  26. &.active {
  27. color:$color-top;
  28. }
  29. }
  30. }