forked from codex-team/editor.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.ts
More file actions
35 lines (31 loc) · 690 Bytes
/
styles.ts
File metadata and controls
35 lines (31 loc) · 690 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import Module from '../../__module';
import {Styles} from '../../../../types/api';
/**
*
*/
export default class StylesAPI extends Module {
get classes(): Styles {
return {
/**
* Base Block styles
*/
block: 'cdx-block',
/**
* Inline Tools styles
*/
inlineToolButton: 'ce-inline-tool',
inlineToolButtonActive: 'ce-inline-tool--active',
/**
* UI elements
*/
input: 'cdx-input',
loader: 'cdx-loader',
button: 'cdx-button',
/**
* Settings styles
*/
settingsButton: 'cdx-settings-button',
settingsButtonActive: 'cdx-settings-button--active',
};
}
}