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;
overflow-y: 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 {
padding: 3px;

View file

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

View file

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

View file

@ -50,6 +50,8 @@
.comment-edit-form {
margin-top: 15px;
}
/* MODAL */
.comment-modal .full-display-content {
box-shadow: none;
margin: 0 !important;
@ -65,8 +67,13 @@
.comment-modal .comment-reply {
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 {
background-color: var(--bg-soft-color);
}
@ -75,11 +82,13 @@
}
/* EDITOR COMMENTEED LINE */
#innerdocbody .ace-line .comment {
background-color: #fffacc;
color: var(--super-dark-color);
}
@media (min-width: 1200px) {
#comments {
width: 300px;