Merge branch 'spis-master' into 'master'

spis master

See merge request !7
This commit is contained in:
Jana Deutschländer 2017-01-05 17:16:16 +01:00
commit 3d17036dd8
12 changed files with 356 additions and 162 deletions

View file

@ -57,8 +57,6 @@
} }
} }
} }
} }

View file

@ -6,14 +6,6 @@
#dokuwiki__content.main-content { #dokuwiki__content.main-content {
img {
display: inline-block;
}
/* + + + source block + + + */
.code {
margin-top: @grid;
}
} }
@ -21,25 +13,6 @@
/* min-width: 1440px */ /* min-width: 1440px */
@media @screen_min-xlg { @media @screen_min-xlg {
#dokuwiki__content.main-content {
p, a,
li, dl,
td, th,
label,
button {
font-size: .88rem;
line-height: 140%;
* {
font-size: inherit;
line-height: inherit;
}
}
.code {
font-size: .75rem;
}
}
} }
@ -47,23 +20,4 @@
/* max-width: 1199px */ /* max-width: 1199px */
@media @screen_max-xlg { @media @screen_max-xlg {
#dokuwiki__content.main-content {
p, a,
li, dl,
td, th,
label,
button {
font-size: 1rem;
line-height: 140%;
* {
font-size: inherit;
line-height: inherit;
}
}
.code {
font-size: .94rem;
}
}
} }

View file

@ -11,6 +11,7 @@
/* + + + + + nav main + + + + + */ /* + + + + + nav main + + + + + */
.nav-main { .nav-main {
padding-bottom: 1.8rem; padding-bottom: 1.8rem;
> ul { > ul {
@icon-size: 2rem; @icon-size: 2rem;
@ -26,7 +27,7 @@
color: @color-nav; color: @color-nav;
&:first-of-type { &:first-of-type {
padding-top: .3rem; padding-top: .3em;
} }
} }
@ -35,14 +36,15 @@
display: list-item; display: list-item;
list-style-type: square; list-style-type: square;
color: @color-nav; color: @color-nav;
padding-top: .1rem; font-weight: normal;
padding-bottom: .1rem; padding-top: .1em;
padding-bottom: .1em;
transition: @transition color; transition: @transition color;
&:hover, &:hover,
&:focus, &:focus,
&:active { &:active {
color: @button_color; color: @button_background;
} }
} }
} }
@ -53,7 +55,7 @@
position: relative; position: relative;
list-style-type: none; list-style-type: none;
margin: 0; margin: 0;
padding: 0 0 .3rem 0; padding: 0 0 .3em;
counter-increment: nav-counter; counter-increment: nav-counter;
&::after { &::after {
@ -71,7 +73,11 @@
position: relative; position: relative;
z-index: 1; z-index: 1;
margin-top: -1px; margin-top: -1px;
padding: .5rem 0 .5rem (@icon-size + 1); padding: .5em 0 .5em (@icon-size + 1);
&[class="li"] {
border-bottom: solid 1px @color-border;
}
&::before { &::before {
content: counter(nav-counter); content: counter(nav-counter);
@ -118,13 +124,13 @@
border: 1px solid transparent; border: 1px solid transparent;
border-radius: 2px; border-radius: 2px;
margin-bottom: -.3rem; margin-bottom: -.3rem;
padding: .6rem 0 .7rem (@icon-size + 1); padding: .6em 0 .6em (@icon-size + 1);
transition: @transition color, @transition background-color, @transition border-color; transition: @transition color, @transition background-color, @transition border-color;
&::before { &::before {
content: counter(nav-counter); content: counter(nav-counter);
position: absolute; position: absolute;
top: -.1rem; top: -.1em;
left: 0; left: 0;
display: flex; display: flex;
display: -webkit-flex; display: -webkit-flex;
@ -156,17 +162,17 @@
&:hover, &:hover,
&:focus, &:focus,
&:active { &:active {
background-color: @button_background; background-color: @button_color;
border-color: @button_color; border-color: @button_background;
color: @button_color; color: @button_background;
text-decoration: none; text-decoration: none;
&::before { &::before {
color: @button_color; color: @button_background;
} }
&::after { &::after {
background-color: @button_color; background-color: @button_background;
} }
} }
} }
@ -174,26 +180,31 @@
&.opened { &.opened {
a { a {
background-color: @button_color; background-color: @button_background;
color: @button_background; color: @button_color;
&::before { &::before {
color: @button_background; color: @button_color;
} }
&:hover, &:hover,
&:focus, &:focus,
&:active { &:active {
background-color: @button_background; background-color: @button_color;
border-color: @button_color; border-color: @button_background;
color: @button_color; color: @button_background;
text-decoration: none; text-decoration: none;
&::before { &::before {
color: @button_color; color: @button_background;
} }
} }
} }
+ ul {
margin-top: .5em;
margin-bottom: .25em;
}
} }
+ ul { + ul {
@ -217,12 +228,21 @@
@media @screen_min-xlg { @media @screen_min-xlg {
#dokuwiki__aside.main-sidebar { #dokuwiki__aside.main-sidebar {
.nav-main { .nav-main {
.li { > ul > li > .li {
font-size: .88rem; font-size: .9rem;
padding: .1rem 0;
> * { * {
font-size: .88rem; font-size: inherit;
}
}
.li {
font-size: .8rem;
padding: .1em 0;
* {
font-size: .8rem;
font-weight: inherit;
} }
} }
} }
@ -238,10 +258,10 @@
.nav-main { .nav-main {
.li { .li {
font-size: 1rem; font-size: 1rem;
padding: .15rem .25rem; padding: .15em .25rem;
> * { > * {
font-size: 1rem; font-size: inherit;
} }
} }
} }

View file

@ -5,7 +5,7 @@
*/ */
.breadcrumbs { .breadcrumbs {
padding: @margin-small 1.8rem; padding: (@margin-small + .2) 1.8rem @margin-small;
border-bottom: 1px solid @color-border; border-bottom: 1px solid @color-border;
> p { > p {
@ -20,24 +20,21 @@
.sr-only(); .sr-only();
} }
a {
&:hover,
&:focus,
&:active {
color: @color-nav;
}
}
span.home { span.home {
a { a {
.fontello(); .fontello();
.hide-text-show-before(); .hide-text-show-before();
.icon-home(); .icon-home();
height: 1em; min-height: 1.8em;
width: auto; width: auto;
box-sizing: border-box;
border: solid 1px transparent;
border-radius: 2px;
vertical-align: middle;
text-decoration: none; text-decoration: none;
transition: @transition color; margin-top: -.2em;
transition: @transition border-color;
&:before { &:before {
font-size: 1rem; font-size: 1rem;
@ -47,21 +44,25 @@
&:hover, &:hover,
&:focus, &:focus,
&:active { &:active {
color: @color-link-hover; border-color: @color-link;
} }
} }
} }
bdi {
padding: .1em .1em 0;
}
} }
/* + + + + + icon list + + + + + */ /* + + + + + icon list + + + + + */
.page-attributes { .page-attributes {
list-style: none;
float: right; float: right;
display: inline-block; display: inline-block;
list-style: none;
margin: 0;
padding: 0;
max-width: 30%; max-width: 30%;
margin: -.2em 0 0;
padding: 0;
> li { > li {
.btn-usertools-wrapper(); // uniform li .btn-usertools-wrapper(); // uniform li
@ -117,11 +118,11 @@
&:hover, &:hover,
&:active, &:active,
&:focus { &:focus {
border-color: @button_color; border-color: @button_background;
color: @button_color; color: @button_background;
.prefix { .prefix {
color: @button_color; color: @button_background;
} }
} }
} }

View file

@ -8,7 +8,7 @@
.nav-usertools { .nav-usertools {
&.has-bar { &.has-bar {
margin-top: @height-context-bar; margin-top: @height-context-bar;
padding-top: .5rem; padding-top: .5em;
} }
@ -16,7 +16,7 @@
ul { ul {
float: right; float: right;
padding: 0; padding: 0;
margin: .2rem -.2rem 0 0; margin: .2em -.2rem 0 0;
li { li {
.btn-usertools-wrapper(); // uniform li .btn-usertools-wrapper(); // uniform li
@ -50,7 +50,7 @@
&.user { &.user {
border: 1px solid @color-border; border: 1px solid @color-border;
border-radius: @border-radius; border-radius: @border-radius;
padding: .3rem .25rem; padding: .3em .25rem;
bdi { bdi {
color: @color-nav; color: @color-nav;
@ -110,10 +110,10 @@
&:hover, &:hover,
&:active, &:active,
&:focus { &:focus {
border-color: @button_color; border-color: @button_background;
//-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6); //-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
//box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6); //box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
color: @button_color; color: @button_background;
} }
&::before { &::before {
@ -123,7 +123,7 @@
box-sizing: border-box; box-sizing: border-box;
font-size: 1.4em; font-size: 1.4em;
cursor: pointer; cursor: pointer;
margin: .2rem 0 0; margin: .2em 0 0;
} }
/* icon register new user */ /* icon register new user */

View file

@ -46,11 +46,11 @@
&:hover, &:hover,
&:focus, &:focus,
&:active { &:active {
border: solid 1px @button_color; border: solid 1px @button_background;
color: @button_color; color: @button_background;
&::after { &::after {
background-color: @button_color; background-color: @button_background;
} }
} }

View file

@ -7,25 +7,25 @@
.side-tools.main-sidebar { .side-tools.main-sidebar {
@icon-size: 2rem; @icon-size: 2rem;
counter-increment: bar-counter; counter-increment: bar-counter;
> nav{ > nav {
> ul{ > ul {
margin-bottom: 0;
padding-bottom: .4rem; padding-bottom: .4rem;
margin-bottom: 0;
} }
} }
h6 { //background-color: pink;// hier activ !!! h6 {
position: relative; position: relative;
width: auto; width: auto;
height: auto; height: auto;
color: @color-nav; color: @color-nav;
font-size: .88rem;
font-weight: normal; font-weight: normal;
padding: .5rem 0 .5rem (@icon-size + 1); padding: .5em 0 .5em (@icon-size + 1.1);
&::before { &::before {
//background-color: gold;
content: counter(bar-counter, lower-alpha); content: counter(bar-counter, lower-alpha);
position: absolute; position: absolute;
top: 0; top: 0;
@ -50,19 +50,25 @@
top: 15%; top: 15%;
bottom: 15%; bottom: 15%;
width: 1px; width: 1px;
left: (@icon-size + .5); left: (@icon-size + .6);
background-color: @color-border; background-color: @color-border;
transition: @transition background-color; transition: @transition background-color;
} }
+ ul {
margin-top: .5em;
margin-bottom: .25em;
}
} }
/* + + + linklist + + + */ /* + + + linklist + + + */
ul,.trace{ ul,
.trace {
padding-left: (@icon-size + .5); padding-left: (@icon-size + .5);
} }
ul{ ul {
border-bottom: 1px solid @color-border; border-bottom: 1px solid @color-border;
} }
@ -79,7 +85,8 @@
} }
.breadcrumbs { .breadcrumbs {
padding: 0; margin: 0; padding: 0;
margin: 0;
} }
bdi { bdi {
@ -100,19 +107,19 @@
display: list-item; display: list-item;
list-style-type: square; list-style-type: square;
color: @color-nav; color: @color-nav;
padding-top: .1rem; padding-top: .1em;
padding-bottom: .1rem; padding-bottom: .1em;
transition: @transition color; transition: @transition color;
&:hover, &:hover,
&:focus, &:focus,
&:active { &:active {
color: @button_color; color: @button_background;
} }
} }
&:first-of-type { &:first-of-type {
padding-top: .3rem; padding-top: .3em;
} }
} }
} }
@ -123,13 +130,21 @@
@media @screen_min-xlg { @media @screen_min-xlg {
.side-tools.main-sidebar { .side-tools.main-sidebar {
h6 {
font-size: .9rem;
* {
font-size: inherit;
}
}
li { li {
font-size: 100%; font-size: 100%;
padding-top: .1rem; padding-top: .1em;
padding-bottom: .1rem; padding-bottom: .1em;
> * { > * {
font-size: .88rem; font-size: .8rem;
} }
} }
} }
@ -137,18 +152,17 @@
/* + + + + + + + + + + + + + + + + + + + + + + + + + + */ /* + + + + + + + + + + + + + + + + + + + + + + + + + + */
/* max-width: 1199px */ /* max-width: 1439px */
@media @screen_max-xlg { @media @screen_max-xlg {
.site-tools.main-sidebar { .side-tools.main-sidebar {
h6 { h6 {
font-size: 1rem; font-size: 1rem;
} }
li { li {
font-size: 1rem; font-size: 1rem;
padding-top: .15rem; padding: .15em .25rem;
padding-bottom: .15rem;
> * { > * {
font-size: 1rem; font-size: 1rem;

View file

@ -5,12 +5,11 @@
* @author Jana Deutschlaender <deutschlaender@cosmocode.de> * @author Jana Deutschlaender <deutschlaender@cosmocode.de>
*/ */
html, body {
html, body{
background-color: @color-site-bg; background-color: @color-site-bg;
} }
a{ a {
color: @ini_existing; color: @ini_existing;
} }
@ -80,7 +79,6 @@ a{
margin-right: 0; margin-right: 0;
} }
caption, caption,
figcaption, figcaption,
summary, summary,
@ -89,6 +87,7 @@ legend {
margin: 0 0 .35em; margin: 0 0 .35em;
line-height: 1.2; line-height: 1.2;
} }
h1, h1,
h2, h2,
h3, h3,
@ -100,6 +99,7 @@ h6 {
line-height: 1.2; line-height: 1.2;
clear: both; clear: both;
} }
[dir=rtl] h1, [dir=rtl] h1,
[dir=rtl] h2, [dir=rtl] h2,
[dir=rtl] h3, [dir=rtl] h3,
@ -113,41 +113,53 @@ h1 {
font-size: 1.4rem; font-size: 1.4rem;
margin: 0 0 0.444em; margin: 0 0 0.444em;
} }
h2 { h2 {
font-size: 1.12rem; font-size: 1.12rem;
margin: 0 0 0.666em; margin: 0 0 0.666em;
} }
h3 { h3 {
font-size: 1rem; font-size: 1rem;
margin: 0 0 0.888em; margin: 0 0 0.888em;
} }
h4 { h4 {
font-size: .93rem; font-size: .93rem;
margin: 0 0 1.0em; margin: 0 0 1.0em;
} }
h5 { h5 {
font-size: .88rem; font-size: .88rem;
margin: 0 0 1.1428em; margin: 0 0 1.1428em;
} }
h6 { h6 {
font-size: .83rem; font-size: .83rem;
margin: 0 0 1.333em; margin: 0 0 1.333em;
} }
p{ p {
font-size: .83rem; font-size: .83rem;
line-height: 135%; line-height: 135%;
a, span, strong{
font-size: inherit; a,
} span,
} strong {
label, legend{
font-size: .83rem;
a, span, strong{
font-size: inherit; font-size: inherit;
} }
} }
label,
legend {
font-size: .88rem;
a,
span,
strong {
font-size: inherit;
}
}
p, p,
ul, ul,
@ -161,7 +173,9 @@ figure,
details, details,
fieldset, fieldset,
address { address {
margin: 0 0 1.4em 0; /* bottom margin = line-height */ font-size: .88rem;
line-height: 140%;
margin: 0 0 1.4em; /* bottom margin = line-height */
padding: 0; padding: 0;
} }
@ -172,6 +186,15 @@ audio {
padding: 0; padding: 0;
} }
small,
.code {
font-size: .75rem;
}
.code {
margin-top: @grid;
}
/*____________ lists ____________*/ /*____________ lists ____________*/
@ -179,6 +202,7 @@ ul,
ol { ol {
padding: 0 0 0 1.5em; padding: 0 0 0 1.5em;
} }
[dir=rtl] ul, [dir=rtl] ul,
[dir=rtl] ol { [dir=rtl] ol {
padding: 0 1.5em 0 0; padding: 0 1.5em 0 0;
@ -189,10 +213,12 @@ dd {
padding: 0; padding: 0;
margin: 0 0 0 1.5em; margin: 0 0 0 1.5em;
} }
[dir=rtl] li, [dir=rtl] li,
[dir=rtl] dd { [dir=rtl] dd {
margin: 0 1.5em 0 0; margin: 0 1.5em 0 0;
} }
dt { dt {
font-weight: bold; font-weight: bold;
margin: 0; margin: 0;
@ -208,17 +234,34 @@ dl dl {
margin-bottom: 0; margin-bottom: 0;
padding: 0; padding: 0;
} }
li li { li li {
font-size: 100%; font-size: 100%;
} }
ul { list-style: square outside; } ul {
ol { list-style: decimal outside; } list-style: square outside;
ol ol { list-style-type: lower-alpha; } }
ol ol ol { list-style-type: upper-roman; }
ol ol ol ol { list-style-type: upper-alpha; }
ol ol ol ol ol { list-style-type: lower-roman; }
ol {
list-style: decimal outside;
}
ol ol {
list-style-type: lower-alpha;
}
ol ol ol {
list-style-type: upper-roman;
}
ol ol ol ol {
list-style-type: upper-alpha;
}
ol ol ol ol ol {
list-style-type: lower-roman;
}
table { table {
border-collapse: collapse; border-collapse: collapse;
@ -231,6 +274,7 @@ caption {
caption-side: top; caption-side: top;
text-align: left; text-align: left;
} }
[dir=rtl] caption { [dir=rtl] caption {
text-align: right; text-align: right;
} }
@ -242,11 +286,13 @@ td {
vertical-align: top; vertical-align: top;
border: 1px solid @ini_border; border: 1px solid @ini_border;
} }
th { th {
font-weight: bold; font-weight: bold;
background-color: @ini_background_alt; background-color: @ini_background_alt;
text-align: left; text-align: left;
} }
[dir=rtl] th { [dir=rtl] th {
text-align: right; text-align: right;
} }
@ -254,11 +300,13 @@ th {
a { a {
outline: none; outline: none;
} }
a:link, a:link,
a:visited { a:visited {
text-decoration: none; text-decoration: none;
color: @ini_link; color: @ini_link;
} }
a:hover, a:hover,
a:focus, a:focus,
a:active { a:active {
@ -266,6 +314,7 @@ a:active {
} }
img { img {
display: inline-block;
border-width: 0; border-width: 0;
vertical-align: middle; vertical-align: middle;
color: #666; color: #666;
@ -273,6 +322,7 @@ img {
font-style: italic; font-style: italic;
height: auto; height: auto;
} }
img, img,
object, object,
embed, embed,
@ -281,6 +331,7 @@ video,
audio { audio {
max-width: 100%; max-width: 100%;
} }
button img { button img {
max-width: none; max-width: none;
} }
@ -300,6 +351,7 @@ abbr {
border-bottom: 1px dotted; border-bottom: 1px dotted;
font-style: normal; font-style: normal;
} }
em acronym, em acronym,
em abbr { em abbr {
font-style: italic; font-style: italic;
@ -324,6 +376,7 @@ kbd {
box-shadow: inset 0 0 .3em @ini_border; box-shadow: inset 0 0 .3em @ini_border;
border-radius: 2px; border-radius: 2px;
} }
pre { pre {
overflow: auto; overflow: auto;
word-wrap: normal; word-wrap: normal;
@ -338,9 +391,11 @@ blockquote {
border: solid @ini_border; border: solid @ini_border;
border-width: 0 0 0 .25em; border-width: 0 0 0 .25em;
} }
[dir=rtl] blockquote { [dir=rtl] blockquote {
border-width: 0 .25em 0 0; border-width: 0 .25em 0 0;
} }
q:before, q:before,
q:after { q:after {
content: ''; content: '';
@ -351,17 +406,20 @@ sup {
font-size: .8em; font-size: .8em;
line-height: 1; line-height: 1;
} }
sub { sub {
vertical-align: sub; vertical-align: sub;
} }
sup { sup {
vertical-align: super; vertical-align: super;
} }
small { small {
font-size: .8em; font-size: .9em;
} }
/*____________ forms ____________*/ /*____________ forms ____________*/
/* for all of the form styles, style.ini colours are not used on purpose (except for fieldset border) */ /* for all of the form styles, style.ini colours are not used on purpose (except for fieldset border) */
@ -371,18 +429,21 @@ form {
margin: 0; margin: 0;
padding: 0; padding: 0;
} }
fieldset { fieldset {
padding: .7em 1em 0; padding: .7rem 1rem;
padding: .7rem 1rem; /* for those browsers understanding :last-child */
border: 1px solid @ini_text_alt; border: 1px solid @ini_text_alt;
} }
fieldset > :last-child { fieldset > :last-child {
margin-bottom: 0; margin-bottom: 0;
} }
legend { legend {
margin: 0; margin: 0;
padding: 0 .1em; padding: 0 .1em;
} }
label { label {
vertical-align: middle; vertical-align: middle;
cursor: pointer; cursor: pointer;
@ -411,10 +472,12 @@ progress {
select { select {
max-width: 100%; max-width: 100%;
} }
optgroup { optgroup {
font-style: italic; font-style: italic;
font-weight: bold; font-weight: bold;
} }
option { option {
font-style: normal; font-style: normal;
font-weight: normal; font-weight: normal;
@ -428,6 +491,7 @@ keygen {
box-shadow: inset 0 0 1px #eee; box-shadow: inset 0 0 1px #eee;
border-radius: 2px; border-radius: 2px;
} }
input:active, input:active,
input:focus, input:focus,
textarea:active, textarea:active,
@ -438,6 +502,7 @@ keygen:active,
keygen:focus { keygen:focus {
border-color: #999; border-color: #999;
} }
input[type=radio], input[type=radio],
input[type=checkbox], input[type=checkbox],
input[type=image] { input[type=image] {
@ -485,7 +550,7 @@ button:focus,
.qq-upload-button:hover { .qq-upload-button:hover {
border-color: #999; border-color: #999;
background-color: #ddd; background-color: #ddd;
background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPgo8bGluZWFyR3JhZGllbnQgaWQ9Imc2NzAiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+CjxzdG9wIHN0b3AtY29sb3I9IiNGRkZGRkYiIG9mZnNldD0iMCIvPjxzdG9wIHN0b3AtY29sb3I9IiNGNEY0RjQiIG9mZnNldD0iMC4zIi8+PHN0b3Agc3RvcC1jb2xvcj0iI0RERERERCIgb2Zmc2V0PSIwLjk5Ii8+PHN0b3Agc3RvcC1jb2xvcj0iI0JCQkJCQiIgb2Zmc2V0PSIuOTkiLz4KPC9saW5lYXJHcmFkaWVudD4KPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNnNjcwKSIgLz4KPC9zdmc+); background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPgo8bGluZWFyR3JhZGllbnQgaWQ9Imc2NzAiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4MT0iMCUiIHkxPSIwJSIgeDI9IjAlIiB5Mj0iMTAwJSI+CjxzdG9wIHN0b3AtY29sb3I9IiNGRkZGRkYiIG9mZnNldD0iMCIvPjxzdG9wIHN0b3AtY29sb3I9IiNGNEY0RjQiIG9mZnNldD0iMC4zIi8+PHN0b3Agc3RvcC1jb2xvcj0iI0RERERERCIgb2Zmc2V0PSIwLjk5Ii8+PHN0b3Agc3RvcC1jb2xvcj0iI0JCQkJCQiIgb2Zmc2V0PSIuOTkiLz4KPC9saW5lYXJHcmFkaWVudD4KPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNnNjcwKSIgLz4KPC9zdmc+);
background-image: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 30%, #dddddd 99%, #bbbbbb 99%); background-image: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 30%, #dddddd 99%, #bbbbbb 99%);
} }
@ -508,5 +573,3 @@ textarea[readonly] {
opacity: .5; opacity: .5;
background-color: #eee; background-color: #eee;
} }

View file

@ -150,7 +150,7 @@
color: @color-nav; color: @color-nav;
font-size: .8rem; font-size: .8rem;
padding: 0; padding: 0;
margin: 0 .2rem 0 .1rem; margin: 0 .2rem;
* { * {
font-size: .8rem; font-size: .8rem;
@ -160,16 +160,16 @@
.btn-usertools-num () { .btn-usertools-num () {
.num { .num {
position: absolute; position: absolute;
right: -.5em; right: -.4rem;
top: -.4em; top: -.4em;
background-color: @button_color; background-color: @button_background;
border-radius: 2px; border-radius: 2px;
color: @button_background; color: @button_color;
font-size: .6rem; font-size: .6rem;
font-weight: 400; font-weight: 400;
text-align: center; text-align: center;
line-height: 1; line-height: 1;
padding: .2em .3em .1em; padding: .2em .2rem .1em;
transition: @transition color, @transition background-color; transition: @transition color, @transition background-color;
} }
@ -178,8 +178,8 @@
&:active, &:active,
&:focus { &:focus {
.num { .num {
background-color: @button_color; background-color: @button_background;
color: @button_background; color: @button_color;
} }
} }
} }
@ -190,7 +190,7 @@
.hide-text-show-before(); .hide-text-show-before();
color: inherit; color: inherit;
font-size: 1.3em; font-size: 1rem;
margin-top: .2rem; margin-top: .2rem;
} }

View file

@ -0,0 +1,143 @@
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
/* all media */
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
.dokuwiki form.bureaucracy__plugin {
fieldset {
width: 100%;
max-width: 800px;
box-sizing: border-box;
border: 0 none;
text-align: center;
margin-left: 0;
margin-bottom: (@grid * 2);
padding: @grid 0 0;
> *:not(button) {
text-align: left;
}
}
legend {
font-size: 1.12em;
font-weight: bold;
text-align: left;
}
label {
clear: both;
padding-top: (@grid / 2);
&::after {
content: '';
clear: both;
}
sup {
float: right;
font-size: 1em;
}
input,
select {
float: left;
width: 50%;
min-height: 2em;
text-align: left;
padding: .1em .2em;
}
input[type="checkbox"] {
width: 1.5rem;
height: 1.5rem;
background-image: none;
}
span {
float: left;
width: 50%;
text-align: right;
line-height: @line-height-default;
padding-top: .2em;
padding-right: @grid;
&:not([class]) {
font-weight: bold;
margin-top: .5em;
+ input,
+ select {
margin-top: .3em;
}
// checkboxes
+ input + input {
margin-top: .3em;
}
}
&.label {
text-align: right;
padding-top: .5em;
}
&.input {
width: 49%;
text-align: left;
padding-left: 0;
}
} // span
} // label
button[type="submit"] {
background-image: none;
background-color: @button_background;
border: solid 1px @button_background;
color: @button_color;
font-weight: bold;
margin-top: (@grid * 2);
padding: .4em @grid;
transition: @transition background-color, @transition color;
&:hover,
&:focus,
&:active {
background-color: @button_color;
color: @button_background;
}
}
}
#icke__page .content ul.autocompletion {}
ul.autocompletion li {}
/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
/* min-width: 1440px */
@media @screen_min-xlg {
.dokuwiki form.bureaucracy__plugin {
p {
font-size: .9rem;
}
}
}
/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
/* max-width: 1439px */
@media @screen_max-xlg {
.dokuwiki form.bureaucracy__plugin {
p,
label,
button[type="submit"] {
font-size: 1rem;
}
}
}

View file

@ -39,7 +39,7 @@ a.jiralink {
img { img {
float: left; float: left;
display: inline-block; display: inline-block;
margin-top: 2px; margin-top: .3em;
margin-right: 3px; margin-right: 3px;
} }

View file

@ -79,6 +79,7 @@ css/area_main-content.less = all
css/plugins/magic-matcher.less = all css/plugins/magic-matcher.less = all
css/plugins/do_tasks.less = all css/plugins/do_tasks.less = all
css/plugins/struct.less = all css/plugins/struct.less = all
css/plugins/bureaucracy.less = all
; _____________ print styles _____________ ; _____________ print styles _____________
@ -128,8 +129,8 @@ __highlight__ = "#efefef" ; @ini_highlight
__existing__ = "#286DA8" ; @ini_existing __existing__ = "#286DA8" ; @ini_existing
__missing__ = "#CD5360" ; @ini_missing __missing__ = "#CD5360" ; @ini_missing
__button_color__ = "#286DA8" __button_color__ = "#FFF"
__button_background__ = "#FFF" __button_background__ = "#286DA8"
; widths ; widths
__site_width__ = "64em" ; @ini_site_width __site_width__ = "64em" ; @ini_site_width