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;
|
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;
|
||||||
|
|
|
@ -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,
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue