55 lines
1,012 B
Text
55 lines
1,012 B
Text
/**
|
|
* This file provides styles for the translation plugin
|
|
*/
|
|
@import "../base";
|
|
|
|
|
|
.dokuwiki div.plugin_translation {
|
|
clear: none;
|
|
display: block;
|
|
position: relative;
|
|
float: none;
|
|
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
padding-bottom: 0.5rem;
|
|
height: 4rem;
|
|
|
|
+ * {
|
|
clear: both;
|
|
padding-top: 1em; // as h1
|
|
}
|
|
|
|
ul li {
|
|
// active language
|
|
span.wikilink1 {
|
|
.fnButton();
|
|
.fnActiveButton();
|
|
cursor: default;
|
|
}
|
|
|
|
a.wikilink1{
|
|
.fnButton();
|
|
}
|
|
|
|
span.wikilink2{
|
|
.fnButton();
|
|
.fnButtonSecondary();
|
|
.fnActiveButtonSecondary()
|
|
}
|
|
|
|
a.wikilink2,
|
|
a.wikilink2:visited{
|
|
.fnButton();
|
|
.fnButtonSecondary();
|
|
background-color: var(--color-shade-4);
|
|
}
|
|
}
|
|
}
|
|
|
|
@media @screen_max-md {
|
|
.dokuwiki div.plugin_translation {
|
|
clear: both;
|
|
margin-top: 1rem;
|
|
}
|
|
}
|