* css: Fix sidedivinner padding creating ui problems refs #3907 * css: Fix colorpicker for mobilepull/3910/head
parent
4ceb42603e
commit
84d82b506b
|
@ -17,6 +17,7 @@ html.inner-editor {
|
||||||
#outerdocbody iframe {
|
#outerdocbody iframe {
|
||||||
flex: 1 auto;
|
flex: 1 auto;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
}
|
}
|
||||||
#outerdocbody #sidediv {
|
#outerdocbody #sidediv {
|
||||||
order: -1; /* display it on the first row positionning, i.e. on the left */
|
order: -1; /* display it on the first row positionning, i.e. on the left */
|
||||||
|
|
|
@ -75,6 +75,9 @@
|
||||||
max-height: 80vh;
|
max-height: 80vh;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
|
.popup#users .popup-content {
|
||||||
|
overflow: visible;
|
||||||
|
}
|
||||||
/* Move popup to the bottom, except popup linked to left toolbar, like hyperklink popup */
|
/* Move popup to the bottom, except popup linked to left toolbar, like hyperklink popup */
|
||||||
.popup:not(.toolbar-popup) {
|
.popup:not(.toolbar-popup) {
|
||||||
top: auto;
|
top: auto;
|
||||||
|
|
|
@ -100,8 +100,10 @@ input#myusernameedit:not(.editable) {
|
||||||
}
|
}
|
||||||
@media (max-width: 720px) {
|
@media (max-width: 720px) {
|
||||||
#mycolorpicker.popup {
|
#mycolorpicker.popup {
|
||||||
right: 0;
|
top: auto;
|
||||||
left: auto;
|
bottom: 0;
|
||||||
|
left: auto !important;
|
||||||
|
right: 0 !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#mycolorpicker.popup .btn-container {
|
#mycolorpicker.popup .btn-container {
|
||||||
|
|
|
@ -49,8 +49,22 @@
|
||||||
|
|
||||||
--main-font-family: Quicksand, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
--main-font-family: Quicksand, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
||||||
|
|
||||||
--editor-padding: 40px 55px;
|
--editor-horizontal-padding: 55px;
|
||||||
--editor-padding-top: 40px;
|
--editor-vertical-padding: 40px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width:1000px) {
|
||||||
|
:root {
|
||||||
|
--editor-horizontal-padding: 15px;
|
||||||
|
--editor-vertical-padding: 15px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width:600px) {
|
||||||
|
:root {
|
||||||
|
--editor-horizontal-padding: 15px;
|
||||||
|
--editor-vertical-padding: 15px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Default scrollbar values */
|
/* Default scrollbar values */
|
||||||
|
|
|
@ -49,11 +49,4 @@ input#myusernameedit {
|
||||||
|
|
||||||
#mycolorpickerpreview {
|
#mycolorpickerpreview {
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 720px) {
|
|
||||||
#mycolorpicker {
|
|
||||||
right: 0;
|
|
||||||
left: initial;
|
|
||||||
}
|
|
||||||
}
|
}
|
|
@ -20,9 +20,10 @@
|
||||||
#outerdocbody iframe, #outerdocbody > #innerdocbody {
|
#outerdocbody iframe, #outerdocbody > #innerdocbody {
|
||||||
max-width: 900px;
|
max-width: 900px;
|
||||||
padding: 40px 55px;
|
padding: 40px 55px;
|
||||||
padding: var(--editor-padding);
|
padding-left: var(--editor-horizontal-padding);
|
||||||
padding-top: 40px;
|
padding-right: var(--editor-horizontal-padding);
|
||||||
padding-top: var(--editor-padding-top);
|
padding-top: var(--editor-vertical-padding);
|
||||||
|
padding-bottom: var(--editor-vertical-padding);
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
border: 0;
|
border: 0;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
|
@ -32,8 +33,11 @@
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
}
|
}
|
||||||
#sidediv {
|
#sidediv {
|
||||||
padding-top: 40px; /* = #innerdocbody iframe padding-top */
|
/* Padding must be the same than editor, otherwise it creates problem */
|
||||||
padding-top: var(--editor-padding-top);
|
padding-top: 40px; /* = #innerdocbody iframe vertical padding */
|
||||||
|
padding-bottom: 40px;
|
||||||
|
padding-top: var(--editor-vertical-padding);
|
||||||
|
padding-bottom: var(--editor-vertical-padding);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Fixs author_hover does not take in account the document padding */
|
/* Fixs author_hover does not take in account the document padding */
|
||||||
|
@ -52,13 +56,9 @@
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
}
|
}
|
||||||
#outerdocbody iframe, #outerdocbody > #innerdocbody {
|
#outerdocbody iframe, #outerdocbody > #innerdocbody {
|
||||||
padding: 20px;
|
|
||||||
max-width: none;
|
max-width: none;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
}
|
}
|
||||||
#sidediv {
|
|
||||||
padding-top: 20px !important; /* = #outerdocbody iframe padding-top */
|
|
||||||
}
|
|
||||||
|
|
||||||
.authortooltip { margin-top: 20px !important; }
|
.authortooltip { margin-top: 20px !important; }
|
||||||
.caretindicator { margin-top: 0px !important; }
|
.caretindicator { margin-top: 0px !important; }
|
||||||
|
@ -71,12 +71,6 @@
|
||||||
#outerdocbody.plugin-ep_author_neat #sidediv { padding-right: 0 !important; }
|
#outerdocbody.plugin-ep_author_neat #sidediv { padding-right: 0 !important; }
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width:600px) {
|
|
||||||
#outerdocbody iframe, #outerdocbody > #innerdocbody {
|
|
||||||
padding: 15px;
|
|
||||||
}
|
|
||||||
/* #sidediv is hidden at this size of screen */
|
|
||||||
}
|
|
||||||
@media only screen and (max-width: 720px) {
|
@media only screen and (max-width: 720px) {
|
||||||
#editorcontainerbox {
|
#editorcontainerbox {
|
||||||
margin-bottom: 39px; /* margin for bottom toolbar */
|
margin-bottom: 39px; /* margin for bottom toolbar */
|
||||||
|
|
|
@ -189,8 +189,8 @@
|
||||||
.light-editor.light-background,
|
.light-editor.light-background,
|
||||||
.super-dark-editor.super-dark-background,
|
.super-dark-editor.super-dark-background,
|
||||||
.dark-editor.dark-background {
|
.dark-editor.dark-background {
|
||||||
--editor-padding: 20px 35px;
|
--editor-horizontal-padding: 35px;
|
||||||
--editor-padding-top: 20px;
|
--editor-vertical-padding: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -218,8 +218,8 @@
|
||||||
}
|
}
|
||||||
@media (min-width: 1001px) {
|
@media (min-width: 1001px) {
|
||||||
.full-width-editor {
|
.full-width-editor {
|
||||||
--editor-padding: 20px 35px !important;
|
--editor-horizontal-padding: 35px !important;
|
||||||
--editor-padding-top: 20px !important;
|
--editor-vertical-padding: 20px !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.full-width-editor ::-webkit-scrollbar-track,
|
.full-width-editor ::-webkit-scrollbar-track,
|
||||||
|
|
Loading…
Reference in New Issue