143 lines
3.5 KiB
Text
143 lines
3.5 KiB
Text
/**
|
|
* This file provide specific styles for some plugin (childpages, translation,
|
|
* wrap, etc.).
|
|
**/
|
|
|
|
/*____________ Translation ____________*/
|
|
/* some stuff on mobile.less too */
|
|
|
|
.plugin_translation {
|
|
/*display: inline;*/
|
|
}
|
|
.dokuwiki div.plugin_translation {
|
|
margin: 0 ;
|
|
float: none;
|
|
text-align: inherit;
|
|
}
|
|
.dokuwiki div.plugin_translation ul li a:link,
|
|
.dokuwiki div.plugin_translation ul li a:active,
|
|
.dokuwiki div.plugin_translation ul li a:visited,
|
|
.dokuwiki div.plugin_translation ul li span {
|
|
background-color: inherit;
|
|
color: @ini_neutrallight;
|
|
}
|
|
.dokuwiki div.plugin_translation ul li:hover,
|
|
.dokuwiki div.plugin_translation ul li:hover a,
|
|
.dokuwiki div.plugin_translation ul li:hover span,
|
|
.dokuwiki div.plugin_translation ul li:hover a.wikilink2:link,
|
|
.dokuwiki div.plugin_translation ul li:hover a.wikilink2:hover {
|
|
background-color: purple;
|
|
color: @ini_neutrallight;
|
|
}
|
|
|
|
.dokuwiki div.plugin_translation ul li a.wikilink1:link,
|
|
.dokuwiki div.plugin_translation ul li a.wikilink1:hover,
|
|
.dokuwiki div.plugin_translation ul li a.wikilink1:active,
|
|
.dokuwiki div.plugin_translation ul li a.wikilink1:visited {
|
|
text-decoration: underline dotted;
|
|
background-color: inherit;
|
|
}
|
|
|
|
.dokuwiki div.plugin_translation ul li a.wikilink2:link,
|
|
.dokuwiki div.plugin_translation ul li a.wikilink2:hover,
|
|
.dokuwiki div.plugin_translation ul li a.wikilink2:active,
|
|
.dokuwiki div.plugin_translation ul li a.wikilink2:visited
|
|
.dokuwiki div.plugin_translation ul li span {
|
|
text-decoration: none;
|
|
border-bottom: 1px dashed !important;
|
|
color: @ini_link2;
|
|
background-color: inherit;
|
|
}
|
|
|
|
.dokuwiki div.plugin_translation select.wikilink1,
|
|
.dokuwiki div.plugin_translation option.wikilink1 {
|
|
color: @ini_link;
|
|
}
|
|
.dokuwiki div.plugin_translation select,
|
|
.dokuwiki div.plugin_translation input {
|
|
background-color: @ini_neutral4;
|
|
color: @ini_neutrallight;
|
|
}
|
|
.dokuwiki div.plugin_translation.is-dropdown ul {
|
|
position: inherit;
|
|
background: @ini_neutral1;
|
|
}
|
|
|
|
.kh_translate {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 0.3em;
|
|
|
|
img {
|
|
max-height:1em;
|
|
width: 1.2em;
|
|
}
|
|
li {
|
|
text-transform: uppercase;
|
|
}
|
|
}
|
|
.plugin_translation .title {
|
|
display:none;
|
|
}
|
|
|
|
|
|
.kh_translate .is-dropdown ul .span::after {
|
|
content: '▼';
|
|
margin-right: 5px;
|
|
font-size: 14px;
|
|
}
|
|
.kh_translate .is-dropdown ul .span {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
.dokuwiki div.plugin_translation.is-dropdown,
|
|
.dokuwiki div.plugin_translation {
|
|
padding-bottom: 0em;
|
|
}
|
|
|
|
.dokuwiki div.plugin_translation.is-dropdown ul li {
|
|
width: 100%;
|
|
}
|
|
|
|
/*____________ Config manager ____________*/
|
|
#config__manager fieldset {
|
|
background-color: @ini_background;
|
|
}
|
|
|
|
/*____________ Pagelist ____________*/
|
|
|
|
div.dokuwiki th.page,
|
|
div.dokuwiki th.date,
|
|
div.dokuwiki th.user,
|
|
div.dokuwiki th.desc,
|
|
div.dokuwiki th.comments,
|
|
div.dokuwiki th.linkbacks,
|
|
div.dokuwiki th.tags,
|
|
div.dokuwiki th.diff,
|
|
div.dokuwiki td.date,
|
|
div.dokuwiki td.user,
|
|
div.dokuwiki td.desc,
|
|
div.dokuwiki td.comments,
|
|
div.dokuwiki td.linkbacks,
|
|
div.dokuwiki td.tags,
|
|
div.dokuwiki td.diff {
|
|
font-size: 95% !important ;
|
|
}
|
|
|
|
/*____________ Wrap ____________*/
|
|
/* some stuff on mobile.less too */
|
|
/* basic box */
|
|
.dokuwiki .wrap_box {
|
|
background: #d1c7ff !important;
|
|
}
|
|
/* Never round box... But Outset ! */
|
|
.dokuwiki div.wrap_round {
|
|
border-radius: inherit !important;
|
|
border: outset #d1c7ff;
|
|
}
|
|
|
|
/*____________ Blog ____________*/
|
|
/* Don't underline when it's a title... */
|
|
.plugin_include_content h1 a, .plugin_include_content h2 a, .plugin_include_content h3 a, .plugin_include_content h4 a {
|
|
text-decoration: inherit;
|
|
}
|