SPR-950 changes for mobile header,

Bugfix edit Mode of document
This commit is contained in:
Jana Deutschländer 2017-09-26 12:39:45 +02:00
commit 4f626e3342
9 changed files with 57 additions and 1 deletions

View file

@ -161,6 +161,21 @@
}
}
/* + + + mobile select for doku wiki tools + + + */
.menu-tool-select {
position: relative;
z-index: 1000;
display: none;
@media @screen_max-xxs {
display: block;
}
select {
display: block;
width:100%;
}
}
/* + + + + + with magic matcher + + + + + */
&.has-magicmatcher {

View file

@ -72,5 +72,9 @@
top: -.6em;
font-size: @font-size-very-small;
}
&:empty {
display: none;
}
}
}

View file

@ -41,6 +41,10 @@ nav#dokuwiki__pagetools {
right: 8px;
}
@media @screen_max-xxs {
display: none;
}
ul {
li {
@page-tools_svg-size: 25px;

View file

@ -50,11 +50,13 @@
@media @screen_max-xs {
display: block;
float: none;
margin-bottom: @headericons-margin-xxs;
}
@media @screen_max-xxs {
margin-bottom: (@headericons-margin-xxs - .2);
display: none;
}
> span,
@ -110,7 +112,7 @@
@media @screen_max-xxs {
left: -10px;
right: (@toggle-size + @headericons-margin-xxs); // 1.75rem + .45rem
right: 0;
width: auto;
padding-top: .35rem;
}

View file

@ -70,6 +70,10 @@ html, body {
@media @screen_max-xs {
padding-left: @margin-small;
}
@media @screen_max-xxs {
padding-right: @margin-small;
}
}
.content #dokuwiki__pagetools {

View file

@ -42,6 +42,26 @@
color: @color-editBox;
}
}
@media @screen_max-xs {
div.summary {
label[for=edit__summary] {
white-space: normal;
display: block;
width: 100%;
span {
display: inline-block;
padding-bottom: .4rem;
}
input#edit__summary{
max-width: 100%;
box-sizing: border-box;
}
}
}
}
}
}