Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes "Long strings of text break profile width" #44

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion global/css/comments.css
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@
font-size: 14px;
font-weight: 300;
white-space: pre-line;
word-break: break-word;
}

.comments__comment-top-text a {
Expand Down Expand Up @@ -400,4 +401,4 @@
.comments__input-box {
position: relative;

}
}
8 changes: 5 additions & 3 deletions global/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -818,16 +818,18 @@ a {
}

.osekai__2col_col1, .osekai__2col_col2 {
flex: 25%;
flex: 1;
transition: all 0.8s ease;
max-width: 100%;
min-width: 0;
}

@media screen and (max-width: 1200px) {
.osekai__2col-panels {
gap: 0px;
flex-direction: column;
}

.osekai__2col_col2 {
margin-top: 00px;
}
Expand Down Expand Up @@ -5027,4 +5029,4 @@ font-size: 18px;

#otherapplist .osekai__apps-dropdown-applist-left {
min-width: 250px;
}
}
12 changes: 11 additions & 1 deletion profiles/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,21 @@
align-items: center;
}

.profiles__cover-back-info_text {
max-width: 100%;
}

.profiles__cover-back-info_text p {
font-size: 15px;
font-weight: 500;
}

.profiles__cover-back-info_text p:not(#arrival__date):not(#hardware) {
text-overflow: ellipsis;
white-space: nowrap;
overflow-x: hidden;
}

.profiles__cover-back-info_text p .light {
font-weight: 100;
opacity: 0.7;
Expand Down Expand Up @@ -1674,4 +1684,4 @@ margin-top: 12px;
position: absolute;
box-sizing: border-box;
z-index: 5;
}
}