SPR-742: Konfigurierbarkeit check, neuzuordnung

This commit is contained in:
Silke Pisulla 2017-03-28 15:10:27 +02:00
commit 2d623f4b2e
16 changed files with 353 additions and 233 deletions

View file

@ -21,7 +21,7 @@
.pagetools-item(img_backto, 12);
*/
#dokuwiki__aside{
#dokuwiki__aside {
@media @screen_max-md {
display: none !important;
}
@ -57,11 +57,18 @@ nav#dokuwiki__pagetools {
height: auto;
min-height: @toolbox-size; // for nav:hover
width: @toolbox-size; // for nav:hover
opacity: .6;
color: @ini_nav_menu_color;
//opacity: .6;
font-size: @font-size-default;
padding: 2px @toolbox-size 2px 2px;
@media @screen_min-md {
color: @ini_nav_menu_color;
}
@media @screen_max-md {
color: @ini_existing;
}
* {
color: inherit;
}
@ -73,9 +80,9 @@ nav#dokuwiki__pagetools {
&:hover,
&:focus,
&:active {
opacity: 1;
color: @ini_nav_menu_hover_color;
background-color: #FFF;
//opacity: 1;
//color: @ini_nav_menu_hover_color;
background-color: transparent;
}
span {
@ -90,8 +97,15 @@ nav#dokuwiki__pagetools {
width: @page-tools_svg-size;
height: @page-tools_svg-size;
vertical-align: middle;
fill: @ini_nav_menu_color;
margin: @page-tools_svg-space;
@media @screen_min-md {
fill: @ini_nav_menu_color;
}
@media @screen_max-md {
fill: @ini_existing;
}
}
&.top {
@ -101,20 +115,14 @@ nav#dokuwiki__pagetools {
&.plugin_move_page {
a {
opacity: .6;
.btn-hover();
//opacity: .6;
color: @ini_nav_menu_color;
* {
color: inherit;
}
&:hover,
&:focus,
&:active {
color: @ini_nav_menu_hover_color;
background-color: #fff;
opacity: 1;
}
}
}
}
@ -122,24 +130,35 @@ nav#dokuwiki__pagetools {
&:hover {
ul {
background-color: #fff;
box-shadow: @box-shadow-offset;
background-color: @ini_background_content;
border-color: @ini_border_light;
li {
color: @ini_existing;
a {
box-shadow: none;
background-image: none;
opacity: .8;
//opacity: .8;
border-color: transparent;
color: inherit;
padding: 2px 0 2px 2px;
svg {
border-radius: @ini_default_border_radius;
fill: @ini_existing;
}
&:hover,
&:focus,
&:active {
opacity: 1;
//opacity: 1;
svg {
fill: @ini_nav_menu_hover_color;
background-color: @ini_existing;
border: solid 2px @ini_existing;
fill: @ini_background_content;
}
}