sigbit_admin_rails 0.0.3 → 0.0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,688 @@
1
+ // Variables
2
+ //
3
+ // Copy settings from this file into the provided `_custom.scss` to override
4
+ // the Bootstrap defaults without modifying key, versioned files.
5
+
6
+
7
+ // Table of Contents
8
+ //
9
+ // Colors
10
+ // Options
11
+ // Spacing
12
+ // Body
13
+ // Links
14
+ // Grid breakpoints
15
+ // Grid containers
16
+ // Grid columns
17
+ // Fonts
18
+ // Components
19
+
20
+ // General variable structure
21
+ //
22
+ // Variable format should follow the `$component-modifier-state-property` order.
23
+
24
+
25
+ // Colors
26
+ //
27
+ // Grayscale and brand colors for use across Bootstrap.
28
+
29
+ $gray-dark: #373a3c !default;
30
+ $gray: #55595c !default;
31
+ $gray-light: #818a91 !default;
32
+ $gray-lighter: #eceeef !default;
33
+ $gray-lightest: #f7f7f9 !default;
34
+
35
+ $brand-primary: #6D5CAE !default;
36
+ $brand-success: #10CFBD !default;
37
+ $brand-info: #48B0F7 !default;
38
+ $brand-warning: #f7cf5e !default;
39
+ $brand-danger: #F55753 !default;
40
+
41
+
42
+ // Options
43
+ //
44
+ // Quickly modify global styling by enabling or disabling optional features.
45
+
46
+ $enable-flex: false !default;
47
+ $enable-rounded: true !default;
48
+ $enable-shadows: true !default;
49
+ $enable-gradients: false !default;
50
+ $enable-transitions: true !default;
51
+ $enable-hover-media-query: false !default;
52
+ $enable-grid-classes: true !default;
53
+
54
+
55
+ // Spacing
56
+ //
57
+ // Control the default styling of most Bootstrap elements by modifying these
58
+ // variables. Mostly focused on spacing.
59
+
60
+ $spacer: 1.5rem !default;
61
+ $spacer-x: $spacer !default;
62
+ $spacer-y: $spacer !default;
63
+ $spacers: (
64
+ 0: (
65
+ x: 0,
66
+ y: 0
67
+ ),
68
+ 1: (
69
+ x: $spacer-x,
70
+ y: $spacer-y
71
+ ),
72
+ 2: (
73
+ x: ($spacer-x * 1.5),
74
+ y: ($spacer-y * 1.5)
75
+ ),
76
+ 3: (
77
+ x: ($spacer-x * 3),
78
+ y: ($spacer-y * 3)
79
+ )
80
+ ) !default;
81
+ $border-width: 1px !default;
82
+
83
+
84
+ // Body
85
+ //
86
+ // Settings for the `<body>` element.
87
+
88
+ $body-bg: $gray-lighter !default;
89
+ $body-color: $gray-dark !default;
90
+
91
+
92
+ // Links
93
+ //
94
+ // Style anchor elements.
95
+
96
+ $link-color: $brand-primary !default;
97
+ $link-decoration: none !default;
98
+ $link-hover-color: darken($link-color, 15%) !default;
99
+ $link-hover-decoration: underline !default;
100
+
101
+
102
+ // Grid breakpoints
103
+ //
104
+ // Define the minimum and maximum dimensions at which your layout will change,
105
+ // adapting to different screen sizes, for use in media queries.
106
+
107
+ $grid-breakpoints: (
108
+ // Extra small screen / phone
109
+ xs: 0,
110
+ // Small screen / phone
111
+ sm: 544px,
112
+ // Medium screen / tablet
113
+ md: 768px,
114
+ // Large screen / desktop
115
+ lg: 992px,
116
+ // Extra large screen / wide desktop
117
+ xl: 1200px
118
+ ) !default;
119
+
120
+
121
+ // Grid containers
122
+ //
123
+ // Define the maximum width of `.container` for different screen sizes.
124
+
125
+ $container-max-widths: (
126
+ sm: 576px,
127
+ md: 720px,
128
+ lg: 940px,
129
+ xl: 1140px
130
+ ) !default;
131
+
132
+
133
+ // Grid columns
134
+ //
135
+ // Set the number of columns and specify the width of the gutters.
136
+
137
+ $grid-columns: 12 !default;
138
+ $grid-gutter-width: 1.875rem !default; // 30px
139
+
140
+
141
+ // Typography
142
+ //
143
+ // Font, line-height, and color for body text, headings, and more.
144
+
145
+ $font-family-sans-serif: "Source Sans Pro", "Helvetica Neue", Helvetica, Arial, sans-serif !default;
146
+ $font-family-serif: Georgia, "Times New Roman", Times, serif !default;
147
+ $font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
148
+ $font-family-base: $font-family-sans-serif !default;
149
+
150
+ // Pixel value used to responsively scale all typography. Applied to the `<html>` element.
151
+ $font-size-root: 16px !default;
152
+
153
+ $font-size-base: 1rem !default;
154
+ $font-size-lg: 1.25rem !default;
155
+ $font-size-sm: .875rem !default;
156
+ $font-size-xs: .75rem !default;
157
+
158
+ $font-size-h1: 2.5rem !default;
159
+ $font-size-h2: 2rem !default;
160
+ $font-size-h3: 1.75rem !default;
161
+ $font-size-h4: 1.5rem !default;
162
+ $font-size-h5: 1.25rem !default;
163
+ $font-size-h6: 1rem !default;
164
+
165
+ $display1-size: 6rem !default;
166
+ $display2-size: 5.5rem !default;
167
+ $display3-size: 4.5rem !default;
168
+ $display4-size: 3.5rem !default;
169
+
170
+ $display1-weight: 300 !default;
171
+ $display2-weight: 300 !default;
172
+ $display3-weight: 300 !default;
173
+ $display4-weight: 300 !default;
174
+
175
+ $line-height: 1.5 !default;
176
+
177
+ $headings-margin-bottom: ($spacer / 2) !default;
178
+ $headings-font-family: inherit !default;
179
+ $headings-font-weight: 700 !default;
180
+ $headings-line-height: 1.1 !default;
181
+ $headings-color: inherit !default;
182
+
183
+ $lead-font-size: 1.25rem !default;
184
+ $lead-font-weight: 300 !default;
185
+
186
+ $text-muted: $gray-light !default;
187
+
188
+ $abbr-border-color: $gray-light !default;
189
+
190
+ $blockquote-small-color: $gray-light !default;
191
+ $blockquote-font-size: ($font-size-base * 1.25) !default;
192
+ $blockquote-border-color: $gray-lighter !default;
193
+
194
+ $hr-border-color: rgba(0,0,0,.1) !default;
195
+ $hr-border-width: $border-width !default;
196
+
197
+ $dt-font-weight: bold !default;
198
+
199
+ $nested-kbd-font-weight: bold !default;
200
+
201
+ $list-inline-padding: 5px !default;
202
+
203
+
204
+ // Components
205
+ //
206
+ // Define common padding and border radius sizes and more.
207
+
208
+ $line-height-lg: (4 / 3) !default;
209
+ $line-height-sm: 1.5 !default;
210
+
211
+ $border-radius: .25rem !default;
212
+ $border-radius-lg: .3rem !default;
213
+ $border-radius-sm: .2rem !default;
214
+
215
+ $component-active-color: #fff !default;
216
+ $component-active-bg: $brand-primary !default;
217
+
218
+ $caret-width: .3em !default;
219
+ $caret-width-lg: $caret-width !default;
220
+
221
+
222
+ // Tables
223
+ //
224
+ // Customizes the `.table` component with basic values, each used across all table variations.
225
+
226
+ $table-cell-padding: .75rem !default;
227
+ $table-sm-cell-padding: .3rem !default;
228
+
229
+ $table-bg: transparent !default;
230
+ $table-bg-accent: #f9f9f9 !default;
231
+ $table-bg-hover: #f5f5f5 !default;
232
+ $table-bg-active: $table-bg-hover !default;
233
+
234
+ $table-border-width: $border-width !default;
235
+ $table-border-color: $gray-lighter !default;
236
+
237
+
238
+ // Buttons
239
+ //
240
+ // For each of Bootstrap's buttons, define text, background and border color.
241
+
242
+ $btn-padding-x: 1rem !default;
243
+ $btn-padding-y: .375rem !default;
244
+ $btn-font-weight: normal !default;
245
+
246
+ $btn-primary-color: #fff !default;
247
+ $btn-primary-bg: $brand-primary !default;
248
+ $btn-primary-border: $btn-primary-bg !default;
249
+
250
+ $btn-secondary-color: $gray-dark !default;
251
+ $btn-secondary-bg: #fff !default;
252
+ $btn-secondary-border: #ccc !default;
253
+
254
+ $btn-info-color: #fff !default;
255
+ $btn-info-bg: $brand-info !default;
256
+ $btn-info-border: $btn-info-bg !default;
257
+
258
+ $btn-success-color: #fff !default;
259
+ $btn-success-bg: $brand-success !default;
260
+ $btn-success-border: $btn-success-bg !default;
261
+
262
+ $btn-warning-color: #fff !default;
263
+ $btn-warning-bg: $brand-warning !default;
264
+ $btn-warning-border: $btn-warning-bg !default;
265
+
266
+ $btn-danger-color: #fff !default;
267
+ $btn-danger-bg: $brand-danger !default;
268
+ $btn-danger-border: $btn-danger-bg !default;
269
+
270
+ $btn-link-disabled-color: $gray-light !default;
271
+
272
+ $btn-padding-x-sm: .75rem !default;
273
+ $btn-padding-y-sm: .25rem !default;
274
+
275
+ $btn-padding-x-lg: 1.25rem !default;
276
+ $btn-padding-y-lg: .75rem !default;
277
+
278
+ // Allows for customizing button radius independently from global border radius
279
+ $btn-border-radius: $border-radius !default;
280
+ $btn-border-radius-lg: $border-radius-lg !default;
281
+ $btn-border-radius-sm: $border-radius-sm !default;
282
+
283
+
284
+ // Forms
285
+
286
+ $input-padding-x: .75rem !default;
287
+ $input-padding-y: .375rem !default;
288
+
289
+ $input-bg: #fff !default;
290
+ $input-bg-disabled: $gray-lighter !default;
291
+
292
+ $input-color: $gray !default;
293
+ $input-border-color: #ccc !default;
294
+ $input-btn-border-width: $border-width !default; // For form controls and buttons
295
+ $input-box-shadow: inset 0 1px 1px rgba(0,0,0,.075) !default;
296
+
297
+ $input-border-radius: $border-radius !default;
298
+ $input-border-radius-lg: $border-radius-lg !default;
299
+ $input-border-radius-sm: $border-radius-sm !default;
300
+
301
+ $input-border-focus: #66afe9 !default;
302
+ $input-box-shadow-focus: rgba(102,175,233,.6) !default;
303
+
304
+ $input-color-placeholder: #999 !default;
305
+
306
+ $input-padding-x-sm: .75rem !default;
307
+ $input-padding-y-sm: .275rem !default;
308
+
309
+ $input-padding-x-lg: 1.25rem !default;
310
+ $input-padding-y-lg: .75rem !default;
311
+
312
+ $input-height: (($font-size-base * $line-height) + ($input-padding-y * 2)) !default;
313
+ $input-height-lg: (($font-size-lg * $line-height-lg) + ($input-padding-y-lg * 2)) !default;
314
+ $input-height-sm: (($font-size-sm * $line-height-sm) + ($input-padding-y-sm * 2)) !default;
315
+
316
+ $form-group-margin-bottom: $spacer-y !default;
317
+
318
+ $input-group-addon-bg: $gray-lighter !default;
319
+ $input-group-addon-border-color: $input-border-color !default;
320
+
321
+ $cursor-disabled: not-allowed !default;
322
+
323
+ // Form validation icons
324
+ $form-icon-success: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjNWNiODVjIiBkPSJNMjMzLjggNjEwYy0xMy4zIDAtMjYtNi0zNC0xNi44TDkwLjUgNDQ4LjhDNzYuMyA0MzAgODAgNDAzLjMgOTguOCAzODljMTguOC0xNC4yIDQ1LjUtMTAuNCA1OS44IDguNGw3MiA5NUw0NTEuMyAyNDJjMTIuNS0yMCAzOC44LTI2LjIgNTguOC0xMy43IDIwIDEyLjQgMjYgMzguNyAxMy43IDU4LjhMMjcwIDU5MGMtNy40IDEyLTIwLjIgMTkuNC0zNC4zIDIwaC0yeiIvPjwvc3ZnPg==" !default;
325
+ $form-icon-warning: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZjBhZDRlIiBkPSJNNjAzIDY0MC4ybC0yNzguNS01MDljLTMuOC02LjYtMTAuOC0xMC42LTE4LjUtMTAuNnMtMTQuNyA0LTE4LjUgMTAuNkw5IDY0MC4yYy0zLjcgNi41LTMuNiAxNC40LjIgMjAuOCAzLjggNi41IDEwLjggMTAuNCAxOC4zIDEwLjRoNTU3YzcuNiAwIDE0LjYtNCAxOC40LTEwLjQgMy41LTYuNCAzLjYtMTQuNCAwLTIwLjh6bS0yNjYuNC0zMGgtNjEuMlY1NDloNjEuMnY2MS4yem0wLTEwN2gtNjEuMlYzMDRoNjEuMnYxOTl6Ii8+PC9zdmc+" !default;
326
+ $form-icon-danger: "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2MTIgNzkyIj48cGF0aCBmaWxsPSIjZDk1MzRmIiBkPSJNNDQ3IDU0NC40Yy0xNC40IDE0LjQtMzcuNiAxNC40LTUyIDBsLTg5LTkyLjctODkgOTIuN2MtMTQuNSAxNC40LTM3LjcgMTQuNC01MiAwLTE0LjQtMTQuNC0xNC40LTM3LjYgMC01Mmw5Mi40LTk2LjMtOTIuNC05Ni4zYy0xNC40LTE0LjQtMTQuNC0zNy42IDAtNTJzMzcuNi0xNC4zIDUyIDBsODkgOTIuOCA4OS4yLTkyLjdjMTQuNC0xNC40IDM3LjYtMTQuNCA1MiAwIDE0LjMgMTQuNCAxNC4zIDM3LjYgMCA1MkwzNTQuNiAzOTZsOTIuNCA5Ni40YzE0LjQgMTQuNCAxNC40IDM3LjYgMCA1MnoiLz48L3N2Zz4=" !default;
327
+
328
+
329
+ // Dropdowns
330
+ //
331
+ // Dropdown menu container and contents.
332
+
333
+ $dropdown-bg: #fff !default;
334
+ $dropdown-border-color: rgba(0,0,0,.15) !default;
335
+ $dropdown-border-width: $border-width !default;
336
+ $dropdown-divider-bg: #e5e5e5 !default;
337
+
338
+ $dropdown-link-color: $gray-dark !default;
339
+ $dropdown-link-hover-color: darken($gray-dark, 5%) !default;
340
+ $dropdown-link-hover-bg: #f5f5f5 !default;
341
+
342
+ $dropdown-link-active-color: $component-active-color !default;
343
+ $dropdown-link-active-bg: $component-active-bg !default;
344
+
345
+ $dropdown-link-disabled-color: $gray-light !default;
346
+
347
+ $dropdown-header-color: $gray-light !default;
348
+
349
+
350
+ // Z-index master list
351
+ //
352
+ // Warning: Avoid customizing these values. They're used for a bird's eye view
353
+ // of components dependent on the z-axis and are designed to all work together.
354
+
355
+ $zindex-navbar: 1000 !default;
356
+ $zindex-dropdown: 1000 !default;
357
+ $zindex-popover: 1060 !default;
358
+ $zindex-tooltip: 1070 !default;
359
+ $zindex-navbar-fixed: 1030 !default;
360
+ $zindex-navbar-sticky: 1030 !default;
361
+ $zindex-modal-bg: 1040 !default;
362
+ $zindex-modal: 1050 !default;
363
+
364
+
365
+ // Navbar
366
+
367
+ $navbar-border-radius: $border-radius !default;
368
+ $navbar-padding-horizontal: $spacer !default;
369
+ $navbar-padding-vertical: ($spacer / 2) !default;
370
+
371
+ $navbar-dark-color: rgba(255,255,255,.5) !default;
372
+ $navbar-dark-hover-color: rgba(255,255,255,.75) !default;
373
+ $navbar-dark-active-color: rgba(255,255,255,1) !default;
374
+ $navbar-dark-disabled-color: rgba(255,255,255,.25) !default;
375
+
376
+ $navbar-light-color: rgba(0,0,0,.3) !default;
377
+ $navbar-light-hover-color: rgba(0,0,0,.6) !default;
378
+ $navbar-light-active-color: rgba(0,0,0,.8) !default;
379
+ $navbar-light-disabled-color: rgba(0,0,0,.15) !default;
380
+
381
+
382
+ // Navs
383
+
384
+ $nav-link-padding: .5em 1em !default;
385
+ $nav-link-hover-bg: $gray-lighter !default;
386
+
387
+ $nav-disabled-link-color: $gray-light !default;
388
+ $nav-disabled-link-hover-color: $gray-light !default;
389
+
390
+ $nav-tabs-border-color: #ddd !default;
391
+
392
+ $nav-tabs-link-border-width: $border-width !default;
393
+ $nav-tabs-link-hover-border-color: $gray-lighter !default;
394
+
395
+ $nav-tabs-active-link-hover-bg: $body-bg !default;
396
+ $nav-tabs-active-link-hover-color: $gray !default;
397
+ $nav-tabs-active-link-hover-border-color: #ddd !default;
398
+
399
+ $nav-tabs-justified-link-border-color: #ddd !default;
400
+ $nav-tabs-justified-active-link-border-color: $body-bg !default;
401
+
402
+ $nav-pills-border-radius: $border-radius !default;
403
+ $nav-pills-active-link-hover-bg: $component-active-bg !default;
404
+ $nav-pills-active-link-hover-color: $component-active-color !default;
405
+
406
+
407
+ // Pagination
408
+
409
+ $pagination-padding-x: .75rem !default;
410
+ $pagination-padding-y: .5rem !default;
411
+ $pagination-padding-x-sm: .75rem !default;
412
+ $pagination-padding-y-sm: .275rem !default;
413
+ $pagination-padding-x-lg: 1.5rem !default;
414
+ $pagination-padding-y-lg: .75rem !default;
415
+
416
+
417
+ $pagination-color: $link-color !default;
418
+ $pagination-bg: #fff !default;
419
+ $pagination-border-width: $border-width !default;
420
+ $pagination-border-color: #ddd !default;
421
+
422
+ $pagination-hover-color: $link-hover-color !default;
423
+ $pagination-hover-bg: $gray-lighter !default;
424
+ $pagination-hover-border: #ddd !default;
425
+
426
+ $pagination-active-color: #fff !default;
427
+ $pagination-active-bg: $brand-primary !default;
428
+ $pagination-active-border: $brand-primary !default;
429
+
430
+ $pagination-disabled-color: $gray-light !default;
431
+ $pagination-disabled-bg: #fff !default;
432
+ $pagination-disabled-border: #ddd !default;
433
+
434
+
435
+ // Pager
436
+
437
+ $pager-bg: $pagination-bg !default;
438
+ $pager-border-width: $border-width !default;
439
+ $pager-border-color: $pagination-border-color !default;
440
+ $pager-border-radius: 15px !default;
441
+
442
+ $pager-hover-bg: $pagination-hover-bg !default;
443
+
444
+ $pager-active-bg: $pagination-active-bg !default;
445
+ $pager-active-color: $pagination-active-color !default;
446
+
447
+ $pager-disabled-color: $pagination-disabled-color !default;
448
+
449
+
450
+ // Jumbotron
451
+
452
+ $jumbotron-padding: 2rem !default;
453
+ $jumbotron-bg: $gray-lighter !default;
454
+
455
+
456
+ // Form states and alerts
457
+ //
458
+ // Define colors for form feedback states and, by default, alerts.
459
+
460
+ $state-success-text: #3c763d !default;
461
+ $state-success-bg: #dff0d8 !default;
462
+ $state-success-border: darken($state-success-bg, 5%) !default;
463
+
464
+ $state-info-text: #31708f !default;
465
+ $state-info-bg: #d9edf7 !default;
466
+ $state-info-border: darken($state-info-bg, 7%) !default;
467
+
468
+ $state-warning-text: #8a6d3b !default;
469
+ $state-warning-bg: #fcf8e3 !default;
470
+ $state-warning-border: darken($state-warning-bg, 5%) !default;
471
+
472
+ $state-danger-text: #a94442 !default;
473
+ $state-danger-bg: #f2dede !default;
474
+ $state-danger-border: darken($state-danger-bg, 5%) !default;
475
+
476
+
477
+ // Cards
478
+ $card-spacer-x: 1.25rem !default;
479
+ $card-spacer-y: .75rem !default;
480
+ $card-border-width: 1px !default;
481
+ $card-border-radius: $border-radius !default;
482
+ $card-border-color: #e5e5e5 !default;
483
+ $card-border-radius-inner: $card-border-radius !default;
484
+ $card-cap-bg: #f5f5f5 !default;
485
+ $card-bg: #fff !default;
486
+
487
+ $card-link-hover-color: #fff !default;
488
+
489
+
490
+ // Tooltips
491
+
492
+ $tooltip-max-width: 200px !default;
493
+ $tooltip-color: #fff !default;
494
+ $tooltip-bg: #000 !default;
495
+ $tooltip-opacity: .9 !default;
496
+
497
+ $tooltip-arrow-width: 5px !default;
498
+ $tooltip-arrow-color: $tooltip-bg !default;
499
+
500
+
501
+ // Popovers
502
+
503
+ $popover-bg: #fff !default;
504
+ $popover-max-width: 276px !default;
505
+ $popover-border-width: $border-width !default;
506
+ $popover-border-color: rgba(0,0,0,.2) !default;
507
+
508
+ $popover-title-bg: darken($popover-bg, 3%) !default;
509
+
510
+ $popover-arrow-width: 10px !default;
511
+ $popover-arrow-color: $popover-bg !default;
512
+
513
+ $popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
514
+ $popover-arrow-outer-color: fade-in($popover-border-color, 0.05) !default;
515
+
516
+
517
+ // Labels
518
+
519
+ $label-default-bg: $gray-light !default;
520
+ $label-primary-bg: $brand-primary !default;
521
+ $label-success-bg: $brand-success !default;
522
+ $label-info-bg: $brand-info !default;
523
+ $label-warning-bg: $brand-warning !default;
524
+ $label-danger-bg: $brand-danger !default;
525
+
526
+ $label-color: #fff !default;
527
+ $label-link-hover-color: #fff !default;
528
+ $label-font-weight: bold !default;
529
+
530
+
531
+ // Modals
532
+
533
+ // Padding applied to the modal body
534
+ $modal-inner-padding: 15px !default;
535
+
536
+ $modal-title-padding: 15px !default;
537
+ $modal-title-line-height: $line-height !default;
538
+
539
+ $modal-content-bg: #fff !default;
540
+ $modal-content-border-color: rgba(0,0,0,.2) !default;
541
+
542
+ $modal-backdrop-bg: #000 !default;
543
+ $modal-backdrop-opacity: .5 !default;
544
+ $modal-header-border-color: #e5e5e5 !default;
545
+ $modal-footer-border-color: $modal-header-border-color !default;
546
+
547
+ $modal-lg: 900px !default;
548
+ $modal-md: 600px !default;
549
+ $modal-sm: 300px !default;
550
+
551
+
552
+ // Alerts
553
+ //
554
+ // Define alert colors, border radius, and padding.
555
+
556
+ $alert-padding: 15px !default;
557
+ $alert-border-radius: $border-radius !default;
558
+ $alert-link-font-weight: bold !default;
559
+ $alert-border-width: $border-width !default;
560
+
561
+ $alert-success-bg: $state-success-bg !default;
562
+ $alert-success-text: $state-success-text !default;
563
+ $alert-success-border: $state-success-border !default;
564
+
565
+ $alert-info-bg: $state-info-bg !default;
566
+ $alert-info-text: $state-info-text !default;
567
+ $alert-info-border: $state-info-border !default;
568
+
569
+ $alert-warning-bg: $state-warning-bg !default;
570
+ $alert-warning-text: $state-warning-text !default;
571
+ $alert-warning-border: $state-warning-border !default;
572
+
573
+ $alert-danger-bg: $state-danger-bg !default;
574
+ $alert-danger-text: $state-danger-text !default;
575
+ $alert-danger-border: $state-danger-border !default;
576
+
577
+
578
+ // Progress bars
579
+
580
+ $progress-bg: #f5f5f5 !default;
581
+ $progress-bar-color: #fff !default;
582
+ $progress-border-radius: $border-radius !default;
583
+
584
+ $progress-bar-bg: $brand-primary !default;
585
+ $progress-bar-success-bg: $brand-success !default;
586
+ $progress-bar-warning-bg: $brand-warning !default;
587
+ $progress-bar-danger-bg: $brand-danger !default;
588
+ $progress-bar-info-bg: $brand-info !default;
589
+
590
+
591
+ // List group
592
+
593
+ $list-group-bg: #fff !default;
594
+ $list-group-border-color: #ddd !default;
595
+ $list-group-border-width: $border-width !default;
596
+ $list-group-border-radius: $border-radius !default;
597
+
598
+ $list-group-hover-bg: #f5f5f5 !default;
599
+ $list-group-active-color: $component-active-color !default;
600
+ $list-group-active-bg: $component-active-bg !default;
601
+ $list-group-active-border: $list-group-active-bg !default;
602
+ $list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
603
+
604
+ $list-group-disabled-color: $gray-light !default;
605
+ $list-group-disabled-bg: $gray-lighter !default;
606
+ $list-group-disabled-text-color: $list-group-disabled-color !default;
607
+
608
+ $list-group-link-color: #555 !default;
609
+ $list-group-link-hover-color: $list-group-link-color !default;
610
+ $list-group-link-heading-color: #333 !default;
611
+
612
+
613
+ // Image thumbnails
614
+
615
+ $thumbnail-padding: .25rem !default;
616
+ $thumbnail-bg: $body-bg !default;
617
+ $thumbnail-border-width: $border-width !default;
618
+ $thumbnail-border-color: #ddd !default;
619
+ $thumbnail-border-radius: $border-radius !default;
620
+
621
+
622
+ // Breadcrumbs
623
+
624
+ $breadcrumb-padding-vertical: .75rem !default;
625
+ $breadcrumb-padding-horizontal: 1rem !default;
626
+
627
+ $breadcrumb-bg: $gray-lighter !default;
628
+ $breadcrumb-divider-color: $gray-light !default;
629
+ $breadcrumb-active-color: $gray-light !default;
630
+ $breadcrumb-divider: "/" !default;
631
+
632
+
633
+ // Carousel
634
+
635
+ $carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
636
+
637
+ $carousel-control-color: #fff !default;
638
+ $carousel-control-width: 15% !default;
639
+ $carousel-control-opacity: .5 !default;
640
+ $carousel-control-font-size: 20px !default;
641
+
642
+ $carousel-indicator-active-bg: #fff !default;
643
+ $carousel-indicator-border-color: #fff !default;
644
+
645
+ $carousel-caption-color: #fff !default;
646
+
647
+
648
+ // Close
649
+
650
+ $close-font-weight: bold !default;
651
+ $close-color: #000 !default;
652
+ $close-text-shadow: 0 1px 0 #fff !default;
653
+
654
+
655
+ // Code
656
+
657
+ $code-color: #bd4147 !default;
658
+ $code-bg: #f7f7f9 !default;
659
+
660
+ $kbd-color: #fff !default;
661
+ $kbd-bg: #333 !default;
662
+
663
+ $pre-bg: #f7f7f9 !default;
664
+ $pre-color: $gray-dark !default;
665
+ $pre-border-color: #ccc !default;
666
+ $pre-scrollable-max-height: 340px !default;
667
+
668
+
669
+
670
+ // Variables used for extended components
671
+ // ---------------------------------------
672
+
673
+ // Logotypes
674
+ // On mobile the sidebar logotype is replaced with the header navbar logotype
675
+
676
+ $sidebar-logotype: 'http://d1i5cf397ceebi.cloudfront.net/assets/main_logo-4ab62363897ec9168acbb5507e91e7db4910b8006237f4b1be1fb06339a0395a.png'!default;
677
+ $header-navbar-logotype: 'http://www.significantbit.se/assets/logotype-2b1fd527c1bed395289dcef8bdf490100f0c3303786007178694802beb83fbc8.svg'!default;
678
+
679
+ // Sidebar
680
+
681
+ $sidebar-width: 250px!default;
682
+ $sidebar-bg: #2d2f40!default;
683
+
684
+ // Header-navbar
685
+
686
+ $header-navbar-height: 60px!default;
687
+ $header-navbar-bg: white!default;
688
+ $header-navbar-bottom-border: darken($gray-lighter,10%)!default;
@@ -3,7 +3,7 @@ require 'sigbit_admin_rails/helpers/sidebar_helper'
3
3
 
4
4
  module SigbitAdminRails
5
5
  class Railtie < Rails::Railtie
6
- initializer "my_gem.view_helpers" do
6
+ initializer 'sigbit_admin_rails.view_helpers' do
7
7
  ActionView::Base.send :include, ApplicationHelper
8
8
  ActionView::Base.send :include, SidebarHelper
9
9
  end