forked from projects/fipamo
theme color correction, editor responsive tweaks
the theme color for the dashboard was incorrect, so that has been updated and the responsive sticky for the text formatter in the page editor went funky with posts that had a lot of text so that's been adjusted so it behaves as it should when it has to resize and stick
This commit is contained in:
parent
f53bb588c5
commit
84c6fa7a1a
2 changed files with 10 additions and 2 deletions
|
@ -207,7 +207,7 @@ main > section.text-editor > div.text-editor-control {
|
|||
.control-freeze {
|
||||
position: fixed;
|
||||
z-index: 300;
|
||||
width: 97%;
|
||||
width: 900px;
|
||||
top: 65px;
|
||||
}
|
||||
|
||||
|
@ -277,6 +277,10 @@ main section.text-editor div.edit-post-wrapper pre code {
|
|||
main > section.text-editor {
|
||||
width: 97%;
|
||||
}
|
||||
|
||||
.control-freeze {
|
||||
width: 97%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 480px) {
|
||||
|
@ -322,4 +326,8 @@ main section.text-editor div.edit-post-wrapper pre code {
|
|||
main section.text-editor div.edit-post-wrapper #highlight {
|
||||
font-size: 0.8em;
|
||||
}
|
||||
|
||||
.control-freeze {
|
||||
width: 96%;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="theme-color" content="#d66365" />
|
||||
<meta name="theme-color" content="#cf436b" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="csrf-token" content="{{ csrf_token() }}">
|
||||
<title>
|
||||
|
|
Loading…
Reference in a new issue