mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
implement state strings in posts
This commit is contained in:
@@ -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':
|
||||
|
||||
Reference in New Issue
Block a user