Advertisement
Guest User

Untitled

a guest
May 22nd, 2015
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. /* Window frame */
  2. #main-window {
  3. color:#F5F7FA !important;
  4. -moz-appearance: none !important;
  5. background-color: #1C2126 !important;
  6. overflow: hidden !important;
  7. }
  8. #main-window:not([tabsintitlebar="true"])::before {
  9. content: attr(title);
  10. position: fixed;
  11. top: 0;
  12. left:0;
  13. padding: 10px 10px;
  14. right: 120px;
  15. text-align: center;
  16. pointer-events: none;
  17. }
  18. #titlebar-buttonbox {
  19. -moz-appearance: none !important;
  20. margin: 0 !important;
  21. }
  22. #titlebar-buttonbox > toolbarbutton, #window-controls > toolbarbutton {
  23. -moz-appearance: none !important;
  24. display: -moz-box !important;
  25. border: medium none !important;
  26. margin: 0;
  27. width: 30px !important;
  28. height: 24px !important;
  29. padding: 0 !important;
  30. pointer-events: all !important;
  31. text-align: center;
  32. vertical-align: top !important;
  33. }
  34. #titlebar-buttonbox > toolbarbutton:hover, #window-controls > toolbarbutton:hover {
  35. background-color: rgba(255,255,255,0.2)
  36. }
  37. #titlebar-buttonbox .toolbarbutton-icon, #window-controls > toolbarbutton .toolbarbutton-icon {
  38. width: 16px !important;
  39. height: 16px !important;
  40. margin: 0 7px !important;
  41. -moz-image-region: auto !important;
  42. }
  43. #titlebar-close, #close-button {
  44. list-style: url(chrome://browser/skin/devtools/close.png);
  45. }
  46. #titlebar-max, #restore-button {
  47. list-style: url("chrome://browser/skin/devtools/dock-bottom@2x.png")
  48. }
  49. #titlebar-max > .toolbarbutton-icon, #restore-button > .toolbarbutton-icon {
  50. transform: rotate(-180deg)
  51. }
  52. #titlebar-min > .toolbarbutton-icon, #minimize-button > .toolbarbutton-icon {
  53. display: none !important;
  54. }
  55. #titlebar-min::before, #minimize-button::before {
  56. content:"__";
  57. color: white !important;
  58. display: inline-block;
  59. margin-left: 10px;
  60. font-weight: bold !important;
  61. margin-top: -5px !important;
  62. opacity: 0.7
  63. }
  64. #minimize-button::before {
  65. margin-left:0 !important;
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement