Skip to content
This repository has been archived by the owner on Feb 20, 2024. It is now read-only.

Update/master to upstream #5

Closed
wants to merge 33 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
7fb32b5
deps
arnog Feb 1, 2020
e0f2315
chore: update README for 2020
arnog Feb 1, 2020
b528b8b
bug: adjust lineheight of text to display correctly in some cases
arnog Feb 3, 2020
e67ea4d
bug: correctly parse \mathop and double-minus
arnog Feb 3, 2020
a29430b
bug: correctly parse roots when generating MathJSON
arnog Feb 3, 2020
32a747b
dist
arnog Feb 3, 2020
8d47e06
Fix #282: some virtual key presses produce an incorrect output
arnog Feb 4, 2020
3eecc9b
bug: fix #364. Placeholder incorrectly selected when clicked on in so…
arnog Feb 4, 2020
2ebda22
feat: #368
arnog Feb 5, 2020
4ef57e3
Need <!doctype html> for proper rendering
arnog Feb 5, 2020
c12631b
Feat: read-only mode (#339)
arnog Feb 6, 2020
4098f20
bug: fix #243: incorrect alt-keys for '-' key on virtual keyboard
arnog Feb 6, 2020
77fa5da
bug: fix #227 an operator ('sin') following some text is incorrectly …
arnog Feb 6, 2020
a7224dc
dist
arnog Feb 6, 2020
1c694d9
0.34.0
arnog Feb 6, 2020
f5f01c3
Updated CHANGELOG
arnog Feb 6, 2020
e74fba1
chore: avoid prettify-ing the dist directory
arnog Feb 6, 2020
6b114bb
bug: Fix #372 when substituting a multi-token argument, do not insert…
arnog Feb 6, 2020
f404735
bug: fix #371
arnog Feb 6, 2020
0ab0500
dist
arnog Feb 6, 2020
4d1f4b4
Bump rollup from 1.31.0 to 1.31.1
dependabot-preview[bot] Feb 15, 2020
94df57d
Merge pull request #374 from arnog/dependabot/npm_and_yarn/rollup-1.31.1
dependabot-preview[bot] Feb 15, 2020
fa73380
Bump rimraf from 3.0.1 to 3.0.2
dependabot-preview[bot] Feb 15, 2020
aadfd71
Merge pull request #376 from arnog/dependabot/npm_and_yarn/rimraf-3.0.2
dependabot-preview[bot] Feb 15, 2020
f4d0351
Bump less from 3.10.3 to 3.11.1
dependabot-preview[bot] Feb 15, 2020
90279c0
Merge pull request #375 from arnog/dependabot/npm_and_yarn/less-3.11.1
dependabot-preview[bot] Feb 15, 2020
c1aa55f
Bump husky from 4.2.1 to 4.2.3
dependabot-preview[bot] Feb 15, 2020
1a80093
Merge pull request #377 from arnog/dependabot/npm_and_yarn/husky-4.2.3
dependabot-preview[bot] Feb 15, 2020
bbd8981
chore(update): update from upstream
arncet Feb 21, 2020
4aef812
fix(build): merge
arncet Feb 21, 2020
fc950b2
fix(build): remove dist
arncet Feb 21, 2020
4bad271
merge
arncet Feb 21, 2020
da67f3b
fix
arncet Feb 21, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: arnog#368
  • Loading branch information
arnog committed Feb 5, 2020
commit 2ebda2211c6f42f0136c28032c4a73d359a49bb3
14 changes: 2 additions & 12 deletions css/mathlive.core.less
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
margin-right: -1ex;
position: relative;
color: var(--caret);
animation: ML__caret-command-blink 1.05s step-end forwards infinite;
animation: ML__caret-blink 1.05s step-end forwards infinite;
}

/* Text mode */
Expand All @@ -85,7 +85,7 @@
background: hsla(var(--hue), 40%, 50%, 0.1);
}

@keyframes ML__caret-command-blink {
@keyframes ML__caret-blink {
from,
to {
opacity: 1;
Expand All @@ -95,16 +95,6 @@
}
}

@keyframes ML__caret-blink {
from,
to {
border-color: var(--caret);
}
50% {
border-color: transparent;
}
}

/* Style for the invisible textarea element which is used
to capture keyboard events. We're just trying really hard
to make sure it doesn't show. */
Expand Down
Loading