Skip to content

Commit

Permalink
Merge pull request #159 from chlohal/fix/hide-running-indicator
Browse files Browse the repository at this point in the history
Always hide running indicator
  • Loading branch information
twibiral authored Nov 5, 2022
2 parents 05307c9 + 790c67a commit f3ab0de
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -173,14 +173,16 @@ input.interactive-stdin {
position: absolute;
top: 0.1em;
left: -2em;
widtH: 2em;
width: 2em;
height: 2em;
background: var(--background-primary-alt);
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
color: var(--tx1);
transform: translateX(2em);
transition: transform 0.25s;
transition: transform 0.25s, opacity 0.25s;
opacity: 0;
pointer-events: none;
cursor: pointer;
}

Expand All @@ -192,6 +194,9 @@ input.interactive-stdin {

.load-state-indicator.visible {
transform: translateX(0);
transform: translateX(var(--folding-offset, 0));
opacity: 1;
pointer-events: all;
}

.load-state-indicator::before {
Expand Down

0 comments on commit f3ab0de

Please sign in to comment.