css: various improvements

This commit is contained in:
Sebastian Castro 2020-04-16 17:15:49 +02:00 committed by muxator
parent 02769bee44
commit 6de996c973
4 changed files with 20 additions and 8 deletions

View file

@ -87,6 +87,7 @@
background-color: white; background-color: white;
overflow-y: auto; overflow-y: auto;
flex: 1 auto; flex: 1 auto;
height: 0; /* strange bug on firefox, if height is not set, the chattext grow bigger than the maximum height */
} }
#chattext p { #chattext p {
padding: 3px; padding: 3px;

View file

@ -27,10 +27,6 @@
background-color: var(--bg-soft-color); background-color: var(--bg-soft-color);
} }
#chatbox.stickyChat.chatAndUsersChat .chat-content {
}
#titlebar { #titlebar {
bottom: 0; bottom: 0;
line-height: 44px; line-height: 44px;
@ -48,14 +44,20 @@
#chatlabel { margin-right: 15px; } #chatlabel { margin-right: 15px; }
#chattext { #chattext {
padding: 10px; padding: 0;
border-top: 1px solid var(--bg-color); border-top: 1px solid var(--bg-color);
border-bottom: 1px solid var(--bg-color); /*#e5e7ea;*/ border-bottom: 1px solid var(--bg-color); /*#e5e7ea;*/
background-color: inherit; background-color: inherit;
color: inherit; color: inherit;
} }
#chattext.authorColors { #chattext p {
padding: 0; padding: 4px 10px;
}
#chattext p:first-child {
padding-top: 10px;
}
#chattext p:last-child {
padding-bottom: 10px;
} }
.plugin-ep_author_neat #chattext.authorColors p, .plugin-ep_author_neat #chattext.authorColors p,

View file

@ -49,7 +49,7 @@ select, .nice-select {
[type="checkbox"] + label { [type="checkbox"] + label {
position: relative; position: relative;
padding-left: 3rem; padding-left: 2.5rem;
cursor: pointer; cursor: pointer;
display: inline-block; display: inline-block;
height: 1.4rem; height: 1.4rem;

View file

@ -50,6 +50,8 @@
.comment-edit-form { .comment-edit-form {
margin-top: 15px; margin-top: 15px;
} }
/* MODAL */
.comment-modal .full-display-content { .comment-modal .full-display-content {
box-shadow: none; box-shadow: none;
margin: 0 !important; margin: 0 !important;
@ -65,8 +67,13 @@
.comment-modal .comment-reply { .comment-modal .comment-reply {
border-top: 1px solid var(--bg-soft-color); border-top: 1px solid var(--bg-soft-color);
} }
.comment-modal .full-display-content .comment-title-wrapper,
.comment-modal .full-display-content .comment-reply {
padding: 15px;
}
/* NEW COMMENT POPUP */
.new-comment-popup textarea { .new-comment-popup textarea {
background-color: var(--bg-soft-color); background-color: var(--bg-soft-color);
} }
@ -75,11 +82,13 @@
} }
/* EDITOR COMMENTEED LINE */
#innerdocbody .ace-line .comment { #innerdocbody .ace-line .comment {
background-color: #fffacc; background-color: #fffacc;
color: var(--super-dark-color); color: var(--super-dark-color);
} }
@media (min-width: 1200px) { @media (min-width: 1200px) {
#comments { #comments {
width: 300px; width: 300px;