Advertisement
Guest User

Barre de favoris verticale - Firefox 71

a guest
Dec 13th, 2019
923
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.38 KB | None | 0 0
  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  2.  
  3. /* ne garde plus que les icône, pas les étiquettes */
  4. #personal-bookmarks .toolbarbutton-text {
  5.     display:none !important;
  6. }
  7.  
  8. #PersonalToolbar {
  9.     position: fixed !important;
  10.     right: 0px !important;
  11.     top: 35px !important;
  12.     height: 35px !important;
  13.     transform-origin: bottom right !important;
  14.     transform: rotate(-90deg) !important;
  15.     padding: 0 !important;
  16.     margin: 0 !important;
  17.     z-index: 1200 !important;
  18.     display: block !important;
  19. }
  20.  
  21. #browser,
  22. #browser-bottombox {
  23.     padding-right: 35px !important;
  24.     height: 100% !important;
  25.     background-color: #F9F9FA !important;
  26. }
  27.  
  28. #personal-bookmarks {
  29.     height: 100% !important;
  30.     width: 100% !important;
  31.     padding: 0 !important;
  32.     margin: 0 !important;
  33.     transform: rotate(180deg) !important;
  34.     transform-origin: 50% 50% !important;
  35. }
  36. #personal-bookmarks .bookmark-item {
  37.     transform: rotate(-90deg) !important;
  38.     height: 100% !important;
  39.     width: 35px !important;
  40. }
  41. #personal-bookmarks .bookmark-item .bookmark-item {
  42.     width: 390px !important;
  43.     transform: rotate(0deg) !important;
  44. }
  45.  
  46. /* Hide the toolbar when in fullscreen mode */
  47. #main-window[inFullscreen="true"] #PersonalToolbar {
  48.   visibility: collapse !important;
  49. }
  50.  
  51. #main-window[inFullscreen="true"] #browser,
  52. #main-window[inFullscreen="true"] #browser-bottombox {
  53.   margin-right: 0 !important;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement