pxt-core 8.0.4 → 8.0.7
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/built/pxteditor.d.ts +11 -0
- package/built/pxteditor.js +197 -0
- package/built/target.js +1 -1
- package/built/web/main.js +1 -1
- package/built/web/pxtapp.js +1 -1
- package/built/web/pxteditor.js +1 -1
- package/built/web/pxtembed.js +1 -1
- package/built/web/rtlsemantic.css +1 -1
- package/built/web/semantic.css +1 -1
- package/package.json +1 -1
- package/react-common/components/share/ShareInfo.tsx +1 -1
- package/theme/common.less +5 -0
- package/theme/serial.less +5 -4
package/package.json
CHANGED
|
@@ -161,7 +161,7 @@ export const ShareInfo = (props: ShareInfoProps) => {
|
|
|
161
161
|
onChange={setName} />
|
|
162
162
|
<Textarea label={lf("Description")}
|
|
163
163
|
initialValue={description}
|
|
164
|
-
placeholder={lf("Tell others about your
|
|
164
|
+
placeholder={lf("Tell others about your project")}
|
|
165
165
|
rows={5} />
|
|
166
166
|
</>
|
|
167
167
|
}
|
package/theme/common.less
CHANGED
|
@@ -2429,6 +2429,11 @@ div.signin-button:focus {
|
|
|
2429
2429
|
#blocks-editor-field-div {
|
|
2430
2430
|
position: absolute;
|
|
2431
2431
|
z-index: @blocklyDropdownDivZIndex;
|
|
2432
|
+
|
|
2433
|
+
.sound-effect-editor {
|
|
2434
|
+
max-width: 30rem;
|
|
2435
|
+
margin: auto;
|
|
2436
|
+
}
|
|
2432
2437
|
}
|
|
2433
2438
|
|
|
2434
2439
|
.blocks-editor-field-overlay {
|
package/theme/serial.less
CHANGED
|
@@ -142,12 +142,13 @@
|
|
|
142
142
|
font-weight: 700;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
-
tbody tr
|
|
146
|
-
background: #f2f2f2;
|
|
147
|
-
}
|
|
148
|
-
tr:nth-child(even), thead tr {
|
|
145
|
+
tbody tr, thead tr {
|
|
149
146
|
background: @white;
|
|
150
147
|
}
|
|
148
|
+
|
|
149
|
+
tbody tr.odd {
|
|
150
|
+
background: #f2f2f2;
|
|
151
|
+
}
|
|
151
152
|
td, th {
|
|
152
153
|
border: 1px solid #ddd;
|
|
153
154
|
padding: 8px;
|