editorIcons_rtl.css 794 B

1234567891011121314151617181920212223
  1. /* Dijit Editor RTL icons*/
  2. /*editorIcons_rtl.css is located in dijit/images
  3. editorIcons_rtl.css contains references to the dijit editor widget icons. There are 46 icons used to map to the related editor funtionality in the editor's toolbar.
  4. */
  5. /* Editor */
  6. .dijitEditorRtl .dijitEditorIcon {
  7. background-image: url('images/editorIconsEnabled_rtl.png'); /* editor icons sprite image for the enabled right to left state */
  8. }
  9. .dijitEditorRtlDisabled .dijitEditorIcon {
  10. background-image: url('images/editorIconsDisabled_rtl.png'); /* editor icons sprite image for the disabled right to left state */
  11. }
  12. /* Toolbar */
  13. .dijitToolbarRtl .dijitToolbarSeparator {
  14. background-image: url('images/editorIconsEnabled_rtl.png');
  15. }
  16. /* took this information above from editorRtl.css - good or bad? */