organizer.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. /* Toolbar */
  5. #placesToolbar {
  6. border: none;
  7. }
  8. /* back button */
  9. #back-button {
  10. list-style-image: url("moz-icon://stock/gtk-go-back-ltr?size=toolbar");
  11. }
  12. #back-button[disabled="true"] {
  13. list-style-image: url("moz-icon://stock/gtk-go-back-ltr?size=toolbar&state=disabled");
  14. }
  15. #back-button:-moz-locale-dir(rtl) {
  16. list-style-image: url("moz-icon://stock/gtk-go-back-rtl?size=toolbar");
  17. }
  18. #back-button[disabled="true"]:-moz-locale-dir(rtl) {
  19. list-style-image: url("moz-icon://stock/gtk-go-back-rtl?size=toolbar&state=disabled");
  20. }
  21. /* forward button */
  22. #forward-button {
  23. list-style-image: url("moz-icon://stock/gtk-go-forward-ltr?size=toolbar");
  24. }
  25. #forward-button[disabled="true"] {
  26. list-style-image: url("moz-icon://stock/gtk-go-forward-ltr?size=toolbar&state=disabled");
  27. }
  28. #forward-button:-moz-locale-dir(rtl) {
  29. list-style-image: url("moz-icon://stock/gtk-go-forward-rtl?size=toolbar");
  30. }
  31. #forward-button[disabled="true"]:-moz-locale-dir(rtl) {
  32. list-style-image: url("moz-icon://stock/gtk-go-forward-rtl?size=toolbar&state=disabled");
  33. }
  34. /* Menu */
  35. #placesMenu {
  36. -moz-appearance: none;
  37. border: none;
  38. }
  39. #placesMenu > menu {
  40. padding-inline-start: 4px;
  41. -moz-binding: url("chrome://browser/skin/places/organizer.xml#toolbarbutton-dropdown");
  42. -moz-appearance: toolbarbutton;
  43. color: -moz-DialogText;
  44. }
  45. #placesMenu > menu:hover:not(:active):not([open="true"]) {
  46. color: -moz-buttonhovertext;
  47. }
  48. #placesMenu > menu > .menubar-right {
  49. -moz-appearance: toolbarbutton-dropdown;
  50. width: 12px;
  51. height: 12px;
  52. }
  53. /* Root View */
  54. #placesView {
  55. background-color: Window;
  56. }
  57. /* Info box */
  58. #detailsDeck {
  59. padding: 5px;
  60. }
  61. #infoBoxExpanderLabel {
  62. padding-inline-start: 2px;
  63. }
  64. #searchModifiers {
  65. padding-right: 3px;
  66. }
  67. #saveSearch {
  68. list-style-image: url("moz-icon://stock/gtk-save?size=menu");
  69. }
  70. /**** menuitem stock icons ****/
  71. #orgClose {
  72. list-style-image: url("moz-icon://stock/gtk-close?size=menu");
  73. }
  74. #fileImport {
  75. list-style-image: url("moz-icon://stock/gtk-revert-to-saved?size=menu");
  76. }
  77. #fileExport {
  78. list-style-image: url("moz-icon://stock/gtk-save-as?size=menu");
  79. }
  80. /**
  81. * Downloads pane
  82. */
  83. #clearDownloadsButton > .toolbarbutton-icon {
  84. display: none;
  85. }