Skip to content

Commit

Permalink
Release 3.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
juhana committed Feb 17, 2022
1 parent 841b926 commit 96f6c52
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 51 deletions.
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ See also the changelog of the main JavaScript library



Release 3.?
Release 3.2.6 (2022-02-16)
===========================================

Status Line
Expand Down
25 changes: 21 additions & 4 deletions interpreter/vorple.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
html,
body,
input {
html, body {
font-family: "Roboto", sans-serif;
}

input, label {
background-color: initial;
}

body {
height: 100vh;
}

a, a:visited {
color: #369;
}
Expand All @@ -13,7 +19,12 @@ blockquote {
padding: 0.5em 1em;
}

#vorple {
min-height: 100%;
}

#output {
background-color: inherit;
line-height: 1.5em;
}

Expand Down Expand Up @@ -258,11 +269,17 @@ body.play > div.interpretercredit {
}


/* Hyperlinks */
.vorple-link.disabled {
pointer-events: none;
}


/* Status line */

.status-line-container {
display: flex;
background-color: #fff;
background-color: inherit;
border-bottom: 3px double #ccc;
position: -webkit-sticky;
position: sticky; /* same as "fixed" in this case but positions it relative to parent element */
Expand Down
47 changes: 2 additions & 45 deletions interpreter/vorple.min.js

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions interpreter/vorple.min.js.LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
/*!
* The buffer module from node.js, for the browser.
*
* @author Feross Aboukhadijeh <[email protected]> <http://feross.org>
* @license MIT
*/

/*!
* Sizzle CSS Selector Engine v2.3.6
* https://sizzlejs.com/
*
* Copyright JS Foundation and other contributors
* Released under the MIT license
* https://js.foundation/
*
* Date: 2021-02-16
*/

/*!
PowerTip v1.3.1 (2018-04-15)
https://stevenbenner.github.io/jquery-powertip/
Copyright (c) 2018 Steven Benner (http://stevenbenner.com/).
Released under MIT license.
https://raw.github.com/stevenbenner/jquery-powertip/master/LICENSE.txt
*/

/*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js */
2 changes: 1 addition & 1 deletion interpreter/vorple.min.js.map

Large diffs are not rendered by default.

0 comments on commit 96f6c52

Please sign in to comment.