@khanacademy/perseus-editor 17.9.2 → 18.0.0
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/dist/es/index.css +18 -0
- package/dist/es/index.js +26 -17432
- package/dist/es/index.js.map +1 -1
- package/dist/index.css +18 -0
- package/dist/index.js +31 -17436
- package/dist/index.js.map +1 -1
- package/dist/widgets/interactive-graph-editor/components/interactive-graph-settings.d.ts +11 -1
- package/dist/widgets/interactive-graph-editor/interactive-graph-editor.d.ts +377 -42
- package/package.json +9 -9
package/dist/es/index.css
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
code {
|
|
2
|
+
font-family: Courier, monospace;
|
|
3
|
+
}
|
|
1
4
|
.pod-title {
|
|
2
5
|
background-color: #eee;
|
|
3
6
|
border: 1px solid #ddd;
|
|
@@ -239,6 +242,21 @@
|
|
|
239
242
|
margin-bottom: 20px;
|
|
240
243
|
text-align: left;
|
|
241
244
|
}
|
|
245
|
+
#problemarea {
|
|
246
|
+
font-size: 14px;
|
|
247
|
+
position: relative;
|
|
248
|
+
float: left;
|
|
249
|
+
padding-bottom: 38px;
|
|
250
|
+
}
|
|
251
|
+
#problemarea a:link,
|
|
252
|
+
#problemarea input,
|
|
253
|
+
#problemarea label,
|
|
254
|
+
#problemarea select {
|
|
255
|
+
/* for dropdowns */
|
|
256
|
+
position: relative;
|
|
257
|
+
z-index: 3;
|
|
258
|
+
/* interactive-content */
|
|
259
|
+
}
|
|
242
260
|
.perseus-editor-table {
|
|
243
261
|
clear: both;
|
|
244
262
|
display: table;
|