diff --git a/all.less b/all.less
index a913626..c8f6ee5 100644
--- a/all.less
+++ b/all.less
@@ -23,7 +23,7 @@ Screen and Print Styles for the Wrap Plugin
/* emulate a bigger headline with a bottom border */
.plugin_wrap.wrap__emuhead em strong em.u {
font-size: 115%;
- border-bottom: 1px solid __border__;
+ border-bottom: 1px solid @ini_border;
font-style: normal;
text-decoration: none;
display: block;
@@ -261,7 +261,7 @@ span.wrap_round {
********************************************************************/
.wrap_lo {
- color: __text_neu__;
+ color: @ini_text_neu;
font-size: 85%;
}
.wrap_em {
@@ -342,7 +342,7 @@ div.wrap_spoiler {
.wrap_button a:link,
.wrap_button a:visited {
background-image: none;
- border: 1px solid __border__;
+ border: 1px solid @ini_border;
border-radius: .3em;
padding: .5em .7em;
text-decoration: none;
diff --git a/example.txt b/example.txt
index 168caa6..c0e20c8 100644
--- a/example.txt
+++ b/example.txt
@@ -191,43 +191,43 @@ Center aligned text ...
=== Info ===
-
+%%%%
=== Tip ===
-
+%%%%
=== Important ===
-
+%%%%
=== Alert ===
-
+%%%%
=== Help ===
-
+%%%%
=== Download ===
-
+%%%%
=== Todo ===
-
+%%%%
@@ -236,29 +236,31 @@ Center aligned text ...
**Safety Notes:**
+Best only use simple markup in safety notes.
+
=== Danger ===
-
+%%%%
=== Warning ===
-
+%%%%
=== Caution ===
-
+%%%%
=== Notice ===
-
+%%%%
=== Safety ===
-
+%%%%
diff --git a/pdf.less b/pdf.less
index c3aca20..45bb3ca 100644
--- a/pdf.less
+++ b/pdf.less
@@ -3,10 +3,10 @@ Styles used in PDFs by the DW2PDF plugin (in addition to all.css, and
the DW2PDF plugin also includes style.css via the 'usestyles' option)
********************************************************************/
-.dokuwiki {
-
@import 'print_or_pdf.less';
+.dokuwiki {
+
/*____________ only print ____________*/
/* due to including style.css, these need to be overwritten again */
diff --git a/print.less b/print.less
index 5244d85..7fe0d8c 100644
--- a/print.less
+++ b/print.less
@@ -2,10 +2,10 @@
Print Styles for the Wrap Plugin (additional to all.css)
********************************************************************/
-.dokuwiki {
-
@import 'print_or_pdf.less';
+.dokuwiki {
+
/* boxes and notes with icons
********************************************************************/
diff --git a/print_or_pdf.less b/print_or_pdf.less
index 7a6e646..bd55b20 100644
--- a/print_or_pdf.less
+++ b/print_or_pdf.less
@@ -2,6 +2,8 @@
Styles shared between print.css and pdf.css
********************************************************************/
+.dokuwiki {
+
/* miscellaneous
********************************************************************/
@@ -23,3 +25,5 @@ Styles shared between print.css and pdf.css
.wrap_noprint {
display: none;
}
+
+} /* /.dokuwiki */
diff --git a/style.less b/style.less
index 7ea4a75..4f701a7 100644
--- a/style.less
+++ b/style.less
@@ -8,8 +8,8 @@ Screen Styles for the Wrap Plugin (additional to all.css)
********************************************************************/
.wrap_box {
- background: __background_alt__;
- color: __text__;
+ background: @ini_background_alt;
+ color: @ini_text;
}
div.wrap_box,
div.wrap_danger,
@@ -179,8 +179,8 @@ span.wrap_download { background-image: url(images/note/16/download.png); }
/*____________ spoiler ____________*/
.wrap_spoiler {
- background-color: __background__ !important;
- color: __background__ !important;
+ background-color: @ini_background !important;
+ color: @ini_background !important;
border: 1px dotted red;
}
@@ -201,7 +201,7 @@ span.wrap_download { background-image: url(images/note/16/download.png); }
.wrap_button a:link,
.wrap_button a:visited {
- background-color: __background_alt__;
+ background-color: @ini_background_alt;
}
.wrap_button a:link:hover,
.wrap_button a:visited:hover,
@@ -209,7 +209,7 @@ span.wrap_download { background-image: url(images/note/16/download.png); }
.wrap_button a:visited:focus,
.wrap_button a:link:active,
.wrap_button a:visited:active {
- background-color: __background_neu__;
+ background-color: @ini_background_neu;
}
} /* /.dokuwiki */