1/**
2* style.css for Plugin minimap
3*
4* @license    GPL 2 (http://www.gnu.org/licenses/gpl.html)
5* @author     Nicolas GERARD
6* Copy from Bootstrap
7*
8*/
9
10.nicon_folder_open {
11    background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="250" height="195"><g fill="rgb(204,204,204)" transform="translate(-7.897 -268.6)"><rect rx="0" y="286.829" x="12.897" height="175" width="200" opacity=".517"/><path d="M13.23 458.808l39.687-132.291h198.437l-39.687 132.291z" fill-rule="evenodd"/><rect rx="0" y="273.6" x="39.688" height="13" width="90"/></g></svg>');
12    display: inline-block;
13    width: 1.5em;
14    height: 1em;
15    vertical-align: middle;
16    content: "";
17    background-size: 100% 100%;
18}
19#minimap__plugin {
20    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
21    font-size: 14px;
22    line-height: 1.42857;
23}
24
25#minimap__plugin .panel-default {
26    border-color: #ddd;
27    box-sizing: border-box;
28}
29
30#minimap__plugin .panel {
31    box-sizing: border-box;
32    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
33    -moz-border-bottom-colors: none;
34    -moz-border-left-colors: none;
35    -moz-border-right-colors: none;
36    -moz-border-top-colors: none;
37    background-color: #fff;
38    border-image-repeat: stretch stretch;
39    border-image-source: none;
40    border-radius: 4px;
41    border: 1px solid;
42    margin-bottom: 20px;
43    display: block;
44    color: #ddd;
45}
46
47#minimap__plugin .panel-default > .panel-heading {
48    background: #f5f5f5 linear-gradient(to bottom, #f5f5f5 0px, #e8e8e8 100%) repeat-x;
49    border-color: #ddd;
50    color: #333;
51}
52
53#minimap__plugin .panel-heading {
54    border-bottom: 1px solid;
55    border-top-left-radius: 3px;
56    border-top-right-radius: 3px;
57    padding: 10px 15px;
58    box-sizing: border-box;
59    display: block;
60    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
61    font-size: 14px;
62    line-height: 1.42857;
63}
64
65#minimap__plugin .panel > .list-group, #minimap__plugin .panel > .panel-collapse > .list-group {
66    margin-bottom: 0;
67}
68
69#minimap__plugin .list-group {
70    border-radius: 4px;
71    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.075);
72    padding-left: 0;
73    box-sizing: border-box;
74    color: #333;
75}
76
77#minimap__plugin .panel-heading + .list-group .list-group-item:first-child {
78    border-top-width: 0;
79}
80
81#minimap__plugin .panel > .list-group .list-group-item,
82#minimap__plugin .panel > .panel-collapse > .list-group .list-group-item {
83    border-bottom-width: 1px;
84    border-left-width: 0;
85    border-right-width: 0;
86    border-radius: 0;
87}
88
89#minimap__plugin .list-group-item {
90    -moz-border-bottom-colors: none;
91    -moz-border-left-colors: none;
92    -moz-border-right-colors: none;
93    -moz-border-top-colors: none;
94    background-color: #fff;
95    border-image-repeat: stretch stretch;
96    border-image-source: none;
97    border-image-width: 1 1 1 1;
98    /*border: solid #ddd;*/
99    display: block;
100    padding: 10px 15px;
101    position: relative;
102    box-sizing: border-box;
103    margin: 0 0 -1px;
104}
105
106#minimap__plugin .label-primary {
107    background-color: #337ab7;
108}
109
110#minimap__plugin .label {
111    border-radius: 0.25em;
112    color: #fff;
113    display: inline;
114    font-size: 75%;
115    font-weight: 700;
116    line-height: 1;
117    padding: 0.2em 0.6em 0.3em;
118    text-align: center;
119    vertical-align: baseline;
120    white-space: nowrap;
121    box-sizing: border-box;
122}
123
124/* Active link css */
125#minimap__plugin .list-group-item.active,
126#minimap__plugin .list-group-item.active:focus,
127#minimap__plugin .list-group-item.active:hover {
128    background: #f5f5f5 linear-gradient(to bottom, #f5f5f5 0px, #e8e8e8 100%) repeat-x;
129    border-color: #ddd;
130    color: #333;
131    text-shadow: none;
132}
133
134#minimap__plugin .list-group-item.active {
135    background-color: #e8e8e8 ! important;
136    z-index: 2;
137}
138
139
140#minimap__plugin .panel-body {
141    clear: both;
142    content: " ";
143    box-sizing: border-box;
144    display: table;
145    padding: 15px;
146    unicode-bidi: -moz-isolate;
147    color: #333;
148}
149
150#minimap__plugin .glyphicon {
151    /*already same color than the header*/
152    color: #d8d2d2;
153}
154
155#minimap__plugin .panel-footing {
156    display: flex;
157    padding: 0.10rem;
158    background: #f5f5f5 linear-gradient(to bottom,#f5f5f5 0px,#e8e8e8 100%) repeat-x;
159}
160
161#minimap__plugin .minimap_badge {
162
163    border-radius: 0.25em;
164    background-color: #d8d2d2;
165    font-size: 0.6rem;
166    padding: 0.25rem;
167    color: #1d4a71;
168    margin: 0.1rem;
169}
170