Skip to content

Commit

Permalink
Textcolor in nicebox is now black
Browse files Browse the repository at this point in the history
  • Loading branch information
Gero Gothe committed Nov 12, 2021
1 parent 044a8df commit e83100d
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion plugin.info.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
base wrapadd
author Gero Gothe
email practical@medizin-lernen.de
date 2020-05-19
date 2021-11-12
name WRAP Plus
desc Additional styles for the WRAP-Plugin
url https://github.com/practical-solutions/dokuwiki-plugin-wrapadd
14 changes: 7 additions & 7 deletions print.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,44 +35,44 @@ Thus the css definitions can be changed as soon as the integration of the new mp
border-bottom-right-radius: 7px;
background: #f5f9f7;
border-left: 10px solid #B2EFFF;
color: #0587af;

}

.wrap_orange {
background: #fcf8f2;
color: #c97500;

border-left: 10px solid #fbaf43;
}

.wrap_red {
border-left: 10px solid #d9534f;
background: #fdf7f7;
color: #b52b27;

}

.wrap_green {
border-left: 10px solid #8dde4e;
background: #f4ffee;
color: #57aa16;

}

.wrap_yellow {
border-left: 10px solid #fff15a;
background: #fffded;
color: #b6a91a;

}

.wrap_blue {
border-left: 10px solid #4f8cdf;
background: #f5f7fa;
color: #195ab3;


}

.wrap_purple {
border-left: 10px solid #c489ef;
background: #f1eef4;
color: #7625b1;

}

.wrap_marine {
Expand Down
14 changes: 7 additions & 7 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,38 +78,38 @@ div.dokuwiki {
/* From hugo template seen on https://thomas-leister.de/en/mailserver-debian-stretch/ */
border-left: 10px solid #d9534f;
background: #fdf7f7;
color: #b52b27;
color: black;
}
&.wrap_orange {
/* From hugo template seen on https://thomas-leister.de/en/mailserver-debian-stretch/ */
border-left: 10px solid #fbaf43;
background: #fcf8f2;
color: #c97500;
color: black;
}
&.wrap_green {
border-left: 10px solid #8dde4e;
background: #f4ffee;
color: #57aa16;
color: black;
}
&.wrap_yellow {
border-left: 10px solid #fff15a;
background: #fffded;
color: #b6a91a;
color: black;
}
&.wrap_blue {
border-left: 10px solid #4f8cdf;
background: #f5f7fa;
color: #195ab3;
color: black;
}
&.wrap_purple {
border-left: 10px solid #c489ef;
background: #f1eef4;
color: #7625b1;
color: black;
}
&.wrap_marine {
border-left: 10px solid #4bd29c;
background: #f5f9f7;
color: #1aaf73;
color: black;
}
}
}
Expand Down

0 comments on commit e83100d

Please sign in to comment.