Advertisement
difool2nice

min max close buttons

Apr 6th, 2018
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.99 KB | None | 0 0
  1. #titlebar-min{
  2.      list-style-image: url("minimize-icon.png") !important;
  3.      filter: invert(100%) !important;
  4. }
  5. #titlebar-min:hover{
  6.     list-style-image: url("minimize-icon.png") !important;
  7.     filter: invert(0%) !important;
  8.  
  9.      background-color: transparent !important;
  10. }
  11. #titlebar-max{
  12.     list-style-image: url("restore-icon.png") !important;
  13.     filter: invert(100%) !important;
  14. }
  15. #titlebar-max:hover{
  16.    list-style-image: url("restore-icon.png") !important;
  17.    filter: invert(0%) !important;
  18.    background-color: transparent !important;
  19. }
  20. #titlebar-close{
  21.     list-style-image: url("close-icon.png") !important;
  22.     filter: invert(100%) !important;
  23. }
  24. #titlebar-close:hover{
  25.     list-style-image: url("close-icon.png") !important;
  26.     background-color: #ff00009c !important;
  27.     filter: invert(100%) !important;
  28. }
  29. .titlebar-button > .toolbarbutton-icon {
  30.     height: 20px !important;
  31.     min-height: 20px !important;
  32.     width: 20px !important;
  33.     min-width: 20px !important;
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement