1
0
mirror of https://github.com/lus/pasty.git synced 2023-08-10 21:13:09 +03:00

Show character and line count (#33)

This commit is contained in:
Lukas Schulte Pelkum
2022-01-30 15:22:38 +01:00
parent 7a8d8e1573
commit 75fa0621e4
5 changed files with 39 additions and 1 deletions

View File

@@ -266,6 +266,21 @@ html.embedded #footer, body.embedded #footer {
border-radius: 10px;
}
.container #content_length_container {
position: fixed;
right: 30px;
bottom: 60px;
padding: 10px 15px;
background-color: #222222;
border-radius: 10px;
}
.container #content_length_container span {
background-color: #111111;
padding: 5px 10px;
border-radius: 10px;
}
#footer {
position: fixed;
bottom: 0;

File diff suppressed because one or more lines are too long

View File

@@ -222,6 +222,19 @@ html, body {
border-radius: 10px;
}
}
& #content_length_container {
position: fixed;
right: 30px;
bottom: 60px;
padding: 10px 15px;
background-color: #222222;
border-radius: 10px;
& span {
background-color: #111111;
padding: 5px 10px;
border-radius: 10px;
}
}
}
#footer {