@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@worktile/theia",
3
- "version": "14.1.3",
3
+ "version": "14.1.5",
4
4
  "description": "theia editor",
5
5
  "author": "YanDong <nanianqiumo@foxmail.com>",
6
6
  "homepage": "https://github.com/atinc/theia#readme",
@@ -43,7 +43,7 @@
43
43
  }
44
44
  .the-todo-item-selectable {
45
45
  input[type='checkbox']:hover {
46
- cursor: pointer;
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, $liMultiDigitMl in (12, 13, 14, 15, 16, 18, 20, (24 null 35px), (28 null 42px), (32 33px 50px), (40 40px 62px), (48 50px 78px)) {
164
- [the-font-size="#{$size}"] {
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="#{$i}"] {
204
+ [the-indent='#{$i}'] {
203
205
  padding-left: $i * 2em;
204
206
  }
205
207
  // list
206
- ol[the-level="#{$i}"],
207
- ul[the-level="#{$i}"] {
208
+ ol[the-level='#{$i}'],
209
+ ul[the-level='#{$i}'] {
208
210
  padding-left: $i * 2em;
209
211
  }
210
- .the-check-item[the-level="#{$i}"] {
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
  }
@@ -61,4 +61,10 @@
61
61
  }
62
62
  }
63
63
  }
64
- }
64
+ }
65
+
66
+ @mixin common-toolbar-icon-color {
67
+ .thy-action:not(:hover):not(.active) {
68
+ color: variables.$gray-700;
69
+ }
70
+ }