1/* =Tag Alerts Plugin
2----------------------------------------------- */
3
4.dokuwiki {
5  .taginfo {
6    background-color: #0dcaf0 !important;
7    border-color: #0aa2c0 !important;
8  }
9  .taginfo:hover {
10    background-color: #0aa2c0 !important;
11  }
12  .tagsuccess {
13    background-color: #198754 !important;
14    border-color: #146c43 !important;
15  }
16  .tagsuccess:hover {
17    background-color: #146c43 !important;
18  }
19  .tagnotify {
20    background-color: #ffc107 !important;
21    border-color: #cc9a06 !important;
22  }
23  .tagnotify:hover {
24    background-color: #cc9a06 !important;
25  }
26  .tagerror {
27    background-color: #dc3545 !important;
28    border-color: #b02a37 !important;
29  }
30  .tagerror:hover {
31    background-color: #b02a37 !important;
32  }
33}
34