egov_utils 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/lib/egov_utils/version.rb +1 -1
  3. data/vendor/assets/images/shieldui/editor.png +0 -0
  4. data/vendor/assets/images/shieldui/loading-dark-bootstrap-gradient-small.gif +0 -0
  5. data/vendor/assets/images/shieldui/loading-dark-bootstrap-gradient.gif +0 -0
  6. data/vendor/assets/images/shieldui/loading-dark-bootstrap-small.gif +0 -0
  7. data/vendor/assets/images/shieldui/loading-dark-bootstrap.gif +0 -0
  8. data/vendor/assets/images/shieldui/loading-dark-glow-gradient-small.gif +0 -0
  9. data/vendor/assets/images/shieldui/loading-dark-glow-gradient.gif +0 -0
  10. data/vendor/assets/images/shieldui/loading-dark-glow-small.gif +0 -0
  11. data/vendor/assets/images/shieldui/loading-dark-glow.gif +0 -0
  12. data/vendor/assets/images/shieldui/loading-dark-gradient-small.gif +0 -0
  13. data/vendor/assets/images/shieldui/loading-dark-gradient.gif +0 -0
  14. data/vendor/assets/images/shieldui/loading-dark-mint-gradient-small.gif +0 -0
  15. data/vendor/assets/images/shieldui/loading-dark-mint-gradient.gif +0 -0
  16. data/vendor/assets/images/shieldui/loading-dark-mint-small.gif +0 -0
  17. data/vendor/assets/images/shieldui/loading-dark-mint.gif +0 -0
  18. data/vendor/assets/images/shieldui/loading-dark-small.gif +0 -0
  19. data/vendor/assets/images/shieldui/loading-dark.gif +0 -0
  20. data/vendor/assets/images/shieldui/loading-light-bootstrap-gradient-small.gif +0 -0
  21. data/vendor/assets/images/shieldui/loading-light-bootstrap-gradient.gif +0 -0
  22. data/vendor/assets/images/shieldui/loading-light-bootstrap-small.gif +0 -0
  23. data/vendor/assets/images/shieldui/loading-light-bootstrap.gif +0 -0
  24. data/vendor/assets/images/shieldui/loading-light-glow-gradient-small.gif +0 -0
  25. data/vendor/assets/images/shieldui/loading-light-glow-gradient.gif +0 -0
  26. data/vendor/assets/images/shieldui/loading-light-glow-small.gif +0 -0
  27. data/vendor/assets/images/shieldui/loading-light-glow.gif +0 -0
  28. data/vendor/assets/images/shieldui/loading-light-gradient-small.gif +0 -0
  29. data/vendor/assets/images/shieldui/loading-light-gradient.gif +0 -0
  30. data/vendor/assets/images/shieldui/loading-light-mint-gradient-small.gif +0 -0
  31. data/vendor/assets/images/shieldui/loading-light-mint-gradient.gif +0 -0
  32. data/vendor/assets/images/shieldui/loading-light-mint-small.gif +0 -0
  33. data/vendor/assets/images/shieldui/loading-light-mint.gif +0 -0
  34. data/vendor/assets/images/shieldui/loading-light-small.gif +0 -0
  35. data/vendor/assets/images/shieldui/loading-light.gif +0 -0
  36. data/vendor/assets/images/shieldui/shieldui-sprite.png +0 -0
  37. data/vendor/assets/images/shieldui/stars.png +0 -0
  38. data/vendor/assets/javascripts/shieldui-all.min.js +38 -0
  39. data/vendor/assets/stylesheets/shield-custom/all.scss +575 -0
  40. data/vendor/assets/stylesheets/themes/_sako_variables.scss +2 -0
  41. data/vendor/assets/stylesheets/themes/sako.scss +5 -0
  42. data/vendor/assets/stylesheets/themes/sako/_bootswatch.scss +150 -0
  43. data/vendor/assets/stylesheets/themes/sako/_journal_variables.scss +910 -0
  44. data/vendor/assets/stylesheets/themes/sako/_variables.scss +4 -0
  45. data/vendor/assets/stylesheets/themes/sako/layout.scss +100 -0
  46. metadata +44 -1
@@ -0,0 +1,2 @@
1
+ @import "sako/journal_variables";
2
+ @import "sako/variables";
@@ -0,0 +1,5 @@
1
+ @import url('https://fonts.googleapis.com/css?family=Roboto');
2
+
3
+ @import 'shield-custom/all';
4
+ @import 'sako/bootswatch';
5
+ @import 'sako/layout';
@@ -0,0 +1,150 @@
1
+ // Journal 3.3.7
2
+ // Bootswatch
3
+ // -----------------------------------------------------
4
+
5
+ $web-font-path: "https://fonts.googleapis.com/css?family=News+Cycle:400,700" !default;
6
+ @import url($web-font-path);
7
+
8
+ // Navbar =====================================================================
9
+
10
+ .navbar {
11
+ font-size: 16px;
12
+ font-family: $font-family-sans-serif;
13
+ font-weight: $headings-font-weight;
14
+
15
+ &-light {
16
+
17
+ .badge {
18
+ background-color: #000;
19
+ color: #fff;
20
+ }
21
+ }
22
+
23
+ &-dark {
24
+
25
+ .badge {
26
+ background-color: #fff;
27
+ color: $navbar-dark-bg;
28
+ }
29
+ }
30
+ }
31
+
32
+ .navbar-brand {
33
+ font-size: inherit;
34
+ font-weight: $headings-font-weight;
35
+ text-transform: uppercase;
36
+ }
37
+
38
+ // Buttons ====================================================================
39
+
40
+ // Typography =================================================================
41
+
42
+ // Tables =====================================================================
43
+
44
+ // Forms ======================================================================
45
+
46
+ .has-warning {
47
+ .help-block,
48
+ .control-label,
49
+ .radio,
50
+ .checkbox,
51
+ .radio-inline,
52
+ .checkbox-inline,
53
+ &.radio label,
54
+ &.checkbox label,
55
+ &.radio-inline label,
56
+ &.checkbox-inline label,
57
+ .form-control-feedback {
58
+ color: $brand-warning;
59
+ }
60
+
61
+ .form-control,
62
+ .form-control:focus {
63
+ border-color: $brand-warning;
64
+ }
65
+ }
66
+
67
+ .has-error {
68
+ .help-block,
69
+ .control-label,
70
+ .radio,
71
+ .checkbox,
72
+ .radio-inline,
73
+ .checkbox-inline,
74
+ &.radio label,
75
+ &.checkbox label,
76
+ &.radio-inline label,
77
+ &.checkbox-inline label,
78
+ .form-control-feedback {
79
+ color: $brand-danger;
80
+ }
81
+
82
+ .form-control,
83
+ .form-control:focus {
84
+ border-color: $brand-danger;
85
+ }
86
+ }
87
+
88
+ .has-success {
89
+ .help-block,
90
+ .control-label,
91
+ .radio,
92
+ .checkbox,
93
+ .radio-inline,
94
+ .checkbox-inline,
95
+ &.radio label,
96
+ &.checkbox label,
97
+ &.radio-inline label,
98
+ &.checkbox-inline label,
99
+ .form-control-feedback {
100
+ color: $brand-success;
101
+ }
102
+
103
+ .form-control,
104
+ .form-control:focus {
105
+ border-color: $brand-success;
106
+ }
107
+ }
108
+
109
+ // Navs =======================================================================
110
+
111
+ // Indicators =================================================================
112
+
113
+ .badge {
114
+ padding-bottom: 4px;
115
+ vertical-align: 3px;
116
+ font-size: 10px;
117
+ }
118
+
119
+ // Progress bars ==============================================================
120
+
121
+ // Containers =================================================================
122
+
123
+ .jumbotron {
124
+
125
+ h1, h2, h3, h4, h5, h6 {
126
+ font-family: $font-family-sans-serif;
127
+ font-weight: $headings-font-weight;
128
+ color: #000;
129
+ }
130
+ }
131
+
132
+ .panel {
133
+
134
+ &-primary,
135
+ &-success,
136
+ &-warning,
137
+ &-danger,
138
+ &-info {
139
+ .panel-title {
140
+ color: #fff;
141
+ }
142
+ }
143
+
144
+
145
+ }
146
+
147
+ .btn-secondary {
148
+ color: $btn-secondary-color;
149
+ background-color: $btn-secondary-bg;
150
+ }
@@ -0,0 +1,910 @@
1
+ $bootstrap-sass-asset-helper: false !default;
2
+ // Journal 3.3.7
3
+ // Variables
4
+ // --------------------------------------------------
5
+
6
+
7
+ //== Colors
8
+ //
9
+ //## Gray and brand colors for use across Bootstrap.
10
+
11
+ $gray-base: #000 !default;
12
+ $gray-darker: lighten($gray-base, 13.5%) !default; // #222
13
+ $gray-dark: lighten($gray-base, 20%) !default; // #333
14
+ $gray: #777 !default; // #555
15
+ $gray-light: lighten($gray-base, 60%) !default; // #999
16
+ $gray-lighter: lighten($gray-base, 80%) !default; // #eee
17
+
18
+ $brand-primary: #EB6864 !default;
19
+ $brand-success: #22B24C !default;
20
+ $brand-info: #369 !default;
21
+ $brand-warning: #F5E625 !default;
22
+ $brand-danger: #F57A00 !default;
23
+
24
+ $theme-colors: (
25
+ primary: $brand-primary,
26
+ secondary: #999999,
27
+ success: $brand-success,
28
+ info: $brand-info,
29
+ warning: $brand-warning,
30
+ danger: $brand-danger,
31
+ light: $gray-light,
32
+ dark: $gray-dark
33
+ );
34
+
35
+ //== Scaffolding
36
+ //
37
+ //## Settings for some of the most global styles.
38
+
39
+ //** Background color for `<body>`.
40
+ $body-bg: #fff !default;
41
+ //** Global text color on `<body>`.
42
+ $text-color: $gray !default;
43
+
44
+ //** Global textual link color.
45
+ $link-color: $brand-primary !default;
46
+ //** Link hover color set via `darken()` function.
47
+ $link-hover-color: darken($link-color, 15%) !default;
48
+ //** Link hover decoration.
49
+ $link-hover-decoration: underline !default;
50
+
51
+
52
+ //== Typography
53
+ //
54
+ //## Font, line-height, and color for body text, headings, and more.
55
+
56
+ $font-family-sans-serif: "News Cycle", "Arial Narrow Bold", sans-serif !default;
57
+ $font-family-serif: Georgia, "Times New Roman", Times, serif !default;
58
+ //** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
59
+ $font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace !default;
60
+ $font-family-base: $font-family-serif !default;
61
+
62
+ $font-size-base: 1rem !default;
63
+ $font-size-lg: ceil(($font-size-base * 1.25)) !default; // ~18px
64
+ $font-size-sm: ceil(($font-size-base * 0.85)) !default; // ~12px
65
+
66
+ $font-size-h1: floor(($font-size-base * 2.6)) !default; // ~36px
67
+ $font-size-h2: floor(($font-size-base * 2.15)) !default; // ~30px
68
+ $font-size-h3: ceil(($font-size-base * 1.7)) !default; // ~24px
69
+ $font-size-h4: ceil(($font-size-base * 1.25)) !default; // ~18px
70
+ $font-size-h5: $font-size-base !default;
71
+ $font-size-h6: ceil(($font-size-base * 0.85)) !default; // ~12px
72
+
73
+ //** Unit-less `line-height` for use in components like buttons.
74
+ $line-height-base: 1.428571429 !default; // 20/14
75
+ //** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
76
+ $line-height-computed: floor(($font-size-base * $line-height-base)) !default; // ~20px
77
+
78
+ //** By default, this inherits from the `<body>`.
79
+ $headings-font-family: $font-family-sans-serif !default;
80
+ $headings-font-weight: 700 !default;
81
+ $headings-line-height: 1.1 !default;
82
+ $headings-color: #000 !default;
83
+
84
+
85
+ //== Iconography
86
+ //
87
+ //## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
88
+
89
+ //** Load fonts from this directory.
90
+ $icon-font-path: if($bootstrap-sass-asset-helper, "bootstrap/", "../fonts/bootstrap/") !default;
91
+ //** File name for all font files.
92
+ $icon-font-name: "glyphicons-halflings-regular" !default;
93
+ //** Element ID within SVG icon file.
94
+ $icon-font-svg-id: "glyphicons_halflingsregular" !default;
95
+
96
+
97
+ //== Components
98
+ //
99
+ //## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
100
+
101
+ $padding-base-vertical: 0.5rem !default;
102
+ $padding-base-horizontal: 0.8rem !default;
103
+
104
+ $padding-large-vertical: 0.9rem !default;
105
+ $padding-large-horizontal: 1rem !default;
106
+
107
+ $padding-small-vertical: 0.3rem !default;
108
+ $padding-small-horizontal: 0.65rem !default;
109
+
110
+ $padding-xs-vertical: 1px !default;
111
+ $padding-xs-horizontal: 5px !default;
112
+
113
+ $line-height-lg: 1.3333333 !default; // extra decimals for Win 8.1 Chrome
114
+ $line-height-sm: 1.5 !default;
115
+
116
+ $border-width: 1px;
117
+
118
+ $border-radius: 0.2rem !default;
119
+ $border-radius-lg: 0.25rem !default;
120
+ $border-radius-sm: 0.15rem !default;
121
+
122
+ //** Global color for active items (e.g., navs or dropdowns).
123
+ $component-active-color: #fff !default;
124
+ //** Global background color for active items (e.g., navs or dropdowns).
125
+ $component-active-bg: $brand-primary !default;
126
+
127
+ //** Width of the `border` for generating carets that indicate dropdowns.
128
+ $caret-width-base: 4px !default;
129
+ //** Carets increase slightly in size for larger components.
130
+ $caret-width-large: 5px !default;
131
+
132
+
133
+ //== Tables
134
+ //
135
+ //## Customizes the `.table` component with basic values, each used across all table variations.
136
+
137
+ //** Padding for `<th>`s and `<td>`s.
138
+ $table-cell-padding: 8px !default;
139
+ //** Padding for cells in `.table-condensed`.
140
+ $table-condensed-cell-padding: 5px !default;
141
+
142
+ //** Default background color used for all tables.
143
+ $table-bg: transparent !default;
144
+ //** Background color used for `.table-striped`.
145
+ $table-bg-accent: #f9f9f9 !default;
146
+ //** Background color used for `.table-hover`.
147
+ $table-bg-hover: #f5f5f5 !default;
148
+ $table-bg-active: $table-bg-hover !default;
149
+
150
+ //** Border color for table and cell borders.
151
+ $table-border-color: #ddd !default;
152
+
153
+
154
+ //== Buttons
155
+ //
156
+ //## For each of Bootstrap's buttons, define text, background and border color.
157
+
158
+ $input-btn-padding-y: .35rem;
159
+ $input-btn-padding-x: .75rem;
160
+ $input-btn-line-height: 1.25;
161
+
162
+ $input-btn-padding-y-sm: .25rem;
163
+ $input-btn-padding-x-sm: .5rem;
164
+ $input-btn-line-height-sm: 1.5;
165
+
166
+ $input-btn-padding-y-lg: .5rem;
167
+ $input-btn-padding-x-lg: 1rem;
168
+ $input-btn-line-height-lg: 1.5;
169
+
170
+ $btn-font-weight: normal !default;
171
+
172
+ $btn-secondary-color: #fff !default;
173
+ $btn-secondary-bg: $gray-light !default;
174
+ $btn-secondary-border: $btn-secondary-bg !default;
175
+
176
+ $btn-primary-color: $btn-secondary-color !default;
177
+ $btn-primary-bg: $brand-primary !default;
178
+ $btn-primary-border: $btn-primary-bg !default;
179
+
180
+ $btn-success-color: $btn-secondary-color !default;
181
+ $btn-success-bg: $brand-success !default;
182
+ $btn-success-border: $btn-success-bg !default;
183
+
184
+ $btn-info-color: $btn-secondary-color !default;
185
+ $btn-info-bg: $brand-info !default;
186
+ $btn-info-border: $btn-info-bg !default;
187
+
188
+ $btn-warning-color: $btn-secondary-color !default;
189
+ $btn-warning-bg: $brand-warning !default;
190
+ $btn-warning-border: $btn-warning-bg !default;
191
+
192
+ $btn-danger-color: $btn-secondary-color !default;
193
+ $btn-danger-bg: $brand-danger !default;
194
+ $btn-danger-border: $btn-danger-bg !default;
195
+
196
+ $btn-link-disabled-color: $gray-light !default;
197
+
198
+ // Allows for customizing button radius independently from global border radius
199
+ $btn-border-radius: $border-radius !default;
200
+ $btn-border-radius-lg: $border-radius-lg !default;
201
+ $btn-border-radius-sm: $border-radius-sm !default;
202
+
203
+
204
+ //== Forms
205
+ //
206
+ //##
207
+
208
+ //** `<input>` background color
209
+ $input-bg: #fff !default;
210
+ //** `<input disabled>` background color
211
+ $input-bg-disabled: $gray-lighter !default;
212
+
213
+ //** Text color for `<input>`s
214
+ $input-color: $text-color !default;
215
+ //** `<input>` border color
216
+ $input-border-color: #ccc !default;
217
+
218
+ $input-btn-border-width: $border-width; // For form controls and buttons
219
+
220
+ // TODO: Rename `$input-border-radius` to `$input-border-radius` in v4
221
+ //** Default `.form-control` border radius
222
+ // This has no effect on `<select>`s in some browsers, due to the limited stylability of `<select>`s in CSS.
223
+ $input-border-radius: $border-radius !default;
224
+ //** Large `.form-control` border radius
225
+ $input-border-radius-lg: $border-radius-lg !default;
226
+ //** Small `.form-control` border radius
227
+ $input-border-radius-sm: $border-radius-sm !default;
228
+
229
+ //** Border color for inputs on focus
230
+ $input-border-focus: #66afe9 !default;
231
+
232
+ //** Placeholder text color
233
+ $input-placeholder-color: $gray-light !default;
234
+
235
+ $input-padding-y: $input-btn-padding-y;
236
+ $input-padding-x: $input-btn-padding-x;
237
+
238
+ $input-padding-y-lg: $input-btn-padding-y-lg;
239
+ $input-padding-x-lg: $input-btn-padding-x-lg;
240
+
241
+ $input-padding-y-sm: $input-btn-padding-y-sm;
242
+ $input-padding-x-sm: $input-btn-padding-x-sm;
243
+
244
+ $input-height-border: $input-btn-border-width * 2;
245
+
246
+ //** Default `.form-control` height
247
+ $input-height-inner: ($font-size-base * $input-btn-line-height) + ($input-btn-padding-y * 2);
248
+ $input-height: calc(#{$input-height-inner} + #{$input-height-border});
249
+
250
+ $input-height-inner-sm: ($font-size-sm * $input-btn-line-height-sm) + ($input-btn-padding-y-sm * 2);
251
+ $input-height-sm: calc(#{$input-height-inner-sm} + #{$input-height-border});
252
+
253
+ $input-height-inner-lg: ($font-size-sm * $input-btn-line-height-lg) + ($input-btn-padding-y-lg * 2);
254
+ $input-height-lg: calc(#{$input-height-inner-lg} + #{$input-height-border});
255
+
256
+ //** `.form-group` margin
257
+ $form-group-margin-bottom: 1rem !default;
258
+
259
+ $legend-color: $text-color !default;
260
+ $legend-border-color: #e5e5e5 !default;
261
+
262
+ //** Background color for textual input addons
263
+ $input-group-addon-bg: $gray-lighter !default;
264
+ //** Border color for textual input addons
265
+ $input-group-addon-border-color: $input-border-color !default;
266
+
267
+ //** Disabled cursor for form controls and buttons.
268
+ $cursor-disabled: not-allowed !default;
269
+
270
+
271
+ //== Dropdowns
272
+ //
273
+ //## Dropdown menu container and contents.
274
+
275
+ //** Background for the dropdown menu.
276
+ $dropdown-bg: #fff !default;
277
+ //** Dropdown menu `border-color`.
278
+ $dropdown-border: rgba(0,0,0,.15) !default;
279
+ //** Dropdown menu `border-color` **for IE8**.
280
+ $dropdown-fallback-border: #ccc !default;
281
+ //** Divider color for between dropdown items.
282
+ $dropdown-divider-bg: #e5e5e5 !default;
283
+
284
+ //** Dropdown link text color.
285
+ $dropdown-link-color: $gray-dark !default;
286
+ //** Hover color for dropdown links.
287
+ $dropdown-link-hover-color: #fff !default;
288
+ //** Hover background for dropdown links.
289
+ $dropdown-link-hover-bg: $component-active-bg !default;
290
+
291
+ //** Active dropdown menu item text color.
292
+ $dropdown-link-active-color: #fff !default;
293
+ //** Active dropdown menu item background color.
294
+ $dropdown-link-active-bg: $component-active-bg !default;
295
+
296
+ //** Disabled dropdown menu item background color.
297
+ $dropdown-link-disabled-color: $gray-light !default;
298
+
299
+ //** Text color for headers within dropdown menus.
300
+ $dropdown-header-color: $gray-light !default;
301
+
302
+ //** Deprecated `$dropdown-caret-color` as of v3.1.0
303
+ $dropdown-caret-color: #000 !default;
304
+
305
+
306
+ //-- Z-index master list
307
+ //
308
+ // Warning: Avoid customizing these values. They're used for a bird's eye view
309
+ // of components dependent on the z-axis and are designed to all work together.
310
+ //
311
+ // Note: These variables are not generated into the Customizer.
312
+
313
+ $zindex-navbar: 1000 !default;
314
+ $zindex-dropdown: 1000 !default;
315
+ $zindex-popover: 1060 !default;
316
+ $zindex-tooltip: 1070 !default;
317
+ $zindex-navbar-fixed: 1030 !default;
318
+ $zindex-modal-background: 1040 !default;
319
+ $zindex-modal: 1050 !default;
320
+
321
+
322
+ //== Media queries breakpoints
323
+ //
324
+ //## Define the breakpoints at which your layout will change, adapting to different screen sizes.
325
+
326
+ // Extra small screen / phone
327
+ //** Deprecated `$screen-xs` as of v3.0.1
328
+ $screen-xs: 480px !default;
329
+ //** Deprecated `$screen-xs-min` as of v3.2.0
330
+ $screen-xs-min: $screen-xs !default;
331
+ //** Deprecated `$screen-phone` as of v3.0.1
332
+ $screen-phone: $screen-xs-min !default;
333
+
334
+ // Small screen / tablet
335
+ //** Deprecated `$screen-sm` as of v3.0.1
336
+ $screen-sm: 768px !default;
337
+ $screen-sm-min: $screen-sm !default;
338
+ //** Deprecated `$screen-tablet` as of v3.0.1
339
+ $screen-tablet: $screen-sm-min !default;
340
+
341
+ // Medium screen / desktop
342
+ //** Deprecated `$screen-md` as of v3.0.1
343
+ $screen-md: 992px !default;
344
+ $screen-md-min: $screen-md !default;
345
+ //** Deprecated `$screen-desktop` as of v3.0.1
346
+ $screen-desktop: $screen-md-min !default;
347
+
348
+ // Large screen / wide desktop
349
+ //** Deprecated `$screen-lg` as of v3.0.1
350
+ $screen-lg: 1200px !default;
351
+ $screen-lg-min: $screen-lg !default;
352
+ //** Deprecated `$screen-lg-desktop` as of v3.0.1
353
+ $screen-lg-desktop: $screen-lg-min !default;
354
+
355
+ // So media queries don't overlap when required, provide a maximum
356
+ $screen-xs-max: ($screen-sm-min - 1) !default;
357
+ $screen-sm-max: ($screen-md-min - 1) !default;
358
+ $screen-md-max: ($screen-lg-min - 1) !default;
359
+
360
+
361
+ //== Grid system
362
+ //
363
+ //## Define your custom responsive grid.
364
+
365
+ //** Number of columns in the grid.
366
+ $grid-columns: 12 !default;
367
+ //** Padding between columns. Gets divided in half for the left and right.
368
+ $grid-gutter-width: 30px !default;
369
+ // Navbar collapse
370
+ //** Point at which the navbar becomes uncollapsed.
371
+ $grid-float-breakpoint: $screen-sm-min !default;
372
+ //** Point at which the navbar begins collapsing.
373
+ $grid-float-breakpoint-max: ($grid-float-breakpoint - 1) !default;
374
+
375
+
376
+ //== Container sizes
377
+ //
378
+ //## Define the maximum width of `.container` for different screen sizes.
379
+
380
+ // Small screen / tablet
381
+ $container-tablet: (720px + $grid-gutter-width) !default;
382
+ //** For `$screen-sm-min` and up.
383
+ $container-sm: $container-tablet !default;
384
+
385
+ // Medium screen / desktop
386
+ $container-desktop: (940px + $grid-gutter-width) !default;
387
+ //** For `$screen-md-min` and up.
388
+ $container-md: $container-desktop !default;
389
+
390
+ // Large screen / wide desktop
391
+ $container-large-desktop: (1140px + $grid-gutter-width) !default;
392
+ //** For `$screen-lg-min` and up.
393
+ $container-lg: $container-large-desktop !default;
394
+
395
+
396
+ //== Navbar
397
+ //
398
+ //##
399
+
400
+ // Basics of a navbar
401
+ $navbar-height: 3.8rem !default;
402
+ $navbar-margin-bottom: $line-height-computed !default;
403
+ $navbar-border-radius: $border-radius !default;
404
+ $navbar-padding-horizontal: floor(($grid-gutter-width / 2)) !default;
405
+ $navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2) !default;
406
+ $navbar-collapse-max-height: 19rem !default;
407
+
408
+ $navbar-light-color: $gray !default;
409
+ $navbar-light-bg: #fff !default;
410
+ $navbar-light-border: darken($navbar-light-bg, 6.5%) !default;
411
+
412
+ // Navbar links
413
+ $navbar-light-link-color: #000 !default;
414
+ $navbar-light-link-hover-color: #000 !default;
415
+ $navbar-light-link-hover-bg: darken($navbar-light-bg, 6.5%) !default;
416
+ $navbar-light-link-active-color: #000 !default;
417
+ $navbar-light-link-active-bg: darken($navbar-light-bg, 6.5%) !default;
418
+ $navbar-light-link-disabled-color: #ccc !default;
419
+ $navbar-light-link-disabled-bg: transparent !default;
420
+
421
+ // Navbar brand label
422
+ $navbar-light-brand-color: $navbar-light-link-color !default;
423
+ $navbar-light-brand-hover-color: $navbar-light-link-hover-color !default;
424
+ $navbar-light-brand-hover-bg: darken($navbar-light-bg, 6.5%) !default;
425
+
426
+ // Navbar toggle
427
+ $navbar-light-toggle-hover-bg: #ddd !default;
428
+ $navbar-light-toggle-icon-bar-bg: #ccc !default;
429
+ $navbar-light-toggle-border-color: #ddd !default;
430
+
431
+
432
+ //=== Inverted navbar
433
+ // Reset inverted navbar basics
434
+ $navbar-dark-color: #fff !default;
435
+ $navbar-dark-bg: $brand-primary !default;
436
+ $navbar-dark-border: darken($navbar-dark-bg, 10%) !default;
437
+
438
+ // Inverted navbar links
439
+ $navbar-dark-link-color: #fff !default;
440
+ $navbar-dark-link-hover-color: #fff !default;
441
+ $navbar-dark-link-hover-bg: darken($navbar-dark-bg, 6.5%) !default;
442
+ $navbar-dark-link-active-color: #fff !default;
443
+ $navbar-dark-link-active-bg: darken($navbar-dark-bg, 6.5%) !default;
444
+ $navbar-dark-link-disabled-color: #444 !default;
445
+ $navbar-dark-link-disabled-bg: transparent !default;
446
+
447
+ // Inverted navbar brand label
448
+ $navbar-dark-brand-color: $navbar-dark-link-color !default;
449
+ $navbar-dark-brand-hover-color: #fff !default;
450
+ $navbar-dark-brand-hover-bg: darken($navbar-dark-bg, 6.5%) !default;
451
+
452
+ // Inverted navbar toggle
453
+ $navbar-dark-toggle-hover-bg: darken($navbar-dark-bg, 10%) !default;
454
+ $navbar-dark-toggle-icon-bar-bg: #fff !default;
455
+ $navbar-dark-toggle-border-color: darken($navbar-dark-bg, 10%) !default;
456
+
457
+
458
+ //== Navs
459
+ //
460
+ //##
461
+
462
+ //=== Shared nav styles
463
+ $nav-link-padding: 10px 15px !default;
464
+ $nav-link-hover-bg: $gray-lighter !default;
465
+
466
+ $nav-disabled-link-color: $gray-light !default;
467
+ $nav-disabled-link-hover-color: $gray-light !default;
468
+
469
+ //== Tabs
470
+ $nav-tabs-border-color: #ddd !default;
471
+
472
+ $nav-tabs-link-hover-border-color: $gray-lighter !default;
473
+
474
+ $nav-tabs-active-link-hover-bg: $body-bg !default;
475
+ $nav-tabs-active-link-hover-color: $gray !default;
476
+ $nav-tabs-active-link-hover-border-color: #ddd !default;
477
+
478
+ $nav-tabs-justified-link-border-color: #ddd !default;
479
+ $nav-tabs-justified-active-link-border-color: $body-bg !default;
480
+
481
+ //== Pills
482
+ $nav-pills-border-radius: $border-radius !default;
483
+ $nav-pills-active-link-hover-bg: $component-active-bg !default;
484
+ $nav-pills-active-link-hover-color: $component-active-color !default;
485
+
486
+
487
+ //== Pagination
488
+ //
489
+ //##
490
+
491
+ $pagination-color: $link-color !default;
492
+ $pagination-bg: #fff !default;
493
+ $pagination-border: #ddd !default;
494
+
495
+ $pagination-hover-color: $link-hover-color !default;
496
+ $pagination-hover-bg: $gray-lighter !default;
497
+ $pagination-hover-border: #ddd !default;
498
+
499
+ $pagination-active-color: $gray-light !default;
500
+ $pagination-active-bg: #f5f5f5 !default;
501
+ $pagination-active-border: #ddd !default;
502
+
503
+ $pagination-disabled-color: $gray-light !default;
504
+ $pagination-disabled-bg: #fff !default;
505
+ $pagination-disabled-border: #ddd !default;
506
+
507
+
508
+ //== Pager
509
+ //
510
+ //##
511
+
512
+ $pager-bg: $pagination-bg !default;
513
+ $pager-border: $pagination-border !default;
514
+ $pager-border-radius: 15px !default;
515
+
516
+ $pager-hover-bg: $pagination-hover-bg !default;
517
+
518
+ $pager-active-bg: $pagination-active-bg !default;
519
+ $pager-active-color: $pagination-active-color !default;
520
+
521
+ $pager-disabled-color: $gray-light !default;
522
+
523
+
524
+ //== Jumbotron
525
+ //
526
+ //##
527
+
528
+ $jumbotron-padding: 30px !default;
529
+ $jumbotron-color: inherit !default;
530
+ $jumbotron-bg: $gray-lighter !default;
531
+ $jumbotron-heading-color: inherit !default;
532
+ $jumbotron-font-size: ceil(($font-size-base * 1.5)) !default;
533
+ $jumbotron-heading-font-size: ceil(($font-size-base * 4.5)) !default;
534
+
535
+
536
+ //== Form states and alerts
537
+ //
538
+ //## Define colors for form feedback states and, by default, alerts.
539
+
540
+ $state-success-text: #468847 !default;
541
+ $state-success-bg: #dff0d8 !default;
542
+ $state-success-border: darken(adjust-hue($state-success-bg, -10), 5%) !default;
543
+
544
+ $state-info-text: #3a87ad !default;
545
+ $state-info-bg: #d9edf7 !default;
546
+ $state-info-border: darken(adjust-hue($state-info-bg, -10), 7%) !default;
547
+
548
+ $state-warning-text: #c09853 !default;
549
+ $state-warning-bg: #fcf8e3 !default;
550
+ $state-warning-border: darken(adjust-hue($state-warning-bg, -10), 3%) !default;
551
+
552
+ $state-danger-text: #b94a48 !default;
553
+ $state-danger-bg: #f2dede !default;
554
+ $state-danger-border: darken(adjust-hue($state-danger-bg, -10), 3%) !default;
555
+
556
+
557
+ //== Tooltips
558
+ //
559
+ //##
560
+
561
+ //** Tooltip max width
562
+ $tooltip-max-width: 200px !default;
563
+ //** Tooltip text color
564
+ $tooltip-color: #fff !default;
565
+ //** Tooltip background color
566
+ $tooltip-bg: #000 !default;
567
+ $tooltip-opacity: .9 !default;
568
+
569
+ //** Tooltip arrow width
570
+ $tooltip-arrow-width: 5px !default;
571
+ //** Tooltip arrow color
572
+ $tooltip-arrow-color: $tooltip-bg !default;
573
+
574
+
575
+ //== Popovers
576
+ //
577
+ //##
578
+
579
+ //** Popover body background color
580
+ $popover-bg: #fff !default;
581
+ //** Popover maximum width
582
+ $popover-max-width: 276px !default;
583
+ //** Popover border color
584
+ $popover-border-color: rgba(0,0,0,.2) !default;
585
+ //** Popover fallback border color
586
+ $popover-fallback-border-color: #ccc !default;
587
+
588
+ //** Popover title background color
589
+ $popover-title-bg: darken($popover-bg, 3%) !default;
590
+
591
+ //** Popover arrow width
592
+ $popover-arrow-width: 10px !default;
593
+ //** Popover arrow color
594
+ $popover-arrow-color: $popover-bg !default;
595
+
596
+ //** Popover outer arrow width
597
+ $popover-arrow-outer-width: ($popover-arrow-width + 1) !default;
598
+ //** Popover outer arrow color
599
+ $popover-arrow-outer-color: fadein($popover-border-color, 5%) !default;
600
+ //** Popover outer arrow fallback color
601
+ $popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%) !default;
602
+
603
+
604
+ //== Labels
605
+ //
606
+ //##
607
+
608
+ //** Default label background color
609
+ $label-secondary-bg: $btn-secondary-bg !default;
610
+ //** Primary label background color
611
+ $label-primary-bg: $brand-primary !default;
612
+ //** Success label background color
613
+ $label-success-bg: $brand-success !default;
614
+ //** Info label background color
615
+ $label-info-bg: $brand-info !default;
616
+ //** Warning label background color
617
+ $label-warning-bg: $brand-warning !default;
618
+ //** Danger label background color
619
+ $label-danger-bg: $brand-danger !default;
620
+
621
+ //** Default label text color
622
+ $label-color: #fff !default;
623
+ //** Default text color of a linked label
624
+ $label-link-hover-color: #fff !default;
625
+
626
+
627
+ //== Modals
628
+ //
629
+ //##
630
+
631
+ //** Padding applied to the modal body
632
+ $modal-inner-padding: 20px !default;
633
+
634
+ //** Padding applied to the modal title
635
+ $modal-title-padding: 15px !default;
636
+ //** Modal title line-height
637
+ $modal-title-line-height: $line-height-base !default;
638
+
639
+ //** Background color of modal content area
640
+ $modal-content-bg: #fff !default;
641
+ //** Modal content border color
642
+ $modal-content-border-color: rgba(0,0,0,.2) !default;
643
+ //** Modal content border color **for IE8**
644
+ $modal-content-fallback-border-color: #999 !default;
645
+
646
+ //** Modal backdrop background color
647
+ $modal-backdrop-bg: #000 !default;
648
+ //** Modal backdrop opacity
649
+ $modal-backdrop-opacity: .5 !default;
650
+ //** Modal header border color
651
+ $modal-header-border-color: #e5e5e5 !default;
652
+ //** Modal footer border color
653
+ $modal-footer-border-color: $modal-header-border-color !default;
654
+
655
+ $modal-lg: 900px !default;
656
+ $modal-md: 600px !default;
657
+ $modal-sm: 300px !default;
658
+
659
+
660
+ //== Alerts
661
+ //
662
+ //## Define alert colors, border radius, and padding.
663
+
664
+ $alert-padding: 15px !default;
665
+ $alert-border-radius: $border-radius !default;
666
+ $alert-link-font-weight: bold !default;
667
+
668
+ $alert-success-bg: $state-success-bg !default;
669
+ $alert-success-text: $state-success-text !default;
670
+ $alert-success-border: $state-success-border !default;
671
+
672
+ $alert-info-bg: $state-info-bg !default;
673
+ $alert-info-text: $state-info-text !default;
674
+ $alert-info-border: $state-info-border !default;
675
+
676
+ $alert-warning-bg: $state-warning-bg !default;
677
+ $alert-warning-text: $state-warning-text !default;
678
+ $alert-warning-border: $state-warning-border !default;
679
+
680
+ $alert-danger-bg: $state-danger-bg !default;
681
+ $alert-danger-text: $state-danger-text !default;
682
+ $alert-danger-border: $state-danger-border !default;
683
+
684
+
685
+ //== Progress bars
686
+ //
687
+ //##
688
+
689
+ //** Background color of the whole progress component
690
+ $progress-bg: #f5f5f5 !default;
691
+ //** Progress bar text color
692
+ $progress-bar-color: #fff !default;
693
+ //** Variable for setting rounded corners on progress bar.
694
+ $progress-border-radius: $border-radius !default;
695
+
696
+ //** Default progress bar color
697
+ $progress-bar-bg: $brand-primary !default;
698
+ //** Success progress bar color
699
+ $progress-bar-success-bg: $brand-success !default;
700
+ //** Warning progress bar color
701
+ $progress-bar-warning-bg: $brand-warning !default;
702
+ //** Danger progress bar color
703
+ $progress-bar-danger-bg: $brand-danger !default;
704
+ //** Info progress bar color
705
+ $progress-bar-info-bg: $brand-info !default;
706
+
707
+
708
+ //== List group
709
+ //
710
+ //##
711
+
712
+ //** Background color on `.list-group-item`
713
+ $list-group-bg: #fff !default;
714
+ //** `.list-group-item` border color
715
+ $list-group-border: #ddd !default;
716
+ //** List group border radius
717
+ $list-group-border-radius: $border-radius !default;
718
+
719
+ //** Background color of single list items on hover
720
+ $list-group-hover-bg: #f5f5f5 !default;
721
+ //** Text color of active list items
722
+ $list-group-active-color: $component-active-color !default;
723
+ //** Background color of active list items
724
+ $list-group-active-bg: $component-active-bg !default;
725
+ //** Border color of active list elements
726
+ $list-group-active-border: $list-group-active-bg !default;
727
+ //** Text color for content within active list items
728
+ $list-group-active-text-color: lighten($list-group-active-bg, 40%) !default;
729
+
730
+ //** Text color of disabled list items
731
+ $list-group-disabled-color: $gray-light !default;
732
+ //** Background color of disabled list items
733
+ $list-group-disabled-bg: $gray-lighter !default;
734
+ //** Text color for content within disabled list items
735
+ $list-group-disabled-text-color: $list-group-disabled-color !default;
736
+
737
+ $list-group-link-color: #555 !default;
738
+ $list-group-link-hover-color: $list-group-link-color !default;
739
+ $list-group-link-heading-color: #333 !default;
740
+
741
+
742
+ //== Panels
743
+ //
744
+ //##
745
+
746
+ $panel-bg: #fff !default;
747
+ $panel-body-padding: 15px !default;
748
+ $panel-heading-padding: 10px 15px !default;
749
+ $panel-footer-padding: $panel-heading-padding !default;
750
+ $panel-border-radius: $border-radius !default;
751
+
752
+ //** Border color for elements within panels
753
+ $panel-inner-border: #ddd !default;
754
+ $panel-footer-bg: #f5f5f5 !default;
755
+
756
+ $panel-default-text: $text-color !default;
757
+ $panel-default-border: #ddd !default;
758
+ $panel-default-heading-bg: #f5f5f5 !default;
759
+
760
+ $panel-primary-text: #fff !default;
761
+ $panel-primary-border: $brand-primary !default;
762
+ $panel-primary-heading-bg: $brand-primary !default;
763
+
764
+ $panel-success-text: $state-success-text !default;
765
+ $panel-success-border: $brand-success !default;
766
+ $panel-success-heading-bg: $brand-success !default;
767
+
768
+ $panel-info-text: $state-info-text !default;
769
+ $panel-info-border: $brand-info !default;
770
+ $panel-info-heading-bg: $brand-info !default;
771
+
772
+ $panel-warning-text: $state-warning-text !default;
773
+ $panel-warning-border: $brand-warning !default;
774
+ $panel-warning-heading-bg: $brand-warning !default;
775
+
776
+ $panel-danger-text: $state-danger-text !default;
777
+ $panel-danger-border: $brand-danger !default;
778
+ $panel-danger-heading-bg: $brand-danger !default;
779
+
780
+
781
+ //== Thumbnails
782
+ //
783
+ //##
784
+
785
+ //** Padding around the thumbnail image
786
+ $thumbnail-padding: 4px !default;
787
+ //** Thumbnail background color
788
+ $thumbnail-bg: $body-bg !default;
789
+ //** Thumbnail border color
790
+ $thumbnail-border: #ddd !default;
791
+ //** Thumbnail border radius
792
+ $thumbnail-border-radius: $border-radius !default;
793
+
794
+ //** Custom text color for thumbnail captions
795
+ $thumbnail-caption-color: $text-color !default;
796
+ //** Padding around the thumbnail caption
797
+ $thumbnail-caption-padding: 9px !default;
798
+
799
+
800
+ //== Wells
801
+ //
802
+ //##
803
+
804
+ $well-bg: #f5f5f5 !default;
805
+ $well-border: darken($well-bg, 7%) !default;
806
+
807
+
808
+ //== Badges
809
+ //
810
+ //##
811
+
812
+ $badge-color: #fff !default;
813
+ //** Linked badge text color on hover
814
+ $badge-link-hover-color: #fff !default;
815
+ $badge-bg: $link-color !default;
816
+
817
+ //** Badge text color in active nav link
818
+ $badge-active-color: $link-color !default;
819
+ //** Badge background color in active nav link
820
+ $badge-active-bg: #fff !default;
821
+
822
+ $badge-font-weight: bold !default;
823
+ $badge-line-height: 1 !default;
824
+ $badge-border-radius: 10px !default;
825
+
826
+
827
+ //== Breadcrumbs
828
+ //
829
+ //##
830
+
831
+ $breadcrumb-padding-vertical: 8px !default;
832
+ $breadcrumb-padding-horizontal: 15px !default;
833
+ //** Breadcrumb background color
834
+ $breadcrumb-bg: #f5f5f5 !default;
835
+ //** Breadcrumb text color
836
+ $breadcrumb-color: #ccc !default;
837
+ //** Text color of current page in the breadcrumb
838
+ $breadcrumb-active-color: $gray-light !default;
839
+ //** Textual separator for between breadcrumb elements
840
+ $breadcrumb-separator: "/" !default;
841
+
842
+
843
+ //== Carousel
844
+ //
845
+ //##
846
+
847
+ $carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6) !default;
848
+
849
+ $carousel-control-color: #fff !default;
850
+ $carousel-control-width: 15% !default;
851
+ $carousel-control-opacity: .5 !default;
852
+ $carousel-control-font-size: 20px !default;
853
+
854
+ $carousel-indicator-active-bg: #fff !default;
855
+ $carousel-indicator-border-color: #fff !default;
856
+
857
+ $carousel-caption-color: #fff !default;
858
+
859
+
860
+ //== Close
861
+ //
862
+ //##
863
+
864
+ $close-font-weight: bold !default;
865
+ $close-color: #000 !default;
866
+ $close-text-shadow: 0 1px 0 #fff !default;
867
+
868
+
869
+ //== Code
870
+ //
871
+ //##
872
+
873
+ $code-color: #c7254e !default;
874
+ $code-bg: #f9f2f4 !default;
875
+
876
+ $kbd-color: #fff !default;
877
+ $kbd-bg: #333 !default;
878
+
879
+ $pre-bg: #f5f5f5 !default;
880
+ $pre-color: $gray-dark !default;
881
+ $pre-border-color: #ccc !default;
882
+ $pre-scrollable-max-height: 340px !default;
883
+
884
+
885
+ //== Type
886
+ //
887
+ //##
888
+
889
+ //** Horizontal offset for forms and lists.
890
+ $component-offset-horizontal: 180px !default;
891
+ //** Text muted color
892
+ $text-muted: $gray-light !default;
893
+ //** Abbreviations and acronyms border color
894
+ $abbr-border-color: $gray-light !default;
895
+ //** Headings small color
896
+ $headings-small-color: $gray-light !default;
897
+ //** Blockquote small color
898
+ $blockquote-small-color: $gray-light !default;
899
+ //** Blockquote font size
900
+ $blockquote-font-size: ($font-size-base * 1.25) !default;
901
+ //** Blockquote border color
902
+ $blockquote-border-color: $gray-lighter !default;
903
+ //** Page header border color
904
+ $page-header-border-color: $gray-lighter !default;
905
+ //** Width of horizontal description list titles
906
+ $dl-horizontal-offset: $component-offset-horizontal !default;
907
+ //** Point at which .dl-horizontal becomes horizontal
908
+ $dl-horizontal-breakpoint: $grid-float-breakpoint !default;
909
+ //** Horizontal line color.
910
+ $hr-border: $gray-lighter !default;