implement state strings in posts

This commit is contained in:
Tom
2023-06-01 10:43:17 +02:00
parent d790961a5d
commit f03ff66f06
6 changed files with 145 additions and 1 deletions
@@ -1630,6 +1630,31 @@ export const TopBar = styled.div`
`;
export const BoardForm = styled.div`
.ellipsis {
margin-right: 14px;
}
.ellipsis:after {
content: "\\2026";
position: absolute;
-webkit-animation: ellipsis steps(4,end) 1200ms infinite;
animation: ellipsis steps(4,end) 1500ms infinite;
width: 0px;
overflow: hidden;
}
@keyframes ellipsis {
to {
width: 1.25em;
}
}
@-webkit-keyframes ellipsis {
to {
width: 1.25em;
}
}
@media (min-width: 480px) {
margin-bottom: 130px;
@@ -834,6 +834,30 @@ export const BottomBar = styled.div`
`;
export const BoardForm = styled.div`
.ellipsis {
margin-right: 14px;
}
.ellipsis:after {
content: "\\2026";
position: absolute;
-webkit-animation: ellipsis steps(4,end) 1200ms infinite;
animation: ellipsis steps(4,end) 1500ms infinite;
width: 0px;
overflow: hidden;
}
@keyframes ellipsis {
to {
width: 1.25em;
}
}
@-webkit-keyframes ellipsis {
to {
width: 1.25em;
}
}
@media (min-width: 480px) {
.thread-mobile {
display: none;
@@ -3185,6 +3209,11 @@ export const Footer = styled.div`
a:hover {
color: #5f89ac;
}
}
#style-selector {
background-color: #282a2e;
color: #c5c8c6;
border: 1px solid #373b41;
}`;
case 'Photon':