mirror of
https://codeberg.org/tacerus/teddit.git
synced 2025-01-09 12:52:32 +01:00
fix long multireddit texts overflowing
This commit is contained in:
parent
67e87280ae
commit
73b608346e
147
dist/css/styles.css
vendored
147
dist/css/styles.css
vendored
@ -102,73 +102,9 @@ body.dark .comment {
|
|||||||
background: var(--darkbg);
|
background: var(--darkbg);
|
||||||
}
|
}
|
||||||
body.dark .comment .comment {
|
body.dark .comment .comment {
|
||||||
background: var(--darkbglight);
|
|
||||||
border-left: 1px solid #545454;
|
border-left: 1px solid #545454;
|
||||||
}
|
}
|
||||||
body.dark .comment .comment .comment {
|
|
||||||
background: var(--darkbg);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbglight);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbg);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbglight);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbg);
|
|
||||||
}
|
|
||||||
/* Is there any better way to do this??? send help naow */
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbglight);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbg);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbglight);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbg);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbglight);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbg);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbglight);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbg);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbg);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbglight);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbg);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbglight);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbg);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbglight);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbg);
|
|
||||||
}
|
|
||||||
body.dark .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--darkbglight);
|
|
||||||
}
|
|
||||||
body.dark .comment .meta .created a {
|
body.dark .comment .meta .created a {
|
||||||
color: #7b7b7b;
|
color: #7b7b7b;
|
||||||
}
|
}
|
||||||
@ -390,6 +326,9 @@ header a.subreddit {
|
|||||||
font-size: 0.7rem;
|
font-size: 0.7rem;
|
||||||
margin-right: 12px;
|
margin-right: 12px;
|
||||||
}
|
}
|
||||||
|
header a.subreddit h2 {
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
header .tabmenu {
|
header .tabmenu {
|
||||||
float: left;
|
float: left;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@ -590,6 +529,10 @@ input[type="submit"]:hover,
|
|||||||
/* COMMENTS */
|
/* COMMENTS */
|
||||||
.comment {
|
.comment {
|
||||||
font-size: 0.83rem;
|
font-size: 0.83rem;
|
||||||
|
padding-left: 30px;
|
||||||
|
width: auto;
|
||||||
|
overflow: hidden;
|
||||||
|
background: var(--whitebg);
|
||||||
}
|
}
|
||||||
.comment summary {
|
.comment summary {
|
||||||
float: left;
|
float: left;
|
||||||
@ -623,12 +566,6 @@ input[type="submit"]:hover,
|
|||||||
.comment .comment:first-child {
|
.comment .comment:first-child {
|
||||||
width: calc(100% - 30px);
|
width: calc(100% - 30px);
|
||||||
}
|
}
|
||||||
.comment {
|
|
||||||
padding-left: 30px;
|
|
||||||
width: auto;
|
|
||||||
overflow: hidden;
|
|
||||||
background: var(--whitebg);
|
|
||||||
}
|
|
||||||
.comment details summary {
|
.comment details summary {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
@ -665,74 +602,11 @@ input[type="submit"]:hover,
|
|||||||
max-width: 60em;
|
max-width: 60em;
|
||||||
}
|
}
|
||||||
.comment .comment {
|
.comment .comment {
|
||||||
background: var(--lightgray);
|
background-color: rgba(0,0,0,.05);
|
||||||
border-left: 1px solid #dcdcdc;
|
border-left: 1px solid #dcdcdc;
|
||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
.comment .comment .comment {
|
|
||||||
background: var(--whitebg);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment {
|
|
||||||
background: var(--lightgray);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment {
|
|
||||||
background: var(--whitebg);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--lightgray);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--whitebg);
|
|
||||||
}
|
|
||||||
/* Is there any better way to do this??? send help naow */
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--lightgray);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--whitebg);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--lightgray);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--whitebg);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--lightgray);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--whitebg);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--lightgray);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--whitebg);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--whitebg);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--lightgray);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--whitebg);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--lightgray);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--whitebg);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--lightgray);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--whitebg);
|
|
||||||
}
|
|
||||||
.comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment .comment {
|
|
||||||
background: var(--lightgray);
|
|
||||||
}
|
|
||||||
/* POST */
|
/* POST */
|
||||||
#post .info {
|
#post .info {
|
||||||
float: left;
|
float: left;
|
||||||
@ -1118,6 +992,7 @@ input[type="submit"]:hover,
|
|||||||
}
|
}
|
||||||
#search form label {
|
#search form label {
|
||||||
float: left;
|
float: left;
|
||||||
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
#search form label input {
|
#search form label input {
|
||||||
float: left;
|
float: left;
|
||||||
|
Loading…
Reference in New Issue
Block a user