
In the dokuwiki standard template __background__ is the variable defining the background-color of the content. It is one of the guaranteed placeholder that every template must provide. Hence we should use it with the way it is used in the default template, so other plugins can rely on it and look consistently. Also some other base-dokuwiki styles still use it accordingly, for example the footnotes. SPR-954
299 lines
7.6 KiB
Text
Executable file
299 lines
7.6 KiB
Text
Executable file
/**
|
|
* This file provides the design styles for the metatabbox
|
|
*
|
|
* @author Jana Deutschlaender <deutschlaender@cosmocode.de>
|
|
*/
|
|
|
|
|
|
#spr__meta-box {
|
|
.display-flex();
|
|
.flex-direction();
|
|
.justify-content(flex-end);
|
|
|
|
position: relative;
|
|
z-index: 10;
|
|
float: right;
|
|
max-width: 40%;
|
|
margin-top: -(@page_padding-top); // reverse padding-top of .page container
|
|
margin-right: -1px;
|
|
|
|
// >= 1024
|
|
@media @screen_min-md {
|
|
height: @page-header_height;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
// < 1024
|
|
@media @screen_max-md {
|
|
position: relative;
|
|
top: .2rem;
|
|
right: auto;
|
|
float: none;
|
|
display: block;
|
|
max-width: 100%;
|
|
min-height: @page-header_height;
|
|
height: auto;
|
|
border: 0 none;
|
|
}
|
|
|
|
.tab-container {
|
|
display: table;
|
|
|
|
@media @screen_max-md {
|
|
display: block;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.box-content {
|
|
position: relative;
|
|
height: 0;
|
|
overflow-y: visible;
|
|
}
|
|
|
|
|
|
/* + + + + + tab controlls + + + + + */
|
|
ul.meta-tabs {
|
|
list-style: none;
|
|
line-height: 160%;
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
@media @screen_min-md {
|
|
white-space: nowrap;
|
|
text-align: right;
|
|
}
|
|
|
|
&::before,
|
|
&::after {
|
|
content: '';
|
|
clear: both;
|
|
display: table;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
> li:first-child {
|
|
> a {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
> li {
|
|
position: relative;
|
|
display: inline-block;
|
|
vertical-align: bottom;
|
|
margin: 0;
|
|
|
|
@media @screen_min-md {
|
|
margin-left: .3rem;
|
|
}
|
|
|
|
@media @screen_max-md {
|
|
margin-right: .4rem;
|
|
margin-bottom: .2rem;
|
|
}
|
|
|
|
> a {
|
|
cursor: pointer;
|
|
position: relative;
|
|
display: block;
|
|
font-size: @font-size-small;
|
|
line-height: 1.42857143;
|
|
transition: @transition background-color, @transition border-color, @transition color;
|
|
|
|
@media @screen_min-md {
|
|
background-color: @ini_background_site;
|
|
border: 1px solid @noopentasks-border;
|
|
border-bottom-color: @ini_background_site;
|
|
border-radius: @ini_default_border_radius @ini_default_border_radius 0 0; // @ini_default_border_radius vs. @fix_border-radius
|
|
color: @ini_nav_menu_color;
|
|
margin-left: 4px;
|
|
padding: .3em 1rem .1em;
|
|
}
|
|
|
|
@media @screen_max-md {
|
|
top: 0;
|
|
border: 1px solid @ini_existing;
|
|
color: @ini_existing;
|
|
margin-top: .2rem;
|
|
margin-left: 0;
|
|
padding: .2em .3rem;
|
|
}
|
|
|
|
* {
|
|
cursor: pointer;
|
|
color: inherit;
|
|
}
|
|
|
|
.prefix {
|
|
position: relative;
|
|
color: inherit;
|
|
font-size: @font-size-small;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
text-decoration: none;
|
|
|
|
@media @screen_min-md {
|
|
background-color: @ini_background;
|
|
border-color: @ini_existing;
|
|
color: @ini_existing;
|
|
}
|
|
|
|
@media @screen_max-md {
|
|
background-color: @ini_existing;
|
|
border-color: @ini_background;
|
|
color: @ini_background;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.active {
|
|
z-index: 1;
|
|
|
|
> a {
|
|
cursor: default;
|
|
background-color: @ini_background;
|
|
border-color: @ini_existing;
|
|
border-bottom-color: @ini_background;
|
|
color: @ini_existing;
|
|
|
|
@media @screen_max-md {
|
|
background-color: @ini_existing;
|
|
border-bottom-color: @ini_existing;
|
|
border-radius: 0;
|
|
color: @ini_background;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/* + + + + + toggle content + + + + + */
|
|
.meta-content {
|
|
margin-top: -1px;
|
|
|
|
@media @screen_max-md {
|
|
clear: both;
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.tab-pane {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
display: none;
|
|
width: 100%;
|
|
background-color: @ini_background;
|
|
border: 1px solid @ini_existing;
|
|
|
|
@media @screen_min-xs {
|
|
min-width: 20em;
|
|
}
|
|
|
|
@media @screen_min-md {
|
|
border-radius: 0 0 @fix_border-radius @fix_border-radius; // @ini_default_border_radius vs. @fix_border-radius
|
|
}
|
|
|
|
&.active {
|
|
display: block;
|
|
overflow: hidden;
|
|
}
|
|
|
|
a {
|
|
color: @ini_existing;
|
|
}
|
|
|
|
> div {
|
|
font-size: @font-size-small;
|
|
padding: .8rem .5rem .5rem;
|
|
|
|
* {
|
|
font-size: inherit;
|
|
}
|
|
|
|
p {
|
|
padding-left: 1em;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
padding-left: 0;
|
|
|
|
li {
|
|
margin-left: 0;
|
|
padding-left: 1em;
|
|
}
|
|
}
|
|
}
|
|
|
|
&#spr__tab-tags {
|
|
> div {
|
|
ul {
|
|
li {
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#dw__toc {
|
|
width: auto;
|
|
float: none;
|
|
margin: 0;
|
|
padding: .6rem .5rem .5rem .8rem;
|
|
background: transparent;
|
|
border: 0 none;
|
|
|
|
h3 {
|
|
display: none;
|
|
}
|
|
|
|
> div {
|
|
padding: 0;
|
|
}
|
|
|
|
> div ul.toc {
|
|
font-size: @font-size-small;
|
|
padding-left: .5em;
|
|
|
|
a {
|
|
font-size: @font-size-small;
|
|
display: inline-block;
|
|
padding-left: 10px;
|
|
position: relative;
|
|
}
|
|
|
|
div.li {
|
|
position: relative;
|
|
padding: .15em 0;
|
|
|
|
&::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: .6em;
|
|
left: 0;
|
|
display: inline-block;
|
|
width: 4px;
|
|
height: 4px;
|
|
overflow: hidden;
|
|
background-color: @ini_existing;
|
|
}
|
|
}
|
|
}
|
|
|
|
> div > ul.toc {
|
|
padding: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ .msg-area + a {
|
|
clear: right;
|
|
margin-top: 20px;
|
|
}
|
|
}
|