This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include
, or for example
via PHP's auto-loading mechanism.
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
2 | |||
3 | return [ |
||
4 | |||
5 | // Old crap |
||
6 | 'secondary' => '#ff0', |
||
7 | |||
8 | // Colors |
||
9 | 'purple' => '#61259e', |
||
10 | 'green' => '#24ce7b', |
||
11 | 'blue' => '#38b5e6', |
||
12 | 'orange' => '#f48714', |
||
13 | 'red' => '#f6303e', |
||
14 | |||
15 | // Grayscale |
||
16 | 'gray-dark' => '#353535', |
||
17 | 'gray' => '#3e3e3e', |
||
18 | 'gray-light' => '#818a91', |
||
19 | 'gray-lighter' => '#eceeef', |
||
20 | 'gray-lightest' => '#f7f7f9', |
||
21 | 'white' => '#ffffff', |
||
22 | |||
23 | // Branding |
||
24 | 'brand-primary' => '#61259e', |
||
25 | 'brand-success' => '#24ce7b', |
||
26 | 'brand-info' => '#38b5e6', |
||
27 | 'brand-warning' => '#f69630', |
||
28 | 'brand-danger' => '#f6303e', |
||
29 | |||
30 | // Body |
||
31 | 'body-bg' => '#f1f2f3', |
||
32 | 'body-color' => '#353535', |
||
33 | |||
34 | // Links |
||
35 | 'link-color' => '#38b5e6', |
||
36 | 'link-decoration' => 'none', |
||
37 | |||
38 | // Typography |
||
39 | 'font-family-sans-serif' => '"Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif', |
||
40 | 'font-family-serif' => 'Georgia, "Times New Roman", Times, serif', |
||
41 | 'font-family-monospace' => 'Menlo, Monaco, Consolas, "Courier New", monospace', |
||
42 | 'font-family-base' => '"Proxima Nova", "Helvetica Neue", Helvetica, Arial, sans-serif', |
||
43 | |||
44 | // Fonts |
||
45 | 'font-size-root' => '16px', |
||
46 | 'font-size-base' => '1rem', |
||
47 | 'font-size-lg' => '1.25rem', |
||
48 | 'font-size-sm' => '.875rem', |
||
49 | 'font-size-xs' => '.75rem', |
||
50 | 'font-size-h1' => '2.25rem', |
||
51 | 'font-size-h2' => '1.75rem', |
||
52 | 'font-size-h3' => '1.5rem', |
||
53 | 'font-size-h4' => '1.25rem', |
||
54 | 'font-size-h5' => '1.1rem', |
||
55 | 'font-size-h6' => '1rem', |
||
56 | |||
57 | 'line-height' => 1.5, |
||
58 | |||
59 | 'lead-font-size' => '1.25rem', |
||
60 | 'lead-font-weight' => 300, |
||
61 | 'text-muted' => '#818a91', |
||
62 | 'text-faded' => '#bfc7c9', |
||
63 | 'abbr-border-color' => '#818a91', |
||
64 | 'blockquote-small-color' => '#818a91', |
||
65 | |||
66 | // Components |
||
67 | 'line-height-lg' => (4 / 3), |
||
68 | 'line-height-sm' => 1.5, |
||
69 | |||
70 | 'border-radius' => '0', |
||
71 | 'border-radius-lg' => '0', |
||
72 | 'border-radius-sm' => '0', |
||
73 | |||
74 | // Tables |
||
75 | 'table-cell-padding' => '.75rem', |
||
76 | 'table-sm-cell-padding' => '.3rem', |
||
77 | |||
78 | |||
79 | 'table-bg' => 'transparent', |
||
80 | 'table-bg-accent' => '#f9f9f9', |
||
81 | 'table-bg-hover' => '#f5f5f5', |
||
82 | 'table-bg-active' => '#f5f5f5', |
||
83 | |||
84 | //'table-border-color' => '#818a91', |
||
0 ignored issues
–
show
|
|||
85 | |||
86 | /*// Buttons |
||
87 | // |
||
88 | // For each of Bootstrap's buttons, define text, background and border color. |
||
89 | |||
90 | $btn-padding-x: 1rem !default; |
||
91 | $btn-padding-y: .375rem !default; |
||
92 | $btn-font-weight: normal !default; |
||
93 | |||
94 | $btn-primary-color: #ffffff !default; |
||
95 | $btn-primary-bg: $brand-primary !default; |
||
96 | $btn-primary-border: $btn-primary-bg !default; |
||
97 | |||
98 | $btn-secondary-color: $gray-dark !default; |
||
99 | $btn-secondary-bg: #ffffff !default; |
||
100 | $btn-secondary-border: #6f6f6f !default; |
||
101 | |||
102 | $btn-info-color: #ffffff !default; |
||
103 | $btn-info-bg: $brand-info !default; |
||
104 | $btn-info-border: $btn-info-bg !default; |
||
105 | |||
106 | $btn-success-color: #ffffff !default; |
||
107 | $btn-success-bg: $brand-success !default; |
||
108 | $btn-success-border: $btn-success-bg !default; |
||
109 | |||
110 | $btn-warning-color: #ffffff !default; |
||
111 | $btn-warning-bg: $brand-warning !default; |
||
112 | $btn-warning-border: $btn-warning-bg !default; |
||
113 | |||
114 | $btn-danger-color: #ffffff !default; |
||
115 | $btn-danger-bg: $brand-danger !default; |
||
116 | $btn-danger-border: $btn-danger-bg !default; |
||
117 | |||
118 | $btn-link-disabled-color: $gray-light !default; |
||
119 | |||
120 | $btn-padding-x-sm: .75rem !default; |
||
121 | $btn-padding-y-sm: .25rem !default; |
||
122 | |||
123 | $btn-padding-x-lg: 1.25rem !default; |
||
124 | $btn-padding-y-lg: .75rem !default; |
||
125 | |||
126 | // Allows for customizing button radius independently from global border radius |
||
127 | $btn-border-radius: $border-radius !default; |
||
128 | $btn-border-radius-lg: $border-radius-lg !default; |
||
129 | $btn-border-radius-sm: $border-radius-sm !default; |
||
130 | */ |
||
131 | |||
132 | // Forms |
||
133 | 'input-padding-x' => '.75rem', |
||
134 | 'input-padding-y' => '.375rem', |
||
135 | |||
136 | 'input-bg' => '#ffffff', |
||
137 | 'input-bg-disabled' => '#eceeef', |
||
138 | |||
139 | 'input-color' => '#3e3e3e', |
||
140 | 'input-border-color' => '#cccccc', |
||
141 | 'input-btn-border-width' => '1px', |
||
142 | 'input-box-shadow' => 'inset 0 1px 1px rgba(0, 0, 0, .075)', |
||
143 | |||
144 | 'input-border-radius' => '.25rem', |
||
145 | 'input-border-radius-lg' => '.3rem', |
||
146 | 'input-border-radius-sm' => '.2rem', |
||
147 | |||
148 | 'input-border-focus' => '#38b5e6', |
||
149 | 'input-box-shadow-focus' => 'rgba(102, 175, 233, .6)', |
||
150 | 'input-color-placeholder' => '#999999', |
||
151 | |||
152 | 'input-padding-x-sm' => '.75rem', |
||
153 | 'input-padding-y-sm' => '.275rem', |
||
154 | |||
155 | 'input-padding-x-lg' => '1.25rem', |
||
156 | 'input-padding-y-lg' => '.75rem', |
||
157 | |||
158 | /* |
||
159 | |||
160 | $input-height: (($font-size-base * $line-height) + ($input-padding-y * 2)) !default; |
||
161 | $input-height-lg: (($font-size-lg * $line-height-lg) + ($input-padding-y-lg * 2)) !default; |
||
162 | $input-height-sm: (($font-size-sm * $line-height-sm) + ($input-padding-y-sm * 2)) !default; |
||
163 | |||
164 | $form-group-margin-bottom: $spacer-y !default; |
||
165 | |||
166 | $input-group-addon-bg: $gray-lighter !default; |
||
167 | $input-group-addon-border-color: $input-border-color !default; |
||
168 | |||
169 | $cursor-disabled: not-allowed !default; |
||
170 | |||
171 | // Form validation icons |
||
172 | $form-icon-success: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg==" !default; |
||
173 | $form-icon-warning: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+" !default; |
||
174 | $form-icon-danger: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4=" !default; |
||
175 | */ |
||
176 | // Dropdowns |
||
177 | 'dropdown-bg' => '#ffffff', |
||
178 | 'dropdown-border-color' => 'rgba(0, 0, 0, .15)', |
||
179 | 'dropdown-border-width' => '1px', |
||
180 | 'dropdown-divider-bg' => '#e5e5e5', |
||
181 | |||
182 | 'dropdown-link-color' => '#353535', |
||
183 | 'dropdown-link-hover-color' => '#353535', |
||
184 | 'dropdown-link-hover-bg' => '#f5f5f5', |
||
185 | |||
186 | 'dropdown-link-active-color' => '#ffffff', |
||
187 | 'dropdown-link-active-bg' => '#61259e', |
||
188 | |||
189 | 'dropdown-link-disabled-color' => '#818a91', |
||
190 | |||
191 | 'dropdown-header-color' => '#818a91', |
||
192 | /** |
||
193 | * // Z-index master list |
||
194 | * // |
||
195 | * // Warning: Avoid customizing these values. They're used for a bird's eye view |
||
196 | * // of components dependent on the z-axis and are designed to all work together. |
||
197 | * |
||
198 | * $zindex-navbar: 1000 !default; |
||
199 | * $zindex-dropdown: 1000 !default; |
||
200 | * $zindex-popover: 1060 !default; |
||
201 | * $zindex-tooltip: 1070 !default; |
||
202 | * $zindex-navbar-fixed: 1030 !default; |
||
203 | * $zindex-navbar-sticky: 1030 !default; |
||
204 | * $zindex-modal-bg: 1040 !default; |
||
205 | * $zindex-modal: 1050 !default; |
||
206 | * |
||
207 | * // Navbar |
||
208 | * |
||
209 | * $navbar-border-radius: $border-radius !default; |
||
210 | * $navbar-padding-horizontal: $spacer !default; |
||
211 | * $navbar-padding-vertical: ($spacer / 2) !default; |
||
212 | * |
||
213 | * $navbar-dark-color: rgba(255, 255, 255, .5) !default; |
||
214 | * $navbar-dark-hover-color: rgba(255, 255, 255, .75) !default; |
||
215 | * $navbar-dark-active-color: rgba(255, 255, 255, 1) !default; |
||
216 | * $navbar-dark-disabled-color: rgba(255, 255, 255, .25) !default; |
||
217 | * |
||
218 | * $navbar-light-color: rgba(0, 0, 0, .3) !default; |
||
219 | * $navbar-light-hover-color: rgba(0, 0, 0, .6) !default; |
||
220 | * $navbar-light-active-color: rgba(0, 0, 0, .8) !default; |
||
221 | * $navbar-light-disabled-color: rgba(0, 0, 0, .15) !default; |
||
222 | * |
||
223 | * // Navs |
||
224 | * |
||
225 | * $nav-link-padding: .5em 1em !default; |
||
226 | * $nav-link-hover-bg: $gray-lighter !default; |
||
227 | * |
||
228 | * $nav-disabled-link-color: $gray-light !default; |
||
229 | * $nav-disabled-link-hover-color: $gray-light !default; |
||
230 | * |
||
231 | * $nav-tabs-border-color: #dddddd !default; |
||
232 | * |
||
233 | * $nav-tabs-link-border-width: $border-width !default; |
||
234 | * $nav-tabs-link-hover-border-color: $gray-lighter !default; |
||
235 | * |
||
236 | * $nav-tabs-active-link-hover-bg: $body-bg !default; |
||
237 | * $nav-tabs-active-link-hover-color: $gray !default; |
||
238 | * $nav-tabs-active-link-hover-border-color: #dddddd !default; |
||
239 | * |
||
240 | * $nav-tabs-justified-link-border-color: #dddddd !default; |
||
241 | * $nav-tabs-justified-active-link-border-color: $body-bg !default; |
||
242 | * |
||
243 | * $nav-pills-border-radius: $border-radius !default; |
||
244 | * $nav-pills-active-link-hover-bg: $component-active-bg !default; |
||
245 | * $nav-pills-active-link-hover-color: $component-active-color !default; |
||
246 | * |
||
247 | * // Pagination |
||
248 | * |
||
249 | * $pagination-padding-x: .75rem !default; |
||
250 | * $pagination-padding-y: .5rem !default; |
||
251 | * $pagination-padding-x-sm: .75rem !default; |
||
252 | * $pagination-padding-y-sm: .275rem !default; |
||
253 | * $pagination-padding-x-lg: 1.5rem !default; |
||
254 | * $pagination-padding-y-lg: .75rem !default; |
||
255 | * |
||
256 | * $pagination-color: $link-color !default; |
||
257 | * $pagination-bg: #ffffff !default; |
||
258 | * $pagination-border-width: $border-width !default; |
||
259 | * $pagination-border-color: #dddddd !default; |
||
260 | * |
||
261 | * $pagination-hover-color: $link-hover-color !default; |
||
262 | * $pagination-hover-bg: $gray-lighter !default; |
||
263 | * $pagination-hover-border: #dddddd !default; |
||
264 | * |
||
265 | * $pagination-active-color: #ffffff !default; |
||
266 | * $pagination-active-bg: $brand-primary !default; |
||
267 | * $pagination-active-border: $brand-primary !default; |
||
268 | * |
||
269 | * $pagination-disabled-color: $gray-light !default; |
||
270 | * $pagination-disabled-bg: #ffffff !default; |
||
271 | * $pagination-disabled-border: #dddddd !default; |
||
272 | * |
||
273 | * // Pager |
||
274 | * |
||
275 | * $pager-bg: $pagination-bg !default; |
||
276 | * $pager-border-width: $border-width !default; |
||
277 | * $pager-border-color: $pagination-border-color !default; |
||
278 | * $pager-border-radius: 15px !default; |
||
279 | * |
||
280 | * $pager-hover-bg: $pagination-hover-bg !default; |
||
281 | * |
||
282 | * $pager-active-bg: $pagination-active-bg !default; |
||
283 | * $pager-active-color: $pagination-active-color !default; |
||
284 | * |
||
285 | * $pager-disabled-color: $pagination-disabled-color !default; |
||
286 | * |
||
287 | * // Jumbotron |
||
288 | * |
||
289 | * $jumbotron-padding: 2rem !default; |
||
290 | * $jumbotron-bg: #dee2e3 !default; |
||
291 | * |
||
292 | * // Form states and alerts |
||
293 | * // |
||
294 | * // Define colors for form feedback states and, by default, alerts. |
||
295 | * |
||
296 | * $state-success-text: #ffffff !default; |
||
297 | * $state-success-bg: $brand-success !default; |
||
298 | * $state-success-border: $state-success-bg !default; |
||
299 | * |
||
300 | * $state-info-text: #ffffff !default; |
||
301 | * $state-info-bg: $brand-info !default; |
||
302 | * $state-info-border: $state-info-bg !default; |
||
303 | * |
||
304 | * $state-warning-text: #ffffff !default; |
||
305 | * $state-warning-bg: $brand-warning !default; |
||
306 | * $state-warning-border: $state-warning-bg !default; |
||
307 | * |
||
308 | * $state-danger-text: #ffffff !default; |
||
309 | * $state-danger-bg: $brand-danger !default; |
||
310 | * $state-danger-border: $state-danger-bg !default; |
||
311 | * |
||
312 | * // Cards |
||
313 | * $card-spacer-x: 1.25rem !default; |
||
314 | * $card-spacer-y: .75rem !default; |
||
315 | * $card-border-width: 1px !default; |
||
316 | * $card-border-radius: $border-radius !default; |
||
317 | * $card-border-color: #e5e5e5 !default; |
||
318 | * $card-border-radius-inner: $card-border-radius !default; |
||
319 | * $card-cap-bg: #f8f8f8 !default; |
||
320 | * $card-bg: #ffffff !default; |
||
321 | * |
||
322 | * $card-link-hover-color: #ffffff !default; |
||
323 | * |
||
324 | * // Tooltips |
||
325 | * |
||
326 | * $tooltip-max-width: 200px !default; |
||
327 | * $tooltip-color: #ffffff !default; |
||
328 | * $tooltip-bg: #000000 !default; |
||
329 | * $tooltip-opacity: .9 !default; |
||
330 | * |
||
331 | * $tooltip-arrow-width: 5px !default; |
||
332 | * $tooltip-arrow-color: $tooltip-bg !default; |
||
333 | * |
||
334 | * // Popovers |
||
335 | * |
||
336 | * $popover-bg: #ffffff !default; |
||
337 | * $popover-max-width: 276px !default; |
||
338 | * $popover-border-width: $border-width !default; |
||
339 | * $popover-border-color: rgba(0, 0, 0, .2) !default; |
||
340 | * |
||
341 | * $popover-title-bg: darken($popover-bg, 3 %) !default; |
||
342 | * |
||
343 | * $popover-arrow-width: 10px !default; |
||
344 | * $popover-arrow-color: $popover-bg !default; |
||
345 | * |
||
346 | * $popover-arrow-outer-width: ($popover-arrow-width + 1) !default; |
||
347 | * $popover-arrow-outer-color: fade-in($popover-border-color, 0.05) !default; |
||
348 | * |
||
349 | * // Labels |
||
350 | * |
||
351 | * $label -default-bg: $gray-light !default; |
||
352 | * $label-primary-bg: $brand-primary !default; |
||
353 | * $label-success-bg: $brand-success !default; |
||
354 | * $label-info-bg: $brand-info !default; |
||
355 | * $label-warning-bg: $brand-warning !default; |
||
356 | * $label-danger-bg: $brand-danger !default; |
||
357 | * |
||
358 | * $label-color: #ffffff !default; |
||
359 | * $label-link-hover-color: #ffffff !default; |
||
360 | * $label-font-weight: bold !default; |
||
361 | * |
||
362 | * // Modals |
||
363 | * |
||
364 | * // Padding applied to the modal body |
||
365 | * $modal-inner-padding: 15px !default; |
||
366 | * |
||
367 | * $modal-title-padding: 15px !default; |
||
368 | * $modal-title-line-height: $line-height !default; |
||
369 | * |
||
370 | * $modal-content-bg: #ffffff !default; |
||
371 | * $modal-content-border-color: rgba(0, 0, 0, .2) !default; |
||
372 | * |
||
373 | * $modal-backdrop-bg: #000000 !default; |
||
374 | * $modal-backdrop-opacity: .5 !default; |
||
375 | * $modal-header-border-color: #e5e5e5 !default; |
||
376 | * $modal-footer-border-color: $modal-header-border-color !default; |
||
377 | * |
||
378 | * $modal-lg: 900px !default; |
||
379 | * $modal-md: 600px !default; |
||
380 | * $modal-sm: 300px !default; |
||
381 | * |
||
382 | * // Alerts |
||
383 | * // |
||
384 | * // Define alert colors, border radius, and padding. |
||
385 | * |
||
386 | * $alert-padding: 15px !default; |
||
387 | * $alert-border-radius: $border-radius !default; |
||
388 | * $alert-link-font-weight: bold !default; |
||
389 | * $alert-border-width: $border-width !default; |
||
390 | * |
||
391 | * $alert-success-bg: $state-success-bg !default; |
||
392 | * $alert-success-text: $state-success-text !default; |
||
393 | * $alert-success-border: $state-success-border !default; |
||
394 | * |
||
395 | * $alert-info-bg: $state-info-bg !default; |
||
396 | * $alert-info-text: $state-info-text !default; |
||
397 | * $alert-info-border: $state-info-border !default; |
||
398 | * |
||
399 | * $alert-warning-bg: $state-warning-bg !default; |
||
400 | * $alert-warning-text: $state-warning-text !default; |
||
401 | * $alert-warning-border: $state-warning-border !default; |
||
402 | * |
||
403 | * $alert-danger-bg: $state-danger-bg !default; |
||
404 | * $alert-danger-text: $state-danger-text !default; |
||
405 | * $alert-danger-border: $state-danger-border !default; |
||
406 | * |
||
407 | * // Progress bars |
||
408 | * |
||
409 | * $progress-bg: #f5f5f5 !default; |
||
410 | * $progress-bar-color: #ffffff !default; |
||
411 | * $progress-border-radius: $border-radius !default; |
||
412 | * |
||
413 | * $progress-bar-bg: $brand-primary !default; |
||
414 | * $progress-bar-success-bg: $brand-success !default; |
||
415 | * $progress-bar-warning-bg: $brand-warning !default; |
||
416 | * $progress-bar-danger-bg: $brand-danger !default; |
||
417 | * $progress-bar-info-bg: $brand-info !default; |
||
418 | * |
||
419 | * // List group |
||
420 | * |
||
421 | * $list-group-bg: #ffffff !default; |
||
422 | * $list-group-border-color: #dddddd !default; |
||
423 | * $list-group-border-width: $border-width !default; |
||
424 | * $list-group-border-radius: $border-radius !default; |
||
425 | * |
||
426 | * $list-group-hover-bg: #f5f5f5 !default; |
||
427 | * $list-group-active-color: $component-active-color !default; |
||
428 | * $list-group-active-bg: $component-active-bg !default; |
||
429 | * $list-group-active-border: $list-group-active-bg !default; |
||
430 | * $list-group-active-text-color: lighten($list-group-active-bg, 40 %) !default; |
||
431 | * |
||
432 | * $list-group-disabled-color: $gray-light !default; |
||
433 | * $list-group-disabled-bg: $gray-lighter !default; |
||
434 | * $list-group-disabled-text-color: $list-group-disabled-color !default; |
||
435 | * |
||
436 | * $list-group-link-color: #555555 !default; |
||
437 | * $list-group-link-hover-color: $list-group-link-color !default; |
||
438 | * $list-group-link-heading-color: #333333 !default; |
||
439 | * |
||
440 | * // Image thumbnails |
||
441 | * |
||
442 | * $thumbnail-padding: .25rem !default; |
||
443 | * $thumbnail-bg: $body-bg !default; |
||
444 | * $thumbnail-border-width: $border-width !default; |
||
445 | * $thumbnail-border-color: #dddddd !default; |
||
446 | * $thumbnail-border-radius: $border-radius !default; |
||
447 | * |
||
448 | * // Breadcrumbs |
||
449 | * |
||
450 | * $breadcrumb-padding-vertical: .75rem !default; |
||
451 | * $breadcrumb-padding-horizontal: 1rem !default; |
||
452 | * |
||
453 | * $breadcrumb-bg: transparent !default; |
||
454 | * $breadcrumb-divider-color: $gray-light !default; |
||
455 | * $breadcrumb-active-color: $brand-info !default; |
||
456 | * $breadcrumb-divider: "›" !default; |
||
457 | * |
||
458 | * // Carousel |
||
459 | * |
||
460 | * $carousel-text-shadow: 0 1px 2px rgba(0, 0, 0, .6) !default; |
||
461 | * |
||
462 | * $carousel-control-color: #ffffff !default; |
||
463 | * $carousel-control-width: 15 % !default; |
||
464 | * $carousel-control-opacity: .5 !default; |
||
465 | * $carousel-control-font-size: 20px !default; |
||
466 | * |
||
467 | * $carousel-indicator-active-bg: #ffffff !default; |
||
468 | * $carousel-indicator-border-color: #ffffff !default; |
||
469 | * |
||
470 | * $carousel-caption-color: #ffffff !default; |
||
471 | * |
||
472 | * // Close |
||
473 | * |
||
474 | * $close-font-weight: bold !default; |
||
475 | * $close-color: #000000 !default; |
||
476 | * $close-text-shadow: 0 1px 0 #ffffff !default; |
||
477 | * |
||
478 | * // Code |
||
479 | * |
||
480 | * $code-color: #bd4147 !default; |
||
481 | * $code-bg: #f7f7f9 !default; |
||
482 | * |
||
483 | * $kbd-color: #ffffff !default; |
||
484 | * $kbd-bg: #333333 !default; |
||
485 | * |
||
486 | * $pre-bg: #f7f7f9 !default; |
||
487 | * $pre-color: $gray-dark !default; |
||
488 | * $pre-border-color: #cccccc !default; |
||
489 | * $pre-scrollable-max-height: 340px !default;*/ |
||
490 | |||
491 | ]; |
||
492 |
Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.
The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.
This check looks for comments that seem to be mostly valid code and reports them.