mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 22:23:33 +01:00
css: various improvements
This commit is contained in:
parent
02769bee44
commit
6de996c973
4 changed files with 20 additions and 8 deletions
|
@ -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;
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue