From 9e56b8cadbad2d995a6b6e5f686e456e145d7aa7 Mon Sep 17 00:00:00 2001 From: ToLive Date: Thu, 27 Feb 2020 15:32:26 +0200 Subject: [PATCH] Compatibility with AlertBox plugin --- css/plugins/alertbox.less | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 css/plugins/alertbox.less diff --git a/css/plugins/alertbox.less b/css/plugins/alertbox.less new file mode 100644 index 0000000..f918abf --- /dev/null +++ b/css/plugins/alertbox.less @@ -0,0 +1,38 @@ +/** + * This file provides styles for alertbox plugin + */ + +/* + + + + + global + + + + + */ +#dokuwiki__content { + .alert { + padding: 15px; + margin-bottom: 20px; + border: 1px solid transparent; + border-radius: 4px; + } + + .alert-success { + color: #3c763d; + background-color: #dff0d8; + border-color: #d6e9c6; + } + + .alert-info { + color: #31708f; + background-color: #d9edf7; + border-color: #bce8f1; + } + + .alert-warning { + color: #8a6d3b; + background-color: #fcf8e3; + border-color: #faebcc; + } + + .alert-danger { + color: #a94442; + background-color: #f2dede; + border-color: #ebccd1; + } + +} \ No newline at end of file