flexa_lib 0.1.3 → 0.1.5

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.
Files changed (59) hide show
  1. data/lib/flexa_lib/version.rb +1 -1
  2. data/vendor/assets/images/glyphicons-halflings-white.png +0 -0
  3. data/vendor/assets/images/glyphicons-halflings.png +0 -0
  4. data/vendor/assets/javascripts/bootstrap-alert.js +94 -0
  5. data/vendor/assets/javascripts/bootstrap-button.js +98 -0
  6. data/vendor/assets/javascripts/bootstrap-carousel.js +157 -0
  7. data/vendor/assets/javascripts/bootstrap-collapse.js +136 -0
  8. data/vendor/assets/javascripts/bootstrap-dropdown.js +92 -0
  9. data/vendor/assets/javascripts/bootstrap-modal.js +210 -0
  10. data/vendor/assets/javascripts/bootstrap-popover.js +95 -0
  11. data/vendor/assets/javascripts/bootstrap-scrollspy.js +125 -0
  12. data/vendor/assets/javascripts/bootstrap-tab.js +130 -0
  13. data/vendor/assets/javascripts/bootstrap-tooltip.js +270 -0
  14. data/vendor/assets/javascripts/bootstrap-transition.js +51 -0
  15. data/vendor/assets/javascripts/bootstrap-typeahead.js +271 -0
  16. data/vendor/assets/javascripts/bootstrap.js +12 -0
  17. data/vendor/assets/javascripts/flexa-themejs.js +94 -0
  18. data/vendor/assets/javascripts/jquery.cookie.js +96 -0
  19. data/vendor/assets/javascripts/jquery.pjax.js +460 -0
  20. data/vendor/assets/javascripts/populate.js +272 -0
  21. data/vendor/assets/stylesheets/_bootstrap-responsive.scss +318 -0
  22. data/vendor/assets/stylesheets/_bootstrap.scss +63 -0
  23. data/vendor/assets/stylesheets/bootstrap/_accordion.scss +28 -0
  24. data/vendor/assets/stylesheets/bootstrap/_alerts.scss +62 -0
  25. data/vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss +22 -0
  26. data/vendor/assets/stylesheets/bootstrap/_button-groups.scss +136 -0
  27. data/vendor/assets/stylesheets/bootstrap/_buttons.scss +163 -0
  28. data/vendor/assets/stylesheets/bootstrap/_carousel.scss +116 -0
  29. data/vendor/assets/stylesheets/bootstrap/_close.scss +18 -0
  30. data/vendor/assets/stylesheets/bootstrap/_code.scss +56 -0
  31. data/vendor/assets/stylesheets/bootstrap/_component-animations.scss +18 -0
  32. data/vendor/assets/stylesheets/bootstrap/_dropdowns.scss +126 -0
  33. data/vendor/assets/stylesheets/bootstrap/_forms.scss +463 -0
  34. data/vendor/assets/stylesheets/bootstrap/_grid.scss +8 -0
  35. data/vendor/assets/stylesheets/bootstrap/_hero-unit.scss +20 -0
  36. data/vendor/assets/stylesheets/bootstrap/_labels.scss +32 -0
  37. data/vendor/assets/stylesheets/bootstrap/_layouts.scss +17 -0
  38. data/vendor/assets/stylesheets/bootstrap/_mixins.scss +530 -0
  39. data/vendor/assets/stylesheets/bootstrap/_modals.scss +83 -0
  40. data/vendor/assets/stylesheets/bootstrap/_navbar.scss +288 -0
  41. data/vendor/assets/stylesheets/bootstrap/_navs.scss +329 -0
  42. data/vendor/assets/stylesheets/bootstrap/_pager.scss +30 -0
  43. data/vendor/assets/stylesheets/bootstrap/_pagination.scss +53 -0
  44. data/vendor/assets/stylesheets/bootstrap/_popovers.scss +49 -0
  45. data/vendor/assets/stylesheets/bootstrap/_progress-bars.scss +95 -0
  46. data/vendor/assets/stylesheets/bootstrap/_reset.scss +105 -0
  47. data/vendor/assets/stylesheets/bootstrap/_scaffolding.scss +29 -0
  48. data/vendor/assets/stylesheets/bootstrap/_sprites.scss +157 -0
  49. data/vendor/assets/stylesheets/bootstrap/_tables.scss +126 -0
  50. data/vendor/assets/stylesheets/bootstrap/_thumbnails.scss +35 -0
  51. data/vendor/assets/stylesheets/bootstrap/_tooltip.scss +35 -0
  52. data/vendor/assets/stylesheets/bootstrap/_type.scss +209 -0
  53. data/vendor/assets/stylesheets/bootstrap/_utilities.scss +23 -0
  54. data/vendor/assets/stylesheets/bootstrap/_variables.scss +103 -0
  55. data/vendor/assets/stylesheets/bootstrap/_wells.scss +17 -0
  56. data/vendor/assets/stylesheets/docs.css.scss +790 -0
  57. data/vendor/assets/stylesheets/flexa-theme.css.scss +32 -0
  58. data/vendor/assets/stylesheets/override.css.scss +77 -0
  59. metadata +60 -3
@@ -0,0 +1,209 @@
1
+ // Typography.less
2
+ // Headings, body text, lists, code, and more for a versatile and durable typography system
3
+ // ----------------------------------------------------------------------------------------
4
+
5
+
6
+ // BODY TEXT
7
+ // ---------
8
+
9
+ p {
10
+ margin: 0 0 $baseLineHeight / 2;
11
+ font-family: $baseFontFamily;
12
+ font-size: $baseFontSize;
13
+ line-height: $baseLineHeight;
14
+ small {
15
+ font-size: $baseFontSize - 2;
16
+ color: $grayLight;
17
+ }
18
+ }
19
+ .lead {
20
+ margin-bottom: $baseLineHeight;
21
+ font-size: 20px;
22
+ font-weight: 200;
23
+ line-height: $baseLineHeight * 1.5;
24
+ }
25
+
26
+ // HEADINGS
27
+ // --------
28
+
29
+ h1, h2, h3, h4, h5, h6 {
30
+ margin: 0;
31
+ font-weight: bold;
32
+ color: $grayDark;
33
+ text-rendering: optimizelegibility; // Fix the character spacing for headings
34
+ small {
35
+ font-weight: normal;
36
+ color: $grayLight;
37
+ }
38
+ }
39
+ h1 {
40
+ font-size: 30px;
41
+ line-height: $baseLineHeight * 2;
42
+ small {
43
+ font-size: 18px;
44
+ }
45
+ }
46
+ h2 {
47
+ font-size: 24px;
48
+ line-height: $baseLineHeight * 2;
49
+ small {
50
+ font-size: 18px;
51
+ }
52
+ }
53
+ h3 {
54
+ line-height: $baseLineHeight * 1.5;
55
+ font-size: 18px;
56
+ small {
57
+ font-size: 14px;
58
+ }
59
+ }
60
+ h4, h5, h6 {
61
+ line-height: $baseLineHeight;
62
+ }
63
+ h4 {
64
+ font-size: 14px;
65
+ small {
66
+ font-size: 12px;
67
+ }
68
+ }
69
+ h5 {
70
+ font-size: 12px;
71
+ }
72
+ h6 {
73
+ font-size: 11px;
74
+ color: $grayLight;
75
+ text-transform: uppercase;
76
+ }
77
+
78
+ // Page header
79
+ .page-header {
80
+ padding-bottom: $baseLineHeight - 1;
81
+ margin: $baseLineHeight 0;
82
+ border-bottom: 1px solid $grayLighter;
83
+ }
84
+ .page-header h1 {
85
+ line-height: 1;
86
+ }
87
+
88
+
89
+
90
+ // LISTS
91
+ // -----
92
+
93
+ // Unordered and Ordered lists
94
+ ul, ol {
95
+ padding: 0;
96
+ margin: 0 0 $baseLineHeight / 2 25px;
97
+ }
98
+ ul ul, ul ol, ol ol, ol ul {
99
+ margin-bottom: 0;
100
+ }
101
+ ul {
102
+ list-style: disc;
103
+ }
104
+ ol {
105
+ list-style: decimal;
106
+ }
107
+ li {
108
+ line-height: $baseLineHeight;
109
+ }
110
+ ul.unstyled, ol.unstyled {
111
+ margin-left: 0;
112
+ list-style: none;
113
+ }
114
+
115
+ // Description Lists
116
+ dl {
117
+ margin-bottom: $baseLineHeight;
118
+ }
119
+ dt, dd {
120
+ line-height: $baseLineHeight;
121
+ }
122
+ dt {
123
+ font-weight: bold;
124
+ }
125
+ dd {
126
+ margin-left: $baseLineHeight / 2;
127
+ }
128
+
129
+ // MISC
130
+ // ----
131
+
132
+ // Horizontal rules
133
+ hr {
134
+ margin: $baseLineHeight 0;
135
+ border: 0;
136
+ border-top: 1px solid $hrBorder;
137
+ border-bottom: 1px solid $white;
138
+ }
139
+
140
+ // Emphasis
141
+ strong {
142
+ font-weight: bold;
143
+ }
144
+ em {
145
+ font-style: italic;
146
+ }
147
+ .muted {
148
+ color: $grayLight;
149
+ }
150
+
151
+ // Abbreviations and acronyms
152
+ abbr {
153
+ font-size: 90%;
154
+ text-transform: uppercase;
155
+ border-bottom: 1px dotted #ddd;
156
+ cursor: help;
157
+ }
158
+
159
+ // Blockquotes
160
+ blockquote {
161
+ padding: 0 0 0 15px;
162
+ margin: 0 0 $baseLineHeight;
163
+ border-left: 5px solid $grayLighter;
164
+ p {
165
+ margin-bottom: 0;
166
+ @include font-shorthand(16px,300,$baseLineHeight * 1.25);
167
+ }
168
+ small {
169
+ display: block;
170
+ line-height: $baseLineHeight;
171
+ color: $grayLight;
172
+ &:before {
173
+ content: '\2014 \00A0';
174
+ }
175
+ }
176
+
177
+ // Float right with text-align: right
178
+ &.pull-right {
179
+ float: right;
180
+ padding-left: 0;
181
+ padding-right: 15px;
182
+ border-left: 0;
183
+ border-right: 5px solid $grayLighter;
184
+ p, small {
185
+ text-align: right;
186
+ }
187
+ }
188
+ }
189
+
190
+ // Quotes
191
+ q:before, q:after, blockquote:before, blockquote:after {
192
+ content: "";
193
+ }
194
+
195
+ // Addresses
196
+ address {
197
+ display: block;
198
+ margin-bottom: $baseLineHeight;
199
+ line-height: $baseLineHeight;
200
+ font-style: normal;
201
+ }
202
+
203
+ // Misc
204
+ small {
205
+ font-size: 100%;
206
+ }
207
+ cite {
208
+ font-style: normal;
209
+ }
@@ -0,0 +1,23 @@
1
+ // UTILITY CLASSES
2
+ // ---------------
3
+
4
+ // Quick floats
5
+ .pull-right {
6
+ float: right;
7
+ }
8
+ .pull-left {
9
+ float: left;
10
+ }
11
+
12
+ // Toggling content
13
+ .hide {
14
+ display: none;
15
+ }
16
+ .show {
17
+ display: block;
18
+ }
19
+
20
+ // Visibility
21
+ .invisible {
22
+ visibility: hidden;
23
+ }
@@ -0,0 +1,103 @@
1
+ // Variables.less
2
+ // Variables to customize the look and feel of Bootstrap
3
+ // -----------------------------------------------------
4
+
5
+
6
+
7
+ // GLOBAL VALUES
8
+ // --------------------------------------------------
9
+
10
+ // Links
11
+ $linkColor: #08c !default;
12
+ $linkColorHover: darken($linkColor, 15%) !default;
13
+
14
+ // Grays
15
+ $black: #000 !default;
16
+ $grayDarker: #222 !default;
17
+ $grayDark: #333 !default;
18
+ $gray: #555 !default;
19
+ $grayLight: #999 !default;
20
+ $grayLighter: #eee !default;
21
+ $white: #fff !default;
22
+
23
+ // Accent colors
24
+ $blue: #049cdb !default;
25
+ $blueDark: #0064cd !default;
26
+ $green: #46a546 !default;
27
+ $red: #9d261d !default;
28
+ $yellow: #ffc40d !default;
29
+ $orange: #f89406 !default;
30
+ $pink: #c3325f !default;
31
+ $purple: #7a43b6 !default;
32
+
33
+ // Typography
34
+ $baseFontSize: 13px !default;
35
+ $baseFontFamily: "Helvetica Neue", Helvetica, Arial, sans-serif !default;
36
+ $baseLineHeight: 18px !default;
37
+ $textColor: $grayDark !default;
38
+
39
+ // Buttons
40
+ $primaryButtonBackground: $linkColor !default;
41
+
42
+
43
+
44
+ // COMPONENT VARIABLES
45
+ // --------------------------------------------------
46
+
47
+ // Z-index master list
48
+ // Used for a bird's eye view of components dependent on the z-axis
49
+ // Try to avoid customizing these :)
50
+ $zindexDropdown: 1000;
51
+ $zindexPopover: 1010;
52
+ $zindexTooltip: 1020;
53
+ $zindexFixedNavbar: 1030;
54
+ $zindexModalBackdrop: 1040;
55
+ $zindexModal: 1050;
56
+
57
+ // Input placeholder text color
58
+ $placeholderText: $grayLight !default;
59
+
60
+ // HR border color
61
+ $hrBorder: $grayLighter !default;
62
+
63
+ // Navbar
64
+ $navbarHeight: 40px !default;
65
+ $navbarBackground: $grayDarker !default;
66
+ $navbarBackgroundHighlight: $grayDark !default;
67
+ $navbarLinkBackgroundHover: transparent !default;
68
+
69
+ $navbarText: $grayLight !default;
70
+ $navbarLinkColor: $grayLight !default;
71
+ $navbarLinkColorHover: $white !default;
72
+
73
+ // Form states and alerts
74
+ $warningText: #c09853 !default;
75
+ $warningBackground: #fcf8e3 !default;
76
+ $warningBorder: darken(adjust-hue($warningBackground, -10), 3%) !default;
77
+
78
+ $errorText: #b94a48 !default;
79
+ $errorBackground: #f2dede !default;
80
+ $errorBorder: darken(adjust-hue($errorBackground, -10), 3%) !default;
81
+
82
+ $successText: #468847 !default;
83
+ $successBackground: #dff0d8 !default;
84
+ $successBorder: darken(adjust-hue($successBackground, -10), 5%) !default;
85
+
86
+ $infoText: #3a87ad !default;
87
+ $infoBackground: #d9edf7 !default;
88
+ $infoBorder: darken(adjust-hue($infoBackground, -10), 7%) !default;
89
+
90
+
91
+
92
+ // GRID
93
+ // --------------------------------------------------
94
+
95
+ // Default 940px grid
96
+ $gridColumns: 12 !default;
97
+ $gridColumnWidth: 60px !default;
98
+ $gridGutterWidth: 20px !default;
99
+ $gridRowWidth: ($gridColumns * $gridColumnWidth) + ($gridGutterWidth * ($gridColumns - 1)) !default;
100
+
101
+ // Fluid grid
102
+ $fluidGridColumnWidth: 6.382978723% !default;
103
+ $fluidGridGutterWidth: 2.127659574% !default;
@@ -0,0 +1,17 @@
1
+ // WELLS
2
+ // -----
3
+
4
+ .well {
5
+ min-height: 20px;
6
+ padding: 19px;
7
+ margin-bottom: 20px;
8
+ background-color: #f5f5f5;
9
+ border: 1px solid #eee;
10
+ border: 1px solid rgba(0,0,0,.05);
11
+ @include border-radius(4px);
12
+ @include box-shadow(inset 0 1px 1px rgba(0,0,0,.05));
13
+ blockquote {
14
+ border-color: #ddd;
15
+ border-color: rgba(0,0,0,.15);
16
+ }
17
+ }