1/*!
2 * DokuWiki Bootstrap Wrapper Plugin
3 *
4 * Home     http://dokuwiki.org/plugin:bootswrapper
5 * Author   Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com>
6 * License  GPL 2 (http://www.gnu.org/licenses/gpl.html)
7 */
8
9.bs-wrap .nav-tabs {
10  margin-bottom: 15px;
11}
12
13.bs-wrap-modal[data-remote] .modal-content {
14  padding: 0 15px;
15}
16
17.bs-wrap-accordion .panel-heading a {
18  color: inherit;
19  text-decoration: none;
20}
21
22
23/* Bootstrap 3 Template */
24aside ul.dropdown-menu {
25  font-size: 1em;
26  padding-left: 0 !important;
27}
28
29
30/*
31 * Callouts (from Twitter Bootstrap Documentation)
32 *
33 * Not quite alerts, but custom and helpful notes for folks reading the docs.
34 * Requires a base and modifier class.
35 */
36
37/* Common styles for all types */
38.bs-callout {
39  padding: 20px;
40  margin: 20px 0;
41  border: 1px solid #eee;
42  border-left-width: 5px;
43  border-radius: 3px;
44}
45.bs-callout h4 {
46  margin-top: 0;
47  margin-bottom: 5px;
48}
49.bs-callout p:last-child {
50  margin-bottom: 0;
51}
52.bs-callout code {
53  border-radius: 3px;
54}
55.bs-callout+.bs-callout {
56  margin-top: -5px;
57}
58.bs-callout-default {
59  border-left-color: #777;
60}
61.bs-callout-default h4 {
62  color: #777;
63}
64.bs-callout-primary {
65  border-left-color: #428bca;
66}
67.bs-callout-primary h4 {
68  color: #428bca;
69}
70.bs-callout-success {
71  border-left-color: #5cb85c;
72}
73.bs-callout-success h4 {
74  color: #5cb85c;
75}
76.bs-callout-danger {
77  border-left-color: #d9534f;
78}
79.bs-callout-danger h4 {
80  color: #d9534f;
81}
82.bs-callout-warning {
83  border-left-color: #f0ad4e;
84}
85.bs-callout-warning h4 {
86  color: #f0ad4e;
87}
88.bs-callout-info {
89  border-left-color: #5bc0de;
90}
91.bs-callout-info h4 {
92  color: #5bc0de;
93}
94
95.bs-callout {
96  overflow: hidden;
97}
98
99
100i.bs-callout-icon { font-size: 2em; }
101
102
103.bs-callout-info    .bs-callout-icon { color: #5bc0de; }
104.bs-callout-warning .bs-callout-icon { color: #f0ad4e; }
105.bs-callout-danger  .bs-callout-icon { color: #d9534f; }
106.bs-callout-success .bs-callout-icon { color: #5cb85c; }
107.bs-callout-primary .bs-callout-icon { color: #428bca; }
108.bs-callout-default .bs-callout-icon { color: #777; }
109
110
111@media print {
112  .bs-page-break {
113    page-break-after: always;
114  }
115}
116