はじまりの大地
This commit is contained in:
@@ -0,0 +1,116 @@
|
||||
/**
|
||||
* This file provides styles for bureaucracy plugin
|
||||
*/
|
||||
|
||||
/* + + + + + global + + + + + */
|
||||
.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: @font-size-small;
|
||||
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%;
|
||||
text-align: left;
|
||||
padding: .1em .2em;
|
||||
}
|
||||
|
||||
input[type="checkbox"] {
|
||||
width: 1.5rem;
|
||||
height: 1.5rem;
|
||||
background-image: none;
|
||||
}
|
||||
|
||||
span {
|
||||
float: left;
|
||||
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"] {
|
||||
margin-top: (@grid * 2);
|
||||
}
|
||||
}
|
||||
|
||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||
/* min-width: 1440px */
|
||||
@media @screen_min-xlg {
|
||||
.dokuwiki form.bureaucracy__plugin {
|
||||
p {
|
||||
font-size: @font-size-default;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||
/* max-width: 1439px */
|
||||
@media @screen_max-xlg {
|
||||
.dokuwiki form.bureaucracy__plugin {
|
||||
p,
|
||||
label,
|
||||
button[type="submit"] {
|
||||
font-size: @font-size-default;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,156 @@
|
||||
/**
|
||||
* This file provides styles for config manager
|
||||
*/
|
||||
|
||||
/* + + + + + config__manager + + + + + */
|
||||
#dokuwiki__content {
|
||||
#config__manager {
|
||||
fieldset {
|
||||
min-width: 100%;
|
||||
overflow-x: auto;
|
||||
box-sizing: border-box;
|
||||
background-color: @background_darker;
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
.selectiondefault {
|
||||
background-color: transparent;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
tr {
|
||||
.input {
|
||||
background-color: transparent;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
td {
|
||||
color: inherit;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
tr.default {
|
||||
.input {
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
td.label {
|
||||
padding: .8em 0 1.2em 1em;
|
||||
|
||||
span.outkey {
|
||||
background-color: @ini_background;
|
||||
color: inherit;
|
||||
font-size: (@font-size-small - .06);
|
||||
font-weight: bold;
|
||||
padding: 0 @very-small-spacing;
|
||||
|
||||
a {
|
||||
font-size: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
label {
|
||||
line-height: @line-height-big;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||
/* max-width: 1024px */
|
||||
@media @screen_max-md {
|
||||
#dokuwiki__content {
|
||||
#config__manager {
|
||||
td {
|
||||
&.label {
|
||||
label,
|
||||
span {
|
||||
font-size: @font-size-small;
|
||||
}
|
||||
}
|
||||
|
||||
&.label + td {
|
||||
font-size: @font-size-small;
|
||||
|
||||
span {
|
||||
font-size: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
select,
|
||||
input.edit {
|
||||
font-size: @font-size-small;
|
||||
}
|
||||
}
|
||||
|
||||
.selectiondefault {
|
||||
label {
|
||||
font-size: @font-size-small;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||
/* max-width: 768px */
|
||||
@media @screen_max-sm {
|
||||
#dokuwiki__content {
|
||||
#config__manager {
|
||||
table {
|
||||
border-top: 0 none;
|
||||
}
|
||||
|
||||
td {
|
||||
padding-top: 0;
|
||||
|
||||
&.label {
|
||||
display: block;
|
||||
width: 100%;
|
||||
border: 0 none;
|
||||
border-top: 1px solid @ini_border;
|
||||
border-bottom: 0 none;
|
||||
padding: .8em .5em .3em;
|
||||
|
||||
|
||||
span.outkey {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.input {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
&.value,
|
||||
&.label + td {
|
||||
display: block;
|
||||
width: 100%;
|
||||
border: 0 none;
|
||||
margin-bottom: 1.2rem;
|
||||
}
|
||||
|
||||
select,
|
||||
input.edit {
|
||||
width: 100%;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
}
|
||||
|
||||
.selectiondefault {
|
||||
float: none;
|
||||
max-width: 100%;
|
||||
width: auto;
|
||||
|
||||
label {
|
||||
width: 90%;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
/**
|
||||
* This file provides styles for "data plugin"
|
||||
* after importing struct data this can be deleted
|
||||
*/
|
||||
|
||||
/* + + + + + global + + + + + */
|
||||
#dokuwiki__content {
|
||||
.dataplugin_entry {
|
||||
dl {
|
||||
margin-left: 0;
|
||||
margin-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.editbutton_plugin_data {
|
||||
position: relative;
|
||||
top: -1em; // as margin after DL
|
||||
float: left;
|
||||
font-size: @font-size-small; // for right position
|
||||
margin-top: 0;
|
||||
|
||||
form {
|
||||
button {
|
||||
min-height: 1rem;
|
||||
height: 1.8em;
|
||||
background-color: @ini_background;
|
||||
border-top: solid 1px @ini_button_background;
|
||||
border-color: @ini_border;
|
||||
border-radius: 0 0 @fix_border-radius @fix_border-radius;
|
||||
color: @ini_existing;
|
||||
font-size: @font-size-small;
|
||||
line-height: 1.8em;
|
||||
margin-top: -1px; // for right position
|
||||
margin-left: .6em;
|
||||
padding: 0 .3em;
|
||||
transition: @transition background-color, @transition border-color, @transition color;
|
||||
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
background-color: @ini_existing;
|
||||
border-color: @ini_existing;
|
||||
color: @ini_background;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,96 @@
|
||||
/**
|
||||
* This file provides styles for do-task plugin
|
||||
*/
|
||||
|
||||
|
||||
/* + + + + + usertool icon in header + + + + + */
|
||||
#dokuwiki__usertools.nav-usertools {
|
||||
ul {
|
||||
li {
|
||||
&.user-task {
|
||||
.btn-usertools-wrapper();
|
||||
.btn-usertools-num();
|
||||
|
||||
position: relative;
|
||||
|
||||
.plugin__do_usertasks {
|
||||
width: 100%;
|
||||
min-width: (@toggle-size + .25);
|
||||
min-height: @toggle-size;
|
||||
border-radius: @ini_default_border_radius;
|
||||
border: 1px solid @wikiicons-border;
|
||||
padding: .14rem 0 0 0;
|
||||
|
||||
&::before {
|
||||
content: ''; // remove when fontello is removed from usertools
|
||||
}
|
||||
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
background-color: @ini_nav_menu_hover_color;
|
||||
border: none;
|
||||
|
||||
svg path {
|
||||
fill: @ini_nav_menu_hover_bg;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
background-color: @ini_nav_menu_hover_bg;
|
||||
}
|
||||
|
||||
svg {
|
||||
width: 1.2rem;
|
||||
height: 1.2rem; // for IE 11
|
||||
margin-bottom: 2px;
|
||||
|
||||
path {
|
||||
fill: @ini_nav_menu_hover_color;
|
||||
}
|
||||
}
|
||||
|
||||
.noopentasks {
|
||||
span {
|
||||
background-color: @ini_background_site;
|
||||
border-color: @noopentasks-border;
|
||||
color: @ini_text_webframe;
|
||||
}
|
||||
|
||||
svg path {
|
||||
fill: @ini_text_webframe;
|
||||
}
|
||||
|
||||
.num {
|
||||
background-color: @noopentasks-border; // fix
|
||||
color: @noopentasks-color; // fix
|
||||
margin-top: 1px;
|
||||
}
|
||||
}
|
||||
|
||||
@media @screen_max-xs {
|
||||
display: none;
|
||||
}
|
||||
} // user-task
|
||||
} // li
|
||||
} // ul
|
||||
}
|
||||
|
||||
.plugin__do_usertasks_list {
|
||||
background-color: transparent;
|
||||
|
||||
@media @screen_max-sm {
|
||||
right: 1.25rem !important;
|
||||
left: 1.25rem !important;
|
||||
}
|
||||
|
||||
table.inline {
|
||||
background-color: #FFF;
|
||||
margin-top: .5rem;
|
||||
|
||||
@media @screen_max-sm {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
/**
|
||||
* This file provides styles for the edit view (?do=edit), preview
|
||||
* and "section edit button" and "editbutton_table edit button".
|
||||
*/
|
||||
|
||||
/* + + + + + edit view + + + + + */
|
||||
#dokuwiki__content {
|
||||
div.section_highlight {
|
||||
clear: right;
|
||||
background: repeating-linear-gradient(
|
||||
-45deg,
|
||||
@highlight-odd-ini_text,
|
||||
@highlight-odd-ini_text 10px,
|
||||
@highlight-even-ini_text 10px,
|
||||
@highlight-even-ini_text 20px,
|
||||
);
|
||||
border-color: @ini_background_page_header;
|
||||
}
|
||||
|
||||
// "section edit button" and "editbutton_table edit button"
|
||||
.secedit button {
|
||||
clear: both;
|
||||
font-size: 100%;
|
||||
margin-top: .5rem;
|
||||
margin-bottom: .5rem;
|
||||
}
|
||||
|
||||
div.editBox {
|
||||
background-color: #FFF;
|
||||
border: solid 2px #FFF;
|
||||
|
||||
.editButtons {
|
||||
display: inline-block;
|
||||
padding-bottom: 1rem;
|
||||
}
|
||||
|
||||
@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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.mode_edit {
|
||||
.content {
|
||||
.msg-area {
|
||||
display: block;
|
||||
margin-bottom: 1.5rem;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
#spr__meta-box {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
/**
|
||||
* This file provides styles for "edittable plugin"
|
||||
*/
|
||||
|
||||
/* + + + + + global + + + + + */
|
||||
#dokuwiki__content.main-content {
|
||||
div.editbutton_table {
|
||||
position: relative; // for IE
|
||||
float: left;
|
||||
margin-top: -1.4em !important; // overwrite inline styles
|
||||
|
||||
form div.no {
|
||||
button,
|
||||
input.button {
|
||||
min-height: 1rem;
|
||||
background-color: @ini_background;
|
||||
border-top: solid 1px @ini_button_background;
|
||||
border-color: @ini_border;
|
||||
border-radius: 0 0 @fix_border-radius @fix_border-radius;
|
||||
color: @ini_existing;
|
||||
font-size: @font-size-small;
|
||||
margin-top: -1px; // for best position of edit-tab beneath table
|
||||
padding-right: .3em;
|
||||
transition: @transition background-color, @transition border-color, @transition color;
|
||||
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
background-color: @ini_existing;
|
||||
border-color: @ini_existing;
|
||||
color: @ini_background;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+ * {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
+ div.editbutton_table {
|
||||
clear: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* This file provides styles for extension manager
|
||||
*/
|
||||
|
||||
/* + + + + + global + + + + + */
|
||||
.dokuwiki #extension__manager {
|
||||
.actions {
|
||||
font-size: 0;
|
||||
|
||||
> button {
|
||||
font-size: .92rem;
|
||||
margin-left: .3rem;
|
||||
padding-left: .3rem;
|
||||
padding-right: .3rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
/**
|
||||
* This file provides styles for "fastwiki" plugin
|
||||
*/
|
||||
|
||||
.mode_edit .content .row > .col-xs-12 #dokuwiki__content::before {
|
||||
display: none;
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
/**
|
||||
* This file provides styles for the toggle "folded"
|
||||
*/
|
||||
|
||||
/* + + + + + global + + + + + */
|
||||
#dokuwiki__content {
|
||||
a.folder {
|
||||
background: transparent url("svg.php?svg=down.svg&f=existing") right center no-repeat;
|
||||
color: @ini_existing;
|
||||
padding-right: 20px;
|
||||
|
||||
&.open {
|
||||
background-image: url("svg.php?svg=up.svg&f=existing");
|
||||
}
|
||||
}
|
||||
|
||||
div.folded {
|
||||
box-shadow: @box-shadow-colored;
|
||||
border: 1px solid fade(@ini_existing, 50%);
|
||||
border-radius: 0;
|
||||
margin-top: -.7rem;
|
||||
margin-bottom: .7rem;
|
||||
padding: .5em;
|
||||
|
||||
p {
|
||||
margin: .5rem 0;
|
||||
}
|
||||
}
|
||||
|
||||
span.folded {
|
||||
border: 1px dotted @ini_border;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* This file provides styles for highlight plugin
|
||||
*/
|
||||
|
||||
/* + + + + + global + + + + + */
|
||||
#plugin__highlightparent {
|
||||
clear: none;
|
||||
display: block;
|
||||
position: relative;
|
||||
|
||||
+ * {
|
||||
clear: both;
|
||||
padding-top: 1em; // as h1
|
||||
}
|
||||
}
|
||||
|
||||
@media @screen_max-md {
|
||||
#plugin__highlightparent {
|
||||
clear: both;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,215 @@
|
||||
/**
|
||||
* This file provides styles for magic matcher plugin
|
||||
*/
|
||||
|
||||
/* + + + + + + + + + + + + + + + + + + + + + + + */
|
||||
/* magic matcher bar with form on top of page */
|
||||
#spr__magic-matcher {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
|
||||
.container {
|
||||
@media @screen_md-lg {
|
||||
margin-left: 1.8rem;
|
||||
}
|
||||
}
|
||||
|
||||
#mm__issueselect_chosen {
|
||||
max-width: 50%;
|
||||
}
|
||||
|
||||
select[name="mmissues"] + div.chosen-container {
|
||||
max-width: 67%;
|
||||
}
|
||||
|
||||
button[name="toggleSuggestions"] {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 0;
|
||||
border: 0;
|
||||
border-bottom: 1px solid @ini_border;
|
||||
border-left: 1px solid @ini_border;
|
||||
color: @ini_nav_menu_color;
|
||||
background: #fff;
|
||||
border-radius: 0;
|
||||
border-bottom-left-radius: 5px;
|
||||
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
border-color: @ini_button_background;
|
||||
color: @ini_button_background;
|
||||
}
|
||||
}
|
||||
|
||||
#magicmatcher__context {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
min-height: @height-context-bar;
|
||||
box-sizing: border-box;
|
||||
box-shadow: @box-shadow;
|
||||
background-color: @ini_background;
|
||||
border-radius: 0 0 @ini_default_border_radius @ini_default_border_radius;
|
||||
font-size: @font-size-default;
|
||||
padding: .8em 1em .5em;
|
||||
margin-bottom: 0;
|
||||
|
||||
.chosen-container-single,
|
||||
.chosen-container-single *,
|
||||
#mm_issue_loading,
|
||||
.mm__status,
|
||||
.toggleSuggestions {
|
||||
font-size: @font-size-default;
|
||||
}
|
||||
|
||||
.chosen-container-single {
|
||||
.chosen-single span {
|
||||
line-height: @line-height-bigger;
|
||||
}
|
||||
}
|
||||
|
||||
@media @screen_max-md {
|
||||
padding-top: @margin-default;
|
||||
|
||||
.chosen-container {
|
||||
display: block;
|
||||
min-width: 100%;
|
||||
max-width: 100%;
|
||||
margin-bottom: .5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* + + + + + in content + + + + + */
|
||||
a.jiralink {
|
||||
font-size: @font-size-default;
|
||||
|
||||
img {
|
||||
float: left;
|
||||
display: inline-block;
|
||||
margin-top: .13em;
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
span.mm__status {
|
||||
display: inline-block;
|
||||
font-size: @font-size-default;
|
||||
margin-left: 5px;
|
||||
padding: 1px 4px;
|
||||
}
|
||||
}
|
||||
|
||||
/* + + + + + tooltip in metabox + + + + + */
|
||||
.dokuwiki {
|
||||
.serverToolTip {
|
||||
box-shadow: @box-shadow;
|
||||
border-radius: @fix_border-radius;
|
||||
font-size: @font-size-default;
|
||||
|
||||
h1.issueTitle {
|
||||
font-size: @font-size-default;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: @font-size-small;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin-top: @small-spacing;
|
||||
}
|
||||
|
||||
p,
|
||||
li {
|
||||
font-size: (@font-size-small - .06);
|
||||
|
||||
* {
|
||||
font-size: inherit;
|
||||
}
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: @small-spacing;
|
||||
margin-bottom: @small-spacing;
|
||||
}
|
||||
|
||||
.components {
|
||||
.component {
|
||||
font-size: (@font-size-small - .06);
|
||||
}
|
||||
}
|
||||
|
||||
.labels {
|
||||
.label {
|
||||
font-size: (@font-size-small - .06);
|
||||
}
|
||||
}
|
||||
|
||||
.descriptionTeaser {
|
||||
font-size: (@font-size-small - .06);
|
||||
margin-top: (@small-spacing * 2);
|
||||
margin-bottom: (@small-spacing * 2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* + + + + + no js version + + + + + */
|
||||
.no-js {
|
||||
#spr__magic-matcher {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.do-admin #dokuwiki__content {
|
||||
#magicmatcher__repoadmin,
|
||||
#magicmatcher_adminimport {
|
||||
.tabs li {
|
||||
a {
|
||||
cursor: pointer;
|
||||
}
|
||||
&.active {
|
||||
a {
|
||||
cursor: default;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.service_wrapper > a{
|
||||
display: inline-block;
|
||||
margin-top: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||
/* max-width: 1023px */
|
||||
@media @screen_max-lg {
|
||||
#spr__magic-matcher {
|
||||
#magicmatcher__context {
|
||||
.chosen-container-single {
|
||||
width: 20% !important;
|
||||
|
||||
+ select + .chosen-container-single {
|
||||
width: 58% !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media @screen_max-md {
|
||||
#spr__magic-matcher {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||
/* print */
|
||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||
@media print {
|
||||
#spr__magic-matcher {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
/**
|
||||
* This file provides styles for mediamanager
|
||||
*/
|
||||
|
||||
/* + + + + + global + + + + + */
|
||||
#mediamanager__page {
|
||||
.namespaces h2 {
|
||||
bottom: 0;
|
||||
line-height: 100%;
|
||||
margin-bottom: -1px;
|
||||
}
|
||||
|
||||
#media__tree ul li img {
|
||||
padding-top: .3em;
|
||||
}
|
||||
|
||||
ul.tabs li a {
|
||||
border-bottom-color: transparent;
|
||||
}
|
||||
|
||||
#page__revisions {
|
||||
> .no > ul > li input[type="checkbox"] {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||
/* media queries */
|
||||
@media @screen_max-md {
|
||||
#mediamanager__page {
|
||||
min-width: 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
* This file provides styles for move plugin
|
||||
*/
|
||||
|
||||
/* + + + + + global + + + + + */
|
||||
#dokuwiki__site > .plugin_move_dialog {
|
||||
font-size: @font-size-default;
|
||||
|
||||
* {
|
||||
font-size: @font-size-default;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
/**
|
||||
* This file provides styles for popupviewer plugin
|
||||
*/
|
||||
|
||||
/* + + + + + global + + + + + */
|
||||
#popupviewer {
|
||||
> .controls > .content {
|
||||
padding: 1.5rem 1rem 1rem;
|
||||
|
||||
td,
|
||||
th {
|
||||
font-size: @font-size-default;
|
||||
line-height: @line-height-default;
|
||||
a{
|
||||
font-size: @font-size-default;
|
||||
line-height: @line-height-default;
|
||||
}
|
||||
}
|
||||
|
||||
.li,
|
||||
li {
|
||||
font-size: @font-size-default;
|
||||
line-height: @line-height-default;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,103 @@
|
||||
/**
|
||||
* Styles for the QC plugin
|
||||
*/
|
||||
|
||||
/* + + + + + slideout output + + + + + */
|
||||
.qc-output {
|
||||
position: relative;
|
||||
min-width: 100%;
|
||||
width: auto;
|
||||
background-color: @ini_background !important;
|
||||
font-size: 90%;
|
||||
box-shadow: @box-shadow-bottom;
|
||||
border-bottom: solid 1px @ini_border_light;
|
||||
margin-bottom: 0;
|
||||
padding-top: 0 !important; // for JS overwrite
|
||||
|
||||
@media @screen_min-xxs {
|
||||
margin-right: -(@margin-default);
|
||||
margin-left: -(@margin-default);
|
||||
padding-left: @margin-default;
|
||||
padding-right: @margin-default;
|
||||
}
|
||||
|
||||
@media @screen_min-md {
|
||||
top: -(@margin-small);
|
||||
}
|
||||
|
||||
@media @screen_max-md {
|
||||
top: 0;
|
||||
margin-top: -(@page_padding-top + 2);
|
||||
margin-right: -(@margin-default * 1.6);
|
||||
margin-left: -(@margin-default);
|
||||
padding-top: @margin-default;
|
||||
}
|
||||
|
||||
@media @screen_max-xxs {
|
||||
margin-left: -(@margin-small);
|
||||
padding-left: @margin-small;
|
||||
padding-right: @margin-default;
|
||||
}
|
||||
|
||||
h1 {
|
||||
@media @screen_min-md {
|
||||
padding-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
div,
|
||||
p {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
dl {
|
||||
dt,
|
||||
dd {
|
||||
padding-bottom: @small-spacing;
|
||||
|
||||
@media @screen_max-xxs {
|
||||
float: none;
|
||||
display: inline-block;
|
||||
width: 49%;
|
||||
max-width: 10em;
|
||||
vertical-align: top;
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.qc_icon {
|
||||
background-color: #fff;
|
||||
border-radius: @fix_border-radius;
|
||||
vertical-align: top;
|
||||
padding: .1rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* + + + + + admin settings + + + + + */
|
||||
.do-admin #dokuwiki__content {
|
||||
#plugin__qc_admin {
|
||||
table .centeralign {
|
||||
.qc_icon svg + span {
|
||||
min-width: 2em;
|
||||
padding-left: .2em;
|
||||
text-align: left;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
/**
|
||||
* This file provides styles for the sitemapnavi plugin
|
||||
*/
|
||||
|
||||
#plugin__sitemapnavi {
|
||||
padding-bottom: @nav-margin;
|
||||
margin-bottom: @nav-margin;
|
||||
border-bottom: 1px solid @ini_nav_menu_color;
|
||||
|
||||
label {
|
||||
padding-left: 0.5em;
|
||||
}
|
||||
|
||||
li {
|
||||
line-height: @line-height-bigger;
|
||||
|
||||
li {
|
||||
margin-left: 0.75em;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.wide-content #plugin__sitemapnavi {
|
||||
display: none;
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* This file provides styles for starred plugin
|
||||
*/
|
||||
nav.nav-starred {
|
||||
ul {
|
||||
list-style: none;
|
||||
|
||||
li {
|
||||
margin-left: 0;
|
||||
|
||||
svg {
|
||||
vertical-align: text-top;
|
||||
fill: @ini_nav_menu_color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,196 @@
|
||||
/**
|
||||
* This file provides styles for struct plugin
|
||||
*/
|
||||
|
||||
/* + + + + + global + + + + + */
|
||||
#dokuwiki__content {
|
||||
.structaggregation {
|
||||
@link-height: 1.5rem;
|
||||
|
||||
position: relative;
|
||||
padding-bottom: @link-height;
|
||||
margin-bottom: @grid;
|
||||
|
||||
td,
|
||||
th {
|
||||
line-height: @line-height-default;
|
||||
|
||||
a {
|
||||
//color: @ini_existing;
|
||||
line-height: @line-height-default;
|
||||
}
|
||||
}
|
||||
|
||||
th {
|
||||
a {
|
||||
color: @ini_link_alt;
|
||||
}
|
||||
}
|
||||
|
||||
// search button in table (f.i. "All products")
|
||||
table th input {
|
||||
&:not(:focus) {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
&:focus {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
}
|
||||
|
||||
.table {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
> a {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
height: @link-height;
|
||||
margin-bottom: 0;
|
||||
|
||||
&.export {
|
||||
bottom: 1px;
|
||||
overflow-x: hidden;
|
||||
background: transparent url("svg.php?svg=file-export.svg&f=existing") left center no-repeat;
|
||||
background-size: auto 20px;
|
||||
border: solid 1px @ini_border;
|
||||
border-radius: 0 0 @fix_border-radius @fix_border-radius;
|
||||
color: @ini_existing;
|
||||
font-size: @font-size-small;
|
||||
line-height: 1;
|
||||
margin-top: -1px;
|
||||
padding-top: .4em;
|
||||
transition: @transition background-color, @transition border-color, @transition color;
|
||||
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active {
|
||||
background-color: @ini_existing;
|
||||
background-image: url("svg.php?svg=file-export.svg&f=background");
|
||||
border-color: @ini_existing;
|
||||
//color: @ini_background;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#plugin__struct_output {
|
||||
margin-right: 0;
|
||||
|
||||
th {
|
||||
background-color: @ini_background_alt;
|
||||
}
|
||||
}
|
||||
|
||||
.struct_entry_form {
|
||||
margin-bottom: 2rem;
|
||||
|
||||
> fieldset {
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
}
|
||||
|
||||
textarea + .struct_entry_form {
|
||||
margin-top: -.5rem;
|
||||
}
|
||||
|
||||
div.editBox {
|
||||
.struct_entry_form {
|
||||
label span.label {
|
||||
color: @color-editBox;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* + + + + + struct inline-editor + + + + + */
|
||||
.dokuwiki {
|
||||
.struct_inlineditor {
|
||||
box-shadow: @box-shadow-bottom;
|
||||
|
||||
p.hint {
|
||||
margin-top: @small-spacing;
|
||||
margin-bottom: @margin-small;
|
||||
}
|
||||
|
||||
button[type="submit"] + button {
|
||||
min-height: @formfield_min-height;
|
||||
vertical-align: middle;
|
||||
margin-left: @small-spacing;
|
||||
}
|
||||
}
|
||||
|
||||
/* struct fields for bureaucracy forms */
|
||||
.bureaucracy__plugin {
|
||||
.field {
|
||||
clear: both;
|
||||
|
||||
label {
|
||||
padding: 0;
|
||||
|
||||
.label {
|
||||
text-align: right;
|
||||
font-weight: bold;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.input {
|
||||
line-height: 2.5em;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* + + + + + form - Struct Schema Editor + + + + + */
|
||||
form {
|
||||
&.doku_form.struct_newschema {
|
||||
fieldset {
|
||||
> label {
|
||||
> span:first-child {
|
||||
display: inline-block;
|
||||
|
||||
@media @screen_min-lg {
|
||||
width: 48.8%;
|
||||
}
|
||||
|
||||
@media @screen_max-lg {
|
||||
width: 48.5%;
|
||||
}
|
||||
}
|
||||
|
||||
> input[type="text"] {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
cursor: pointer;
|
||||
box-shadow: none;
|
||||
background-image: none;
|
||||
background-color: @ini_button_background;
|
||||
border: 1px solid @ini_button_background;
|
||||
border-radius: @fix_border-radius;
|
||||
color: @ini_button_color;
|
||||
vertical-align: top;
|
||||
margin-top: .3em;
|
||||
padding: .3em @grid;
|
||||
transition: @transition background-color, @transition color;
|
||||
|
||||
&:hover,
|
||||
&:active,
|
||||
&:focus {
|
||||
background-color: @ini_button_color;
|
||||
color: @ini_button_background;
|
||||
}
|
||||
|
||||
+ p {
|
||||
padding-top: 1rem;
|
||||
}
|
||||
}
|
||||
} // fieldset
|
||||
}
|
||||
} // form
|
||||
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
* This file provides styles for structstatus plugin
|
||||
*/
|
||||
|
||||
/* + + + + + global + + + + + */
|
||||
#dokuwiki__content {
|
||||
.struct_status {
|
||||
border-color: @ini_border;
|
||||
border-radius: @fix_border-radius;
|
||||
font-size: @font-size-small;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
/**
|
||||
* This file provides styles for the tabinclude
|
||||
*/
|
||||
|
||||
/* + + + + + plugin tabinclude + + + + + */
|
||||
div#dwpl-ti-container {
|
||||
li.dwpl-ti-tab {
|
||||
box-shadow: none;
|
||||
background-color: @ini_background_page_header;
|
||||
border-color: @ini_border;
|
||||
border-radius: @fix_border-radius @fix_border-radius 0 0;
|
||||
color: @ini_background_page_footer;
|
||||
padding: 0;
|
||||
|
||||
&:hover {
|
||||
background-color: @ini_background_page_header;
|
||||
text-decoration: none;
|
||||
|
||||
div {
|
||||
text-decoration: underline;
|
||||
|
||||
&.selected {
|
||||
color: @ini_text;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
div {
|
||||
border-radius: inherit;
|
||||
color: inherit;
|
||||
padding: .1em .35em;
|
||||
|
||||
&.selected {
|
||||
position: relative;
|
||||
background-color: @ini_background;
|
||||
color: @ini_text;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* + + + content box + + + */
|
||||
div.dwpl-ti-content-box {
|
||||
position: relative;
|
||||
overflow: auto;
|
||||
box-shadow: @box-shadow;
|
||||
background-color: @ini_background;
|
||||
border: solid 1px @ini_border;
|
||||
border-radius: 0;
|
||||
margin-top: -1px;
|
||||
}
|
||||
}
|
||||
|
||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||
/* media queries */
|
||||
@media @screen_max-md {
|
||||
div#dwpl-ti-container { }
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
/**
|
||||
* This file provides styles for "tablelayout plugin"
|
||||
*/
|
||||
|
||||
|
||||
/* + + + + + global + + + + + */
|
||||
|
||||
#dokuwiki__content.main-content .secedit.editbutton_table{
|
||||
a.button.print {
|
||||
min-height: 1rem;
|
||||
background-color: @ini_background;
|
||||
border-radius: 0 @ini_default_border_radius;
|
||||
border-top: solid 1px;
|
||||
border-color: @ini_border;
|
||||
font-size: .88rem;
|
||||
margin-top: -1px;
|
||||
padding-right: .3em;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,123 @@
|
||||
/**
|
||||
* This file provides styles for the form in tagcloud
|
||||
*/
|
||||
|
||||
/* + + + + + plugin tagging + + + + + */
|
||||
#spr__meta-box {
|
||||
ul.tagging_cloud {
|
||||
width: 100%;
|
||||
padding-right: 0;
|
||||
|
||||
li {
|
||||
&.t0 a {
|
||||
font-size: .88rem;
|
||||
}
|
||||
|
||||
&.t1 a {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
&.t2 a {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
&.t3 a {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
&.t4 a {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
|
||||
&.t5 a {
|
||||
font-size: 1.4rem;
|
||||
}
|
||||
|
||||
&.t6 a {
|
||||
font-size: 1.5rem;
|
||||
}
|
||||
|
||||
&.t7 a {
|
||||
font-size: 1.6rem;
|
||||
}
|
||||
|
||||
&.t8 a {
|
||||
font-size: 1.7rem;
|
||||
}
|
||||
|
||||
&.t9 a {
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
&.t10 a {
|
||||
font-size: 1.9rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
form#tagging__edit {
|
||||
width: 100%;
|
||||
|
||||
label {
|
||||
display: block;
|
||||
}
|
||||
|
||||
input.edit {
|
||||
width: 100%;
|
||||
margin-bottom: .5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* + + + + + + + + + + + + + + + + + + + + + + + + + + */
|
||||
/* media queries */
|
||||
@media @screen_max-md {
|
||||
#spr__meta-box {
|
||||
form {
|
||||
&#tagging__edit {
|
||||
label {
|
||||
display: inline-block;
|
||||
min-width: 50%;
|
||||
vertical-align: top;
|
||||
margin-bottom: .5rem;
|
||||
}
|
||||
|
||||
input.edit {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media @screen_max-xs {
|
||||
#spr__meta-box {
|
||||
form {
|
||||
div > button[type="submit"] {
|
||||
width: 49%;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
&#tagging__edit {
|
||||
&::after {
|
||||
content: '';
|
||||
clear: both;
|
||||
display: block;
|
||||
}
|
||||
|
||||
label {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
button[type="submit"] {
|
||||
float: right;
|
||||
|
||||
&:first-of-type {
|
||||
float: left;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
.wide-content {
|
||||
.sidebarheader,
|
||||
.sidebarfooter {
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
/**
|
||||
* This file provides styles for the translation plugin
|
||||
*/
|
||||
|
||||
|
||||
.dokuwiki div.plugin_translation {
|
||||
clear: none;
|
||||
display: block;
|
||||
position: relative;
|
||||
float: none;
|
||||
|
||||
+ * {
|
||||
clear: both;
|
||||
padding-top: 1em; // as h1
|
||||
}
|
||||
|
||||
ul li {
|
||||
a.wikilink1:link,
|
||||
a.wikilink1:hover,
|
||||
a.wikilink1:active,
|
||||
a.wikilink1:visited {
|
||||
background-color: @ini_link;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media @screen_max-md {
|
||||
.dokuwiki div.plugin_translation {
|
||||
clear: both;
|
||||
margin-top: 1rem;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user