2016-11-29 16:39:15 +00:00
|
|
|
@import 'mediawiki.mixins';
|
|
|
|
@import '../variables';
|
2014-08-07 11:38:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The following code is highly modified from monobook. It would be nice if the
|
|
|
|
* preftoc id was more human readable like preferences-toc for instance,
|
|
|
|
* howerver this would require backporting the other skins.
|
|
|
|
*/
|
2015-11-01 00:38:33 +00:00
|
|
|
.client-js #preftoc {
|
2014-08-07 11:38:34 +00:00
|
|
|
/* Tabs */
|
|
|
|
width: 100%;
|
|
|
|
float: left;
|
|
|
|
clear: both;
|
2015-11-01 00:38:33 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2014-08-07 11:38:34 +00:00
|
|
|
.background-image('../images/preferences/break.png');
|
|
|
|
background-position: bottom left;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
|
|
|
li {
|
|
|
|
/* Tab */
|
|
|
|
float: left;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
padding-right: 1px;
|
|
|
|
height: 2.25em;
|
|
|
|
white-space: nowrap;
|
|
|
|
list-style-type: none;
|
|
|
|
list-style-image: none;
|
|
|
|
.background-image('../images/preferences/break.png');
|
|
|
|
background-position: bottom right;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-left: 1px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.selected {
|
|
|
|
a {
|
|
|
|
.background-image('../images/preferences/fade.png');
|
|
|
|
background-position: bottom;
|
|
|
|
background-repeat: repeat-x;
|
2017-08-18 22:42:33 +00:00
|
|
|
color: @colorText;
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
a,
|
|
|
|
a:active {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
color: @menu-link-color;
|
|
|
|
padding: 0.5em;
|
|
|
|
text-decoration: none;
|
|
|
|
background-image: none;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover,
|
|
|
|
a:focus {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-01 00:38:33 +00:00
|
|
|
.client-js #preferences {
|
2014-08-07 11:38:34 +00:00
|
|
|
float: left;
|
|
|
|
width: 100%;
|
|
|
|
margin: 0;
|
|
|
|
margin-top: -2px;
|
|
|
|
clear: both;
|
2017-08-18 22:42:33 +00:00
|
|
|
border: 1px solid @colorGray12;
|
|
|
|
background-color: @colorGray15;
|
2014-08-07 11:38:34 +00:00
|
|
|
|
|
|
|
fieldset {
|
2016-11-29 16:39:15 +00:00
|
|
|
border: 0;
|
2017-08-18 22:42:33 +00:00
|
|
|
border-top: 1px solid @colorGray12;
|
2015-11-01 00:38:33 +00:00
|
|
|
}
|
2014-08-07 11:38:34 +00:00
|
|
|
|
2016-11-29 16:39:15 +00:00
|
|
|
> fieldset {
|
|
|
|
border: 0;
|
2015-11-01 00:38:33 +00:00
|
|
|
padding: 0;
|
|
|
|
margin: 1em;
|
2014-08-07 11:38:34 +00:00
|
|
|
|
2016-11-29 16:39:15 +00:00
|
|
|
> legend {
|
2015-11-01 00:38:33 +00:00
|
|
|
display: none;
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
legend {
|
2017-08-18 22:42:33 +00:00
|
|
|
color: @colorGray5;
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
td {
|
|
|
|
padding-left: 0.5em;
|
|
|
|
padding-right: 0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.mw-prefs-buttons {
|
|
|
|
padding: 1em;
|
|
|
|
|
|
|
|
input {
|
|
|
|
margin-right: 0.25em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.htmlform-tip {
|
|
|
|
font-size: x-small;
|
2016-11-29 16:39:15 +00:00
|
|
|
padding: 0.2em 2em;
|
2017-08-18 22:42:33 +00:00
|
|
|
color: @colorGray5;
|
2014-08-07 11:38:34 +00:00
|
|
|
}
|