ros.grant.common 2.0.1280 → 2.0.1283
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Shared/Styles/myrtex-lib/editor/editor-toolbar.less +114 -0
- package/Shared/Styles/myrtex-lib/editor/editor.less +22 -0
- package/Shared/Styles/myrtex-lib/editor/froala-editor.less +1440 -0
- package/Shared/Styles/myrtex-lib/paginator/paginator-select.less +17 -0
- package/Shared/Styles/myrtex-lib/paginator/paginator-types.less +13 -0
- package/Shared/Styles/myrtex-lib/paginator/paginator.less +49 -0
- package/package.json +1 -1
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
.mrx-editor {
|
|
2
|
+
.fr-btn[data-cmd=bold] {
|
|
3
|
+
span {
|
|
4
|
+
height: 100%;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
svg {
|
|
8
|
+
path {
|
|
9
|
+
fill: var(--Main1);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.fr-btn[data-cmd=italic] {
|
|
15
|
+
span {
|
|
16
|
+
height: 100%;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
svg {
|
|
20
|
+
path {
|
|
21
|
+
fill: var(--Main1);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.fr-btn[data-cmd=insertLink] {
|
|
27
|
+
span {
|
|
28
|
+
height: 100%;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
svg {
|
|
32
|
+
path {
|
|
33
|
+
stroke: var(--Main1);
|
|
34
|
+
fill: none;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.fr-btn[data-cmd=insertImage] {
|
|
40
|
+
span {
|
|
41
|
+
height: 100%;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
svg {
|
|
45
|
+
path {
|
|
46
|
+
stroke: var(--Main1);
|
|
47
|
+
fill: none;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.fr-btn[data-cmd=quote] {
|
|
53
|
+
span {
|
|
54
|
+
height: 100%;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
svg {
|
|
58
|
+
path {
|
|
59
|
+
stroke: var(--Main1);
|
|
60
|
+
fill: none;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.fr-btn[data-cmd=insertTable] {
|
|
66
|
+
span {
|
|
67
|
+
height: 100%;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
svg {
|
|
71
|
+
path {
|
|
72
|
+
stroke: var(--Main1);
|
|
73
|
+
fill: none;
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.fr-btn[data-cmd=insertVideo] {
|
|
79
|
+
span {
|
|
80
|
+
height: 100%;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
svg {
|
|
84
|
+
path {
|
|
85
|
+
stroke: var(--Main1);
|
|
86
|
+
fill: none;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
.fr-btn[data-cmd=undo] {
|
|
91
|
+
span {
|
|
92
|
+
height: 100%;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
svg {
|
|
96
|
+
path {
|
|
97
|
+
stroke: var(--Main1);
|
|
98
|
+
fill: none;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
.fr-btn[data-cmd=redo] {
|
|
103
|
+
span {
|
|
104
|
+
height: 100%;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
svg {
|
|
108
|
+
path {
|
|
109
|
+
stroke: var(--Main1);
|
|
110
|
+
fill: none;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
@import "froala-editor";
|
|
2
|
+
@import "editor-toolbar";
|
|
3
|
+
|
|
4
|
+
.mrx-editor {
|
|
5
|
+
#fr-logo {
|
|
6
|
+
display: none;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.fr-toolbar.fr-top {
|
|
10
|
+
border-radius: 4px 4px 0 0;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.fr-second-toolbar {
|
|
14
|
+
border-radius: 0 0 4px 4px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.fr-toolbar .fr-btn-grp .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path, .fr-toolbar .fr-more-toolbar .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path, .fr-toolbar .fr-buttons:not(.fr-tabs) .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path, .fr-popup .fr-btn-grp .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path, .fr-popup .fr-more-toolbar .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path, .fr-popup .fr-buttons:not(.fr-tabs) .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path, .fr-modal .fr-btn-grp .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path, .fr-modal .fr-more-toolbar .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path, .fr-modal .fr-buttons:not(.fr-tabs) .fr-command.fr-btn.fr-active:not(.fr-dropdown) svg path {
|
|
18
|
+
fill: var(--Main2);
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
|