pyret-embed 0.0.42 → 0.0.44
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/build/web/css/editor.css +57 -1
- package/dist/build/web/css/themes/pink.css +177 -0
- package/dist/build/web/editor.embed.html +2 -7
- package/dist/build/web/editor.html +2 -7
- package/dist/build/web/js/beforeBlocks.js +1 -7
- package/dist/build/web/js/beforePyret.js +2 -8
- package/dist/build/web/js/cpo-main.jarr +2 -0
- package/dist/build/web/js/cpo-main.jarr.gz.js +0 -0
- package/dist/build/web/js/cpo-main.jarr.js +2 -0
- package/dist/build/web/js/cpo-main.jarr.min +1 -1
- package/dist/build/web/js/cpo-main.js +2 -0
- package/dist/build/web/views/blocks.html +1 -7
- package/dist/build/web/views/editor.html +2 -7
- package/package.json +1 -1
|
@@ -125,13 +125,6 @@
|
|
|
125
125
|
tabindex="-1" target="_blank" href="https://groups.google.com/forum/#!forum/pyret-discuss">Discuss Pyret</a>
|
|
126
126
|
</div>
|
|
127
127
|
</li>
|
|
128
|
-
<li role="presentation">
|
|
129
|
-
<div id="fullConnectButton" class="menuButton loginOnly">
|
|
130
|
-
<a class="focusable" role="menuitem"
|
|
131
|
-
aria-describedby="mhelp-submenu mhelp-activate mhelp-escape-submenu"
|
|
132
|
-
tabindex="-1" href="javascript:void(0)">Enable Full Google Access</a>
|
|
133
|
-
</div>
|
|
134
|
-
</li>
|
|
135
128
|
<li role="presentation">
|
|
136
129
|
<div id="choose-context" class="menuButton">
|
|
137
130
|
<a class="focusable" role="menuitem"
|
|
@@ -206,6 +199,7 @@
|
|
|
206
199
|
<option value="panda">Panda</option>
|
|
207
200
|
<option value="high-contrast-light">High Contrast Light</option>
|
|
208
201
|
<option value="high-contrast-dark">High Contrast Dark</option>
|
|
202
|
+
<option value="pink">Pink</option>
|
|
209
203
|
</select>
|
|
210
204
|
</li>
|
|
211
205
|
</ul>
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
<link rel="stylesheet" href="{{ &BASE_URL }}/css/themes/panda-syntax.css" />
|
|
23
23
|
<link rel="stylesheet" href="{{ &BASE_URL }}/css/themes/high-contrast-light.css" />
|
|
24
24
|
<link rel="stylesheet" href="{{ &BASE_URL }}/css/themes/high-contrast-dark.css" />
|
|
25
|
+
<link rel="stylesheet" href="{{ &BASE_URL }}/css/themes/pink.css" />
|
|
25
26
|
<link rel="icon" type="image/png" href="{{ &BASE_URL }}/img/pyret-icon.png" />
|
|
26
27
|
<style id="highlight-styles"></style>
|
|
27
28
|
<script src="{{ &BASE_URL }}/js/vega.min.js"></script>
|
|
@@ -138,13 +139,6 @@
|
|
|
138
139
|
tabindex="-1" target="_blank" href="https://groups.google.com/forum/#!forum/pyret-discuss">Discuss Pyret</a>
|
|
139
140
|
</div>
|
|
140
141
|
</li>
|
|
141
|
-
<li role="presentation">
|
|
142
|
-
<div id="fullConnectButton" class="menuButton loginOnly">
|
|
143
|
-
<a class="focusable" role="menuitem"
|
|
144
|
-
aria-describedby="mhelp-submenu mhelp-activate mhelp-escape-submenu"
|
|
145
|
-
tabindex="-1" href="javascript:void(0)">Enable Full Google Access</a>
|
|
146
|
-
</div>
|
|
147
|
-
</li>
|
|
148
142
|
<li role="presentation">
|
|
149
143
|
<div id="choose-context" class="menuButton">
|
|
150
144
|
<a class="focusable" role="menuitem"
|
|
@@ -219,6 +213,7 @@
|
|
|
219
213
|
<option value="panda">Panda</option>
|
|
220
214
|
<option value="high-contrast-light">High Contrast Light</option>
|
|
221
215
|
<option value="high-contrast-dark">High Contrast Dark</option>
|
|
216
|
+
<option value="pink">Pink</option>
|
|
222
217
|
</select>
|
|
223
218
|
</li>
|
|
224
219
|
</ul>
|