60 lines
1.5 KiB
Plaintext
Raw Normal View History

@import (reference) "./colortheme-all.less";
2018-03-02 18:33:43 +01:00
.help_vars (
@color: @colortheme_default-color,
@bg-color: @colortheme_default-bg
) {
@help-bg-color-l15: lighten(@bg-color, 15%);
@help-text-color: contrast(@help-bg-color-l15, #fff, #000); //@color;
@help-link-color: contrast(@help-bg-color-l15, lighten(spin(@bg-color, 180), 10%), darken(spin(@bg-color, 180), 10%));
}
.help_main (
@color: @colortheme_default-color,
@bg-color: @colortheme_default-bg
) {
2018-07-14 15:15:23 +02:00
--LessLoader_require: LessLoader_currentFile();
.help_vars(@color, @bg-color);
--help-bg-color-l15: @help-bg-color-l15;
--help-text-color: @help-text-color;
--help-link-color: @help-link-color;
};
2018-07-14 15:15:23 +02:00
& {
.help_vars();
2018-03-02 18:33:43 +01:00
.cp-help-container {
2018-03-02 18:33:43 +01:00
position: relative;
background-color: @help-bg-color-l15;
2018-07-14 15:15:23 +02:00
background-color: var(--help-bg-color-l15);
2018-03-02 18:33:43 +01:00
&.cp-help-hidden {
display: none;
}
.cp-help-close {
position: absolute;
top: 5px;
right: 5px;
}
.cp-help-text {
color: @help-text-color;
color: var(--help-text-color);
2018-03-02 18:33:43 +01:00
margin: 0;
padding: 15px;
2018-03-08 16:15:26 +01:00
a {
color: @help-link-color;
color: var(--help-link-color);
2018-03-08 16:15:26 +01:00
}
2018-03-02 18:33:43 +01:00
h1 {
font-size: 20px;
}
h2 {
font-size: 18px;
}
h3 {
font-size: 16px;
}
ul, ol, p { margin: 0; }
}
}
2018-07-18 14:31:01 +02:00
}