@worktile/theia 14.1.3 → 14.1.5
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/components/inline-toolbar/inline-toolbar.component.scss +1 -0
- package/components/toolbar-dropdown/toolbar-dropdown.component.scss +1 -10
- package/esm2020/components/toolbar-dropdown/toolbar-dropdown.component.mjs +3 -3
- package/esm2020/plugins/code/code.component.mjs +2 -2
- package/esm2020/plugins/color/toolbar-item.component.mjs +7 -28
- package/esm2020/plugins/mention/mention.editor.mjs +2 -1
- package/esm2020/plugins/mention/mention.plugin.mjs +15 -10
- package/esm2020/plugins/quick-insert/quick-insert.plugin.mjs +3 -2
- package/esm2020/plugins/table/components/toolbar/table-toolbar.component.mjs +3 -3
- package/esm2020/plugins/table/toolbar-item.component.mjs +3 -3
- package/esm2020/plugins/vertical-align/toolbar-item.component.mjs +3 -3
- package/fesm2015/worktile-theia.mjs +44 -57
- package/fesm2015/worktile-theia.mjs.map +1 -1
- package/fesm2020/worktile-theia.mjs +44 -57
- package/fesm2020/worktile-theia.mjs.map +1 -1
- package/package.json +1 -1
- package/styles/editor.scss +12 -9
- package/styles/mixins.scss +7 -1
package/package.json
CHANGED
package/styles/editor.scss
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
}
|
|
44
44
|
.the-todo-item-selectable {
|
|
45
45
|
input[type='checkbox']:hover {
|
|
46
|
-
|
|
46
|
+
cursor: pointer;
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
49
|
}
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
@include mixins.the-toolbar-divider-spacing();
|
|
72
72
|
}
|
|
73
73
|
}
|
|
74
|
-
.the-editor-typo{
|
|
74
|
+
.the-editor-typo {
|
|
75
75
|
// list style
|
|
76
76
|
ul,
|
|
77
77
|
ol,
|
|
@@ -138,7 +138,7 @@
|
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
.leaf-with-placeholder {
|
|
141
|
-
&[data-slate-leaf=true] {
|
|
141
|
+
&[data-slate-leaf='true'] {
|
|
142
142
|
width: auto;
|
|
143
143
|
display: flow-root;
|
|
144
144
|
}
|
|
@@ -160,8 +160,10 @@
|
|
|
160
160
|
}
|
|
161
161
|
|
|
162
162
|
// list: fontSize, li marginLeft, multiDigit li marginLeft
|
|
163
|
-
@each $size, $liMl,
|
|
164
|
-
|
|
163
|
+
@each $size, $liMl,
|
|
164
|
+
$liMultiDigitMl in (12, 13, 14, 15, 16, 18, 20, (24 null 35px), (28 null 42px), (32 33px 50px), (40 40px 62px), (48 50px 78px))
|
|
165
|
+
{
|
|
166
|
+
[the-font-size='#{$size}'] {
|
|
165
167
|
font-size: #{$size}px;
|
|
166
168
|
line-height: theVariables.$font-size-line-height;
|
|
167
169
|
}
|
|
@@ -199,15 +201,15 @@
|
|
|
199
201
|
|
|
200
202
|
// indent
|
|
201
203
|
@for $i from 1 through 17 {
|
|
202
|
-
[the-indent=
|
|
204
|
+
[the-indent='#{$i}'] {
|
|
203
205
|
padding-left: $i * 2em;
|
|
204
206
|
}
|
|
205
207
|
// list
|
|
206
|
-
ol[the-level=
|
|
207
|
-
ul[the-level=
|
|
208
|
+
ol[the-level='#{$i}'],
|
|
209
|
+
ul[the-level='#{$i}'] {
|
|
208
210
|
padding-left: $i * 2em;
|
|
209
211
|
}
|
|
210
|
-
.the-check-item[the-level=
|
|
212
|
+
.the-check-item[the-level='#{$i}'] {
|
|
211
213
|
padding-left: calc(#{$i * 2em} + 2em);
|
|
212
214
|
}
|
|
213
215
|
}
|
|
@@ -215,4 +217,5 @@
|
|
|
215
217
|
|
|
216
218
|
.the-plugin-toolbar-popover .thy-popover-container {
|
|
217
219
|
padding: 4px;
|
|
220
|
+
@include mixins.common-toolbar-icon-color();
|
|
218
221
|
}
|