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