Load live input indicator styles from shared stylesheet
Some checks failed
ci-bundle.yml / Load live input indicator styles from shared stylesheet (push) Failing after 0s
ci-copr.yml / Load live input indicator styles from shared stylesheet (push) Failing after 0s
ci-homebrew.yml / Load live input indicator styles from shared stylesheet (push) Failing after 0s

This commit is contained in:
Joey Yakimowich-Payne 2026-02-11 16:30:43 -07:00
commit 1981060f09
2 changed files with 22 additions and 22 deletions

View file

@ -1202,6 +1202,28 @@ p {
margin: 0; margin: 0;
} }
.activity-dot {
display: inline-block;
width: 14px;
height: 14px;
border-radius: 50%;
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
flex-shrink: 0;
vertical-align: middle;
margin-right: 3px;
}
.dot-green {
background-color: #22c55e;
box-shadow: 0 0 6px #22c55e;
border: 1px solid #16a34a;
}
.dot-gray {
background-color: #6b7280;
border: 1px solid #d1d5db;
}
/* Log level highlighting */ /* Log level highlighting */
.log-line-info { .log-line-info {
color: var(--color-text-base); color: var(--color-text-base);

View file

@ -732,26 +732,4 @@
initApp(app); initApp(app);
</script> </script>
<style>
.activity-dot {
display: inline-block;
width: 14px;
height: 14px;
border-radius: 50%;
transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
flex-shrink: 0;
vertical-align: middle;
margin-right: 3px;
}
.dot-green {
background-color: #22c55e;
box-shadow: 0 0 6px #22c55e;
border: 1px solid #16a34a;
}
.dot-gray {
background-color: #6b7280;
border: 1px solid #d1d5db;
}
</style>
</body> </body>