editingOverlay-menus.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. @import url("chrome://icons/skin/icon-theme-default.css");
  5. menuitem:not([type]) {
  6. -moz-binding: url("chrome://global/content/bindings/menu.xml#menuitem-iconic");
  7. }
  8. #menu_openRemote {
  9. list-style-image: var(--icon-text-html-16);
  10. }
  11. #menu_openRemote[disabled] {
  12. list-style-image: var(--icon-text-html-16-dis);
  13. }
  14. #menu_openFile {
  15. list-style-image: var(--icon-document-open-16);
  16. }
  17. #menu_openFile[disabled] {
  18. list-style-image: var(--icon-document-open-16-dis);
  19. }
  20. #menu_RecentFiles {
  21. -moz-binding: url("chrome://global/content/bindings/menu.xml#menu-iconic") !important;
  22. list-style-image: var(--icon-document-open-recent-16);
  23. }
  24. #menu_RecentFiles[disabled] {
  25. list-style-image: var(--icon-document-open-recent-16-dis);
  26. }
  27. #menu_saveCmd {
  28. list-style-image: var(--icon-document-save-16);
  29. }
  30. #menu_saveCmd[disabled] {
  31. list-style-image: var(--icon-document-save-16-dis);
  32. }
  33. #menu_saveAsCmd {
  34. list-style-image: var(--icon-document-save-as-16);
  35. }
  36. #menu_saveAsCmd[disabled] {
  37. list-style-image: var(--icon-document-save-as-16-dis);
  38. }
  39. #menu_publish {
  40. list-style-image: var(--icon-network-idle-16);
  41. }
  42. #menu_publish[disabled] {
  43. list-style-image: var(--icon-network-idle-16-dis);
  44. }
  45. #menu_fileRevert {
  46. list-style-image: var(--icon-document-revert-16);
  47. }
  48. #menu_fileRevert[disabled] {
  49. list-style-image: var(--icon-document-revert-16-dis);
  50. }