faalis 1.0.0.alpha0 → 1.0.0.alpha1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (121) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +44 -22
  3. data/Rakefile +1 -0
  4. data/app/assets/javascripts/faalis/angular-manifest.js +1 -0
  5. data/app/assets/javascripts/faalis/dashboard/app.js +4 -3
  6. data/app/assets/javascripts/faalis/dashboard/application.js.erb +0 -1
  7. data/app/assets/javascripts/faalis/dashboard/functions.js.erb +5 -7
  8. data/app/assets/javascripts/faalis/dashboard/init.js +1 -2
  9. data/app/assets/javascripts/faalis/dashboard/modules/fields/datetime.js +5 -3
  10. data/app/assets/javascripts/faalis/dashboard/modules/fields/image.js +46 -105
  11. data/app/assets/javascripts/faalis/dashboard/modules/services/upload_service.js +17 -0
  12. data/app/assets/javascripts/faalis/dashboard/variables.js.erb +1 -1
  13. data/app/assets/javascripts/faalis/{locale → locales}/en.json +0 -0
  14. data/app/assets/javascripts/faalis/{locale → locales}/fa.json +0 -0
  15. data/app/assets/javascripts/faalis/locales/translations.fa.js +4 -0
  16. data/app/assets/locale/templates.fa.pot +275 -0
  17. data/app/assets/locale/templates.pot +0 -8
  18. data/app/controllers/faalis/#api_controller.rb# +51 -0
  19. data/app/controllers/faalis/#dashboard_controller.rb# +65 -0
  20. data/app/controllers/faalis/application_controller.rb +9 -10
  21. data/app/controllers/faalis/dashboard_controller.rb +2 -2
  22. data/app/models/faalis/user.rb +11 -11
  23. data/app/models/faalis/user/auth_definitions.rb +2 -14
  24. data/app/models/faalis/user/mongoid_fields.rb +0 -1
  25. data/app/views/angularjs_templates/fields/datetime/datetime.html +7 -1
  26. data/app/views/angularjs_templates/fields/image/image.html +1 -1
  27. data/app/views/angularjs_templates/index.html +1 -6
  28. data/app/views/angularjs_templates/modules.html +1 -1
  29. data/app/views/devise/registrations/new.html.erb +5 -1
  30. data/app/views/devise/sessions/new.html.erb +17 -16
  31. data/app/views/devise/shared/_links.erb +8 -6
  32. data/app/views/layouts/faalis/application.html.erb +0 -4
  33. data/app/views/layouts/faalis/dashboard.html.erb +2 -2
  34. data/app/views/layouts/faalis/simple.html.erb +18 -20
  35. data/config/locales/fa/LC_MESSAGES/faalis.mo +0 -0
  36. data/config/locales/fa/faalis.edit.mo +0 -0
  37. data/config/locales/fa/faalis.edit.po +104 -0
  38. data/config/locales/fa/faalis.mo +0 -0
  39. data/config/locales/fa/faalis.po +29 -108
  40. data/{app/controllers/faalis/#1.sh# → config/locales/fa/faalis.po.time_stamp} +0 -0
  41. data/config/locales/faalis.pot +10 -88
  42. data/config/routes.rb +16 -3
  43. data/lib/faalis.rb +1 -0
  44. data/lib/faalis/discovery/permissions.rb +10 -3
  45. data/lib/faalis/engine.rb +21 -0
  46. data/lib/faalis/generators/concerns.rb +2 -0
  47. data/lib/faalis/generators/concerns/allow_query_on.rb +8 -12
  48. data/lib/faalis/generators/concerns/angular.rb +4 -5
  49. data/lib/faalis/generators/concerns/child.rb +31 -0
  50. data/lib/faalis/generators/concerns/fieldset.rb +2 -2
  51. data/lib/faalis/generators/concerns/globalize.rb +14 -0
  52. data/lib/faalis/generators/concerns/hstore.rb +19 -0
  53. data/lib/faalis/generators/concerns/model.rb +3 -3
  54. data/lib/faalis/generators/concerns/parent.rb +4 -6
  55. data/lib/faalis/generators/concerns/required.rb +2 -1
  56. data/lib/faalis/generators/concerns/resource_name.rb +1 -0
  57. data/lib/faalis/generators/concerns/tabs.rb +4 -7
  58. data/lib/faalis/generators/concerns/where.rb +1 -3
  59. data/lib/faalis/generators/dashboard_scaffold.rb +2 -0
  60. data/lib/faalis/generators/fields/#relation.rb# +61 -0
  61. data/lib/faalis/i18n.rb +6 -1
  62. data/lib/faalis/middlewares.rb +1 -0
  63. data/lib/faalis/middlewares/locale.rb +29 -0
  64. data/lib/faalis/route.rb +12 -19
  65. data/lib/faalis/version.rb +1 -1
  66. data/lib/generators/faalis/install_all_generator.rb +5 -3
  67. data/lib/generators/faalis/install_generator.rb +4 -0
  68. data/lib/generators/faalis/js/install_i18n_generator.rb +1 -1
  69. data/lib/generators/faalis/scaffold_generator.rb +72 -25
  70. data/lib/generators/faalis/templates/i18n/Gruntfile.js.erb +2 -2
  71. data/lib/generators/faalis/templates/i18n/fa.js +2 -2
  72. data/lib/generators/faalis/templates/js/list_view/details.html.erb +26 -3
  73. data/lib/generators/faalis/templates/views/create.json.jbuilder.erb +2 -1
  74. data/lib/generators/faalis/templates/views/index.json.jbuilder.erb +4 -2
  75. data/lib/generators/faalis/templates/views/show.json.jbuilder.erb +2 -1
  76. data/lib/generators/faalis/templates/views/update.json.jbuilder.erb +2 -1
  77. data/lib/tasks/faalis_tasks.rake +25 -27
  78. data/lib/tasks/grunt/Gruntfile.js +2 -2
  79. data/lib/tasks/sync.rake +3 -4
  80. metadata +43 -90
  81. data/app/assets/javascripts/faalis/dashboard/modules/list-view.js +0 -341
  82. data/app/assets/javascripts/faalis/dashboard/modules/modules.js +0 -75
  83. data/app/assets/javascripts/faalis/dashboard/modules/nav.js.erb +0 -78
  84. data/app/assets/stylesheets/faalis/base.css.scss +0 -334
  85. data/app/assets/stylesheets/faalis/dashboard/dashboard.css.scss +0 -246
  86. data/app/assets/stylesheets/faalis/dashboard/list_view.css.scss +0 -169
  87. data/app/assets/stylesheets/faalis/dashboard/ltr/application.css +0 -29
  88. data/app/assets/stylesheets/faalis/dashboard/ltr/base.css.scss.erb +0 -33
  89. data/app/assets/stylesheets/faalis/dashboard/ltr/buttons.css.scss.erb +0 -55
  90. data/app/assets/stylesheets/faalis/dashboard/ltr/direction.css.scss +0 -38
  91. data/app/assets/stylesheets/faalis/dashboard/ltr/foundation_and_overrides.css.scss +0 -1261
  92. data/app/assets/stylesheets/faalis/dashboard/ltr/time.css.scss +0 -58
  93. data/app/assets/stylesheets/faalis/dashboard/rtl/application.css +0 -27
  94. data/app/assets/stylesheets/faalis/dashboard/rtl/base.css.scss.erb +0 -35
  95. data/app/assets/stylesheets/faalis/dashboard/rtl/buttons.css.scss.erb +0 -45
  96. data/app/assets/stylesheets/faalis/dashboard/rtl/direction.css.scss +0 -37
  97. data/app/assets/stylesheets/faalis/dashboard/rtl/foundation_and_overrides.css.scss +0 -1264
  98. data/app/assets/stylesheets/faalis/dashboard/share/time.css.scss +0 -57
  99. data/app/assets/stylesheets/faalis/dashboard/sidebar.css.scss +0 -93
  100. data/app/assets/stylesheets/faalis/devise.css.scss +0 -34
  101. data/app/assets/stylesheets/faalis/groups.css +0 -4
  102. data/app/assets/stylesheets/faalis/home.css.scss +0 -14
  103. data/app/assets/stylesheets/faalis/ltr/application.css +0 -20
  104. data/app/assets/stylesheets/faalis/ltr/buttons.css.scss.erb +0 -45
  105. data/app/assets/stylesheets/faalis/ltr/foundation_and_overrides.scss +0 -1258
  106. data/app/assets/stylesheets/faalis/mixins.css.scss +0 -15
  107. data/app/assets/stylesheets/faalis/rtl/application.css +0 -20
  108. data/app/assets/stylesheets/faalis/rtl/buttons.css.scss.erb +0 -50
  109. data/app/assets/stylesheets/faalis/rtl/foundation_and_overrides.css.scss +0 -1264
  110. data/app/assets/stylesheets/faalis/users.css +0 -4
  111. data/app/assets/stylesheets/faalis/variables.css.scss +0 -102
  112. data/app/controllers/faalis/api/v1/workflows_controller.rb +0 -18
  113. data/app/views/angularjs_templates/list-view/index.html +0 -82
  114. data/app/views/faalis/api/v1/workflows/index.json.jbuilder +0 -5
  115. data/app/workflows/faalis/administration_workflow.rb +0 -7
  116. data/spec/dummy/log/development.log +0 -0
  117. data/spec/dummy/log/test.log +0 -15
  118. data/spec/dummy/tmp/ember-rails/ember-data.js +0 -10204
  119. data/spec/dummy/tmp/ember-rails/ember.js +0 -36991
  120. data/spec/factories/faalis_workflows.rb +0 -7
  121. data/spec/models/faalis/workflow_spec.rb +0 -7
@@ -1,15 +0,0 @@
1
- @mixin transition ($a) {
2
- transition: $a;
3
- -moz-transition: $a;
4
- -webkit-transition: $a;
5
- -o-transition: $a;
6
- -ms-transition: $a;
7
- }
8
-
9
- @mixin box-shadow ($a) {
10
- box-shadow: $a;
11
- -moz-box-shadow: $a;
12
- -webkit-box-shadow: $a;
13
- -o-box-shadow: $a;
14
- -ms-box-shadowb: $a;
15
- }
@@ -1,20 +0,0 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the top of the
9
- * compiled file, but it's generally better to create a new file per style scope.
10
- *
11
-
12
- *= require faalis/variables
13
- *= require faalis/base
14
- *= require faalis/devise
15
- *= require faalis/home
16
- *= require font-awesome
17
- *= require faalis/rtl/buttons
18
- *= require faalis/rtl/foundation_and_overrides
19
- *= require_self
20
- */
@@ -1,50 +0,0 @@
1
- @import "faalis/variables";
2
- @import "faalis/rtl/foundation_and_overrides";
3
-
4
- .btn {
5
- @include button-base;
6
- @include single-transition;
7
-
8
- &.green {
9
- @include button-style($emerald, $border-radius, false);
10
- color: white;
11
- }
12
-
13
- &.blue {
14
- @include button-style($peter_river, $border-radius, false);
15
- color: white;
16
- }
17
-
18
- &.red {
19
- @include button-style($alizarin, $border-radius, false);
20
- color: white;
21
- }
22
-
23
- &.yellow {
24
- @include button-style($sun_flower, $border-radius, false);
25
- }
26
- &.lightgray {
27
- @include button-style($lightgray, $border-radius, false);
28
- }
29
- &.lightergray {
30
- @include button-style($lightergray, $border-radius, false);
31
- }
32
-
33
- }
34
-
35
- .tiny {
36
- @include button-size($button-tny, false);
37
- }
38
-
39
- .small {
40
- @include button-size($button-sml, false);
41
- }
42
-
43
- .medium {
44
- @include button-size($button-med, false);
45
- }
46
-
47
- .field-label {
48
- @include form-label;
49
- background: #444;
50
- }
@@ -1,1264 +0,0 @@
1
- @import "faalis/variables";
2
- // Foundation by ZURB
3
- // foundation.zurb.com
4
- // Licensed under MIT Open Source
5
-
6
- //
7
- // FOUNDATION SETTINGS
8
- //
9
-
10
- // This is the default html and body font-size for the base rem value.
11
- // $rem-base: 16px;
12
-
13
- // Allows the use of rem-calc() or lower-bound() in your settings
14
- @import "foundation/functions";
15
-
16
- // $experimental: true;
17
-
18
- // The default font-size is set to 100% of the browser style sheet (usually 16px)
19
- // for compatibility with browser-based text zoom or user-set defaults.
20
-
21
- // Since the typical default browser font-size is 16px, that makes the calculation for grid size.
22
- // If you want your base font-size to be different and not have it affect the grid breakpoints,
23
- // set $rem-base to $base-font-size and make sure $base-font-size is a px value.
24
- // $base-font-size: 100%;
25
-
26
- // The $base-line-height is 100% while $base-font-size is 150%
27
- // $base-line-height: 150%;
28
-
29
- // We use this to control whether or not CSS classes come through in the gem files.
30
- // $include-html-classes: true;
31
- // $include-print-styles: true;
32
- // $include-html-global-classes: $include-html-classes;
33
-
34
- // Grid
35
-
36
- // $include-html-grid-classes: $include-html-classes;
37
- // $include-xl-html-grid-classes: false;
38
-
39
- // $row-width: rem-calc(1000);
40
- // $column-gutter: rem-calc(30);
41
- // $total-columns: 12;
42
-
43
- // We use these to control various global styles
44
- // $body-bg: #fff;
45
- // $body-font-color: #222;
46
- // $body-font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
47
- // $body-font-weight: normal;
48
- // $body-font-style: normal;
49
-
50
- // We use this to control font-smoothing
51
- // $font-smoothing: antialiased;
52
-
53
- // We use these to control text direction settings
54
- // $text-direction: ltr;
55
- // $opposite-direction: right;
56
- // $default-float: left;
57
-
58
- // We use these as default colors throughout
59
- // $primary-color: #008CBA;
60
- // $secondary-color: #e7e7e7;
61
- // $alert-color: #f04124;
62
- // $success-color: #43AC6A;
63
- // $warning-color: #f08a24;
64
- // $info-color: #a0d3e8;
65
-
66
- // We use these to make sure border radius matches unless we want it different.
67
- // $global-radius: 3px;
68
- // $global-rounded: 1000px;
69
-
70
- // We use these to control inset shadow shiny edges and depressions.
71
- // $shiny-edge-size: 0 1px 0;
72
- // $shiny-edge-color: rgba(#fff, .5);
73
- // $shiny-edge-active-color: rgba(#000, .2);
74
-
75
- // Media Query Ranges
76
- // $small-range: (0em, 40em);
77
- // $medium-range: (40.063em, 64em);
78
- // $large-range: (64.063em, 90em);
79
- // $xlarge-range: (90.063em, 120em);
80
- // $xxlarge-range: (120.063em);
81
-
82
- // $screen: "only screen";
83
-
84
- // $landscape: "#{$screen} and (orientation: landscape)";
85
- // $portrait: "#{$screen} and (orientation: portrait)";
86
-
87
- // $small-up: $screen;
88
- // $small-only: "#{$screen} and (max-width: #{upper-bound($small-range)})";
89
-
90
- // $medium-up: "#{$screen} and (min-width:#{lower-bound($medium-range)})";
91
- // $medium-only: "#{$screen} and (min-width:#{lower-bound($medium-range)}) and (max-width:#{upper-bound($medium-range)})";
92
-
93
- // $large-up: "#{$screen} and (min-width:#{lower-bound($large-range)})";
94
- // $large-only: "#{$screen} and (min-width:#{lower-bound($large-range)}) and (max-width:#{upper-bound($large-range)})";
95
-
96
- // $xlarge-up: "#{$screen} and (min-width:#{lower-bound($xlarge-range)})";
97
- // $xlarge-only: "#{$screen} and (min-width:#{lower-bound($xlarge-range)}) and (max-width:#{upper-bound($xlarge-range)})";
98
-
99
- // $xxlarge-up: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)})";
100
- // $xxlarge-only: "#{$screen} and (min-width:#{lower-bound($xxlarge-range)}) and (max-width:#{upper-bound($xxlarge-range)})";
101
-
102
- // Legacy
103
- // $small: $medium-up;
104
- // $medium: $medium-up;
105
- // $large: $large-up;
106
-
107
- //We use this as cursors values for enabling the option of having custom cursors in the whole site's stylesheet
108
- // $cursor-crosshair-value: crosshair;
109
- // $cursor-default-value: default;
110
- // $cursor-pointer-value: pointer;
111
- // $cursor-help-value: help;
112
- // $cursor-text-value: text;
113
-
114
- //
115
- // TYPOGRAPHY
116
- //
117
-
118
- // $include-html-type-classes: $include-html-classes;
119
-
120
- // We use these to control header font styles
121
- // $header-font-family: $body-font-family;
122
- // $header-font-weight: normal;
123
- // $header-font-style: normal;
124
- // $header-font-color: #222;
125
- // $header-line-height: 1.4;
126
- // $header-top-margin: .2rem;
127
- // $header-bottom-margin: .5rem;
128
- // $header-text-rendering: optimizeLegibility;
129
-
130
- // We use these to control header font sizes
131
- // $h1-font-size: rem-calc(44);
132
- // $h2-font-size: rem-calc(37);
133
- // $h3-font-size: rem-calc(27);
134
- // $h4-font-size: rem-calc(23);
135
- // $h5-font-size: rem-calc(18);
136
- // $h6-font-size: 1rem;
137
-
138
- // These control how subheaders are styled.
139
- // $subheader-line-height: 1.4;
140
- // $subheader-font-color: scale-color($header-font-color, $lightness: 35%);
141
- // $subheader-font-weight: 300;
142
- // $subheader-top-margin: .2rem;
143
- // $subheader-bottom-margin: .5rem;
144
-
145
- // A general <small> styling
146
- // $small-font-size: 60%;
147
- // $small-font-color: scale-color($header-font-color, $lightness: 35%);
148
-
149
- // We use these to style paragraphs
150
- // $paragraph-font-family: inherit;
151
- // $paragraph-font-weight: normal;
152
- // $paragraph-font-size: 1rem;
153
- // $paragraph-line-height: 1.6;
154
- // $paragraph-margin-bottom: rem-calc(20);
155
- // $paragraph-aside-font-size: rem-calc(14);
156
- // $paragraph-aside-line-height: 1.35;
157
- // $paragraph-aside-font-style: italic;
158
- // $paragraph-text-rendering: optimizeLegibility;
159
-
160
- // We use these to style <code> tags
161
- // $code-color: scale-color($alert-color, $lightness: -27%);
162
- // $code-font-family: Consolas, 'Liberation Mono', Courier, monospace;
163
- // $code-font-weight: bold;
164
-
165
- // We use these to style anchors
166
- // $anchor-text-decoration: none;
167
- // $anchor-font-color: $primary-color;
168
- // $anchor-font-color-hover: scale-color($primary-color, $lightness: -14%);
169
-
170
- // We use these to style the <hr> element
171
- // $hr-border-width: 1px;
172
- // $hr-border-style: solid;
173
- // $hr-border-color: #ddd;
174
- // $hr-margin: rem-calc(20);
175
-
176
- // We use these to style lists
177
- // $list-style-position: outside;
178
- // $list-side-margin: 1.1rem;
179
- // $list-ordered-side-margin: 1.4rem;
180
- // $list-side-margin-no-bullet: 0;
181
- // $list-nested-margin: rem-calc(20);
182
- // $definition-list-header-weight: bold;
183
- // $definition-list-header-margin-bottom: .3rem;
184
- // $definition-list-margin-bottom: rem-calc(12);
185
-
186
- // We use these to style blockquotes
187
- // $blockquote-font-color: scale-color($header-font-color, $lightness: 35%);
188
- // $blockquote-padding: rem-calc(9 20 0 19);
189
- // $blockquote-border: 1px solid #ddd;
190
- // $blockquote-cite-font-size: rem-calc(13);
191
- // $blockquote-cite-font-color: scale-color($header-font-color, $lightness: 23%);
192
- // $blockquote-cite-link-color: $blockquote-cite-font-color;
193
-
194
- // Acronym styles
195
- // $acronym-underline: 1px dotted #ddd;
196
-
197
- // We use these to control padding and margin
198
- // $microformat-padding: rem-calc(10 12);
199
- // $microformat-margin: rem-calc(0 0 20 0);
200
-
201
- // We use these to control the border styles
202
- // $microformat-border-width: 1px;
203
- // $microformat-border-style: solid;
204
- // $microformat-border-color: #ddd;
205
-
206
- // We use these to control full name font styles
207
- // $microformat-fullname-font-weight: bold;
208
- // $microformat-fullname-font-size: rem-calc(15);
209
-
210
- // We use this to control the summary font styles
211
- // $microformat-summary-font-weight: bold;
212
-
213
- // We use this to control abbr padding
214
- // $microformat-abbr-padding: rem-calc(0 1);
215
-
216
- // We use this to control abbr font styles
217
- // $microformat-abbr-font-weight: bold;
218
- // $microformat-abbr-font-decoration: none;
219
-
220
- // Accordion
221
-
222
- // $include-html-accordion-classes: $include-html-classes;
223
-
224
- // $accordion-navigation-padding: rem-calc(16);
225
- // $accordion-navigation-bg-color: #efefef ;
226
- // $accordion-navigation-hover-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -5%);
227
- // $accordion-navigation-active-bg-color: scale-color($accordion-navigation-bg-color, $lightness: -3%);
228
- // $accordion-navigation-font-color: #222;
229
- // $accordion-navigation-font-size: rem-calc(16);
230
- // $accordion-navigation-font-family: $body-font-family;
231
-
232
- // $accordion-content-padding: $column-gutter/2;
233
- // $accordion-content-active-bg-color: #fff;
234
-
235
- // Alert Boxes
236
-
237
- // $include-html-alert-classes: $include-html-classes;
238
-
239
- // We use this to control alert padding.
240
- // $alert-padding-top: rem-calc(14);
241
- // $alert-padding-default-float: $alert-padding-top;
242
- // $alert-padding-opposite-direction: $alert-padding-top + rem-calc(10);
243
- // $alert-padding-bottom: $alert-padding-top;
244
-
245
- // We use these to control text style.
246
- // $alert-font-weight: normal;
247
- // $alert-font-size: rem-calc(13);
248
- // $alert-font-color: #fff;
249
- // $alert-font-color-alt: scale-color($secondary-color, $lightness: -66%);
250
-
251
- // We use this for close hover effect.
252
- // $alert-function-factor: -14%;
253
-
254
- // We use these to control border styles.
255
- // $alert-border-style: solid;
256
- // $alert-border-width: 1px;
257
- // $alert-border-color: scale-color($primary-color, $lightness: $alert-function-factor);
258
- // $alert-bottom-margin: rem-calc(20);
259
-
260
- // We use these to style the close buttons
261
- // $alert-close-color: #333;
262
- // $alert-close-top: 50%;
263
- // $alert-close-position: rem-calc(5);
264
- // $alert-close-font-size: rem-calc(22);
265
- // $alert-close-opacity: 0.3;
266
- // $alert-close-opacity-hover: 0.5;
267
- // $alert-close-padding: 9px 6px 4px;
268
-
269
- // We use this to control border radius
270
- // $alert-radius: $global-radius;
271
-
272
- // Block Grid
273
-
274
- // $include-html-grid-classes: $include-html-classes;
275
-
276
- // We use this to control the maximum number of block grid elements per row
277
- // $block-grid-elements: 12;
278
- // $block-grid-default-spacing: rem-calc(20);
279
- // $align-block-grid-to-grid: true;
280
-
281
- // Enables media queries for block-grid classes. Set to false if writing semantic HTML.
282
- // $block-grid-media-queries: true;
283
-
284
- // Breadcrumbs
285
-
286
- // $include-html-nav-classes: $include-html-classes;
287
-
288
- // We use this to set the background color for the breadcrumb container.
289
- // $crumb-bg: scale-color($secondary-color, $lightness: 55%);
290
-
291
- // We use these to set the padding around the breadcrumbs.
292
- // $crumb-padding: rem-calc(9 14 9);
293
- // $crumb-side-padding: rem-calc(12);
294
-
295
- // We use these to control border styles.
296
- // $crumb-function-factor: -10%;
297
- // $crumb-border-size: 1px;
298
- // $crumb-border-style: solid;
299
- // $crumb-border-color: scale-color($crumb-bg, $lightness: $crumb-function-factor);
300
- // $crumb-radius: $global-radius;
301
-
302
- // We use these to set various text styles for breadcrumbs.
303
- // $crumb-font-size: rem-calc(11);
304
- // $crumb-font-color: $primary-color;
305
- // $crumb-font-color-current: #333;
306
- // $crumb-font-color-unavailable: #999;
307
- // $crumb-font-transform: uppercase;
308
- // $crumb-link-decor: underline;
309
-
310
- // We use these to control the slash between breadcrumbs
311
- // $crumb-slash-color: #aaa;
312
- // $crumb-slash: "/";
313
-
314
- //
315
- // BUTTONS
316
- //
317
-
318
- // $include-html-button-classes: $include-html-classes;
319
-
320
- // We use these to build padding for buttons.
321
- // $button-tny: rem-calc(10);
322
- // $button-sml: rem-calc(14);
323
- // $button-med: rem-calc(16);
324
- // $button-lrg: rem-calc(18);
325
-
326
- // We use this to control the display property.
327
- // $button-display: inline-block;
328
- // $button-margin-bottom: rem-calc(20);
329
-
330
- // We use these to control button text styles.
331
- // $button-font-family: $body-font-family;
332
- // $button-font-color: #fff;
333
- // $button-font-color-alt: #333;
334
- // $button-font-tny: rem-calc(11);
335
- // $button-font-sml: rem-calc(13);
336
- // $button-font-med: rem-calc(16);
337
- // $button-font-lrg: rem-calc(20);
338
- // $button-font-weight: normal;
339
- // $button-font-align: center;
340
-
341
- // We use these to control various hover effects.
342
- // $button-function-factor: 5%;
343
-
344
- // We use these to control button border styles.
345
- // $button-border-width: 1px;
346
- // $button-border-style: solid;
347
-
348
- // We use this to set the default radius used throughout the core.
349
- // $button-radius: $global-radius;
350
- // $button-round: $global-rounded;
351
-
352
- // We use this to set default opacity for disabled buttons.
353
- // $button-disabled-opacity: 0.7;
354
-
355
- // Button Groups
356
-
357
- // $include-html-button-classes: $include-html-classes;
358
-
359
- // Sets the margin for the right side by default, and the left margin if right-to-left direction is used
360
- // $button-bar-margin-opposite: rem-calc(10);
361
- // $button-group-border-width: 1px;
362
-
363
- // Clearing
364
-
365
- // $include-html-clearing-classes: $include-html-classes;
366
-
367
- // We use these to set the background colors for parts of Clearing.
368
- // $clearing-bg: #333;
369
- // $clearing-caption-bg: $clearing-bg;
370
- // $clearing-carousel-bg: rgba (51,51,51,0.8);
371
- // $clearing-img-bg: $clearing-bg;
372
-
373
- // We use these to style the close button
374
- // $clearing-close-color: #ccc;
375
- // $clearing-close-size: 30px;
376
-
377
- // We use these to style the arrows
378
- // $clearing-arrow-size: 12px;
379
- // $clearing-arrow-color: $clearing-close-color;
380
-
381
- // We use these to style captions
382
- // $clearing-caption-font-color: #ccc;
383
- // $clearing-caption-font-size: 0.875em;
384
- // $clearing-caption-padding: 10px 30px 20px;
385
-
386
- // We use these to make the image and carousel height and style
387
- // $clearing-active-img-height: 85%;
388
- // $clearing-carousel-height: 120px;
389
- // $clearing-carousel-thumb-width: 120px;
390
- // $clearing-carousel-thumb-active-border: 1px solid rgb(255,255,255);
391
-
392
- // Dropdown
393
-
394
- // $include-html-dropdown-classes: $include-html-classes;
395
-
396
- // We use these to controls height and width styles.
397
- // $f-dropdown-max-width: 200px;
398
- // $f-dropdown-height: auto;
399
- // $f-dropdown-max-height: none;
400
- // $f-dropdown-margin-top: 2px;
401
-
402
- // We use this to control the background color
403
- // $f-dropdown-bg: #fff;
404
-
405
- // We use this to set the border styles for dropdowns.
406
- // $f-dropdown-border-style: solid;
407
- // $f-dropdown-border-width: 1px;
408
- // $f-dropdown-border-color: scale-color(#fff, $lightness: -20%);
409
-
410
- // We use these to style the triangle pip.
411
- // $f-dropdown-triangle-size: 6px;
412
- // $f-dropdown-triangle-color: #fff;
413
- // $f-dropdown-triangle-side-offset: 10px;
414
-
415
- // We use these to control styles for the list elements.
416
- // $f-dropdown-list-style: none;
417
- // $f-dropdown-font-color: #555;
418
- // $f-dropdown-font-size: rem-calc(14);
419
- // $f-dropdown-list-padding: rem-calc(5, 10);
420
- // $f-dropdown-line-height: rem-calc(18);
421
- // $f-dropdown-list-hover-bg: #eeeeee ;
422
- // $dropdown-mobile-default-float: 0;
423
-
424
- // We use this to control the styles for when the dropdown has custom content.
425
- // $f-dropdown-content-padding: rem-calc(20);
426
-
427
- // Dropdown Buttons
428
-
429
- // $include-html-button-classes: $include-html-classes;
430
-
431
- // We use these to set the color of the pip in dropdown buttons
432
- // $dropdown-button-pip-color: #fff;
433
- // $dropdown-button-pip-color-alt: #333;
434
-
435
- // $button-pip-tny: rem-calc(6);
436
- // $button-pip-sml: rem-calc(7);
437
- // $button-pip-med: rem-calc(9);
438
- // $button-pip-lrg: rem-calc(11);
439
-
440
- // We use these to style tiny dropdown buttons
441
- // $dropdown-button-padding-tny: $button-pip-tny * 7;
442
- // $dropdown-button-pip-size-tny: $button-pip-tny;
443
- // $dropdown-button-pip-opposite-tny: $button-pip-tny * 3;
444
- // $dropdown-button-pip-top-tny: -$button-pip-tny / 2 + rem-calc(1);
445
-
446
- // We use these to style small dropdown buttons
447
- // $dropdown-button-padding-sml: $button-pip-sml * 7;
448
- // $dropdown-button-pip-size-sml: $button-pip-sml;
449
- // $dropdown-button-pip-opposite-sml: $button-pip-sml * 3;
450
- // $dropdown-button-pip-top-sml: -$button-pip-sml / 2 + rem-calc(1);
451
-
452
- // We use these to style medium dropdown buttons
453
- // $dropdown-button-padding-med: $button-pip-med * 6 + rem-calc(3);
454
- // $dropdown-button-pip-size-med: $button-pip-med - rem-calc(3);
455
- // $dropdown-button-pip-opposite-med: $button-pip-med * 2.5;
456
- // $dropdown-button-pip-top-med: -$button-pip-med / 2 + rem-calc(2);
457
-
458
- // We use these to style large dropdown buttons
459
- // $dropdown-button-padding-lrg: $button-pip-lrg * 5 + rem-calc(3);
460
- // $dropdown-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
461
- // $dropdown-button-pip-opposite-lrg: $button-pip-lrg * 2.5;
462
- // $dropdown-button-pip-top-lrg: -$button-pip-lrg / 2 + rem-calc(3);
463
-
464
- // Flex Video
465
-
466
- // $include-html-media-classes: $include-html-classes;
467
-
468
- // We use these to control video container padding and margins
469
- // $flex-video-padding-top: rem-calc(25);
470
- // $flex-video-padding-bottom: 67.5%;
471
- // $flex-video-margin-bottom: rem-calc(16);
472
-
473
- // We use this to control widescreen bottom padding
474
- // $flex-video-widescreen-padding-bottom: 57.25%;
475
-
476
- // Forms
477
-
478
- // $include-html-form-classes: $include-html-classes;
479
-
480
- // We use this to set the base for lots of form spacing and positioning styles
481
- // $form-spacing: rem-calc(16);
482
-
483
- // We use these to style the labels in different ways
484
- // $form-label-pointer: pointer;
485
- // $form-label-font-size: rem-calc(14);
486
- // $form-label-font-weight: normal;
487
- // $form-label-line-height: 1.5;
488
- // $form-label-font-color: scale-color(#000, $lightness: 30%);
489
- // $form-label-bottom-margin: 0;
490
- // $input-font-family: inherit;
491
- // $input-font-color: rgba(0,0,0,0.75);
492
- // $input-font-size: rem-calc(14);
493
- // $input-bg-color: #fff;
494
- // $input-focus-bg-color: scale-color(#fff, $lightness: -2%);
495
- // $input-border-color: scale-color(#fff, $lightness: -20%);
496
- // $input-focus-border-color: scale-color(#fff, $lightness: -40%);
497
- // $input-border-style: solid;
498
- // $input-border-width: 1px;
499
- // $input-border-radius: $global-radius;
500
- // $input-disabled-bg: #ddd;
501
- // $input-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
502
- // $input-include-glowing-effect: true;
503
-
504
- // We use these to style the fieldset border and spacing.
505
- // $fieldset-border-style: solid;
506
- // $fieldset-border-width: 1px;
507
- // $fieldset-border-color: #ddd;
508
- // $fieldset-padding: rem-calc(20);
509
- // $fieldset-margin: rem-calc(18 0);
510
-
511
- // We use these to style the legends when you use them
512
- // $legend-bg: #fff;
513
- // $legend-font-weight: bold;
514
- // $legend-padding: rem-calc(0 3);
515
-
516
- // We use these to style the prefix and postfix input elements
517
- // $input-prefix-bg: scale-color(#fff, $lightness: -5%);
518
- // $input-prefix-border-color: scale-color(#fff, $lightness: -20%);
519
- // $input-prefix-border-size: 1px;
520
- // $input-prefix-border-type: solid;
521
- // $input-prefix-overflow: hidden;
522
- // $input-prefix-font-color: #333;
523
- // $input-prefix-font-color-alt: #fff;
524
-
525
- // We use these to style the error states for inputs and labels
526
- // $input-error-message-padding: rem-calc(6 9 9);
527
- // $input-error-message-top: -1px;
528
- // $input-error-message-font-size: rem-calc(12);
529
- // $input-error-message-font-weight: normal;
530
- // $input-error-message-font-style: italic;
531
- // $input-error-message-font-color: #fff;
532
- // $input-error-message-font-color-alt: #333;
533
-
534
- // We use this to style the glowing effect of inputs when focused
535
- // $glowing-effect-fade-time: 0.45s;
536
- // $glowing-effect-color: $input-focus-border-color;
537
-
538
- // Select variables
539
- // $select-bg-color: #fafafa;
540
-
541
- // Inline Lists
542
-
543
- // $include-html-inline-list-classes: $include-html-classes;
544
-
545
- // We use this to control the margins and padding of the inline list.
546
- // $inline-list-top-margin: 0;
547
- // $inline-list-opposite-margin: 0;
548
- // $inline-list-bottom-margin: rem-calc(17);
549
- // $inline-list-default-float-margin: rem-calc(-22);
550
-
551
- // $inline-list-padding: 0;
552
-
553
- // We use this to control the overflow of the inline list.
554
- // $inline-list-overflow: hidden;
555
-
556
- // We use this to control the list items
557
- // $inline-list-display: block;
558
-
559
- // We use this to control any elments within list items
560
- // $inline-list-children-display: block;
561
-
562
- // Joyride
563
-
564
- // $include-html-joyride-classes: $include-html-classes;
565
-
566
- // Controlling default Joyride styles
567
- // $joyride-tip-bg: #333;
568
- // $joyride-tip-default-width: 300px;
569
- // $joyride-tip-padding: rem-calc(18 20 24);
570
- // $joyride-tip-border: solid 1px #555;
571
- // $joyride-tip-radius: 4px;
572
- // $joyride-tip-position-offset: 22px;
573
-
574
- // Here, we're setting the tip dont styles
575
- // $joyride-tip-font-color: #fff;
576
- // $joyride-tip-font-size: rem-calc(14);
577
- // $joyride-tip-header-weight: bold;
578
-
579
- // This changes the nub size
580
- // $joyride-tip-nub-size: 10px;
581
-
582
- // This adjusts the styles for the timer when its enabled
583
- // $joyride-tip-timer-width: 50px;
584
- // $joyride-tip-timer-height: 3px;
585
- // $joyride-tip-timer-color: #666;
586
-
587
- // This changes up the styles for the close button
588
- // $joyride-tip-close-color: #777;
589
- // $joyride-tip-close-size: 24px;
590
- // $joyride-tip-close-weight: normal;
591
-
592
- // When Joyride is filling the screen, we use this style for the bg
593
- // $joyride-screenfill: rgba(0,0,0,0.5);
594
-
595
- // Keystrokes
596
-
597
- // $include-html-keystroke-classes: $include-html-classes;
598
-
599
- // We use these to control text styles.
600
- // $keystroke-font: "Consolas", "Menlo", "Courier", monospace;
601
- // $keystroke-font-size: rem-calc(14);
602
- // $keystroke-font-color: #222;
603
- // $keystroke-font-color-alt: #fff;
604
- // $keystroke-function-factor: -7%;
605
-
606
- // We use this to control keystroke padding.
607
- // $keystroke-padding: rem-calc(2 4 0);
608
-
609
- // We use these to control background and border styles.
610
- // $keystroke-bg: scale-color(#fff, $lightness: $keystroke-function-factor);
611
- // $keystroke-border-style: solid;
612
- // $keystroke-border-width: 1px;
613
- // $keystroke-border-color: scale-color($keystroke-bg, $lightness: $keystroke-function-factor);
614
- // $keystroke-radius: $global-radius;
615
-
616
- // Labels
617
-
618
- // $include-html-label-classes: $include-html-classes;
619
-
620
- // We use these to style the labels
621
- // $label-padding: rem-calc(4 8 6);
622
- // $label-radius: $global-radius;
623
-
624
- // We use these to style the label text
625
- // $label-font-sizing: rem-calc(11);
626
- // $label-font-weight: normal;
627
- // $label-font-color: #333;
628
- // $label-font-color-alt: #fff;
629
- // $label-font-family: $body-font-family;
630
-
631
- // Magellan
632
-
633
- // $include-html-magellan-classes: $include-html-classes;
634
-
635
- // $magellan-bg: #fff;
636
- // $magellan-padding: 10px;
637
-
638
- // Off-canvas
639
-
640
- // $tabbar-bg: #333;
641
- // $tabbar-height: rem-calc(45);
642
- // $tabbar-line-height: $tabbar-height;
643
- // $tabbar-color: #FFF;
644
- // $tabbar-middle-padding: 0 rem-calc(10);
645
-
646
- // Off Canvas Divider Styles
647
- // $tabbar-right-section-border: solid 1px scale-color($tabbar-bg, $lightness: 13%);
648
- // $tabbar-left-section-border: solid 1px scale-color($tabbar-bg, $lightness: -50%);
649
-
650
- // Off Canvas Tab Bar Headers
651
- // $tabbar-header-color: #FFF;
652
- // $tabbar-header-weight: bold;
653
- // $tabbar-header-line-height: $tabbar-height;
654
- // $tabbar-header-margin: 0;
655
-
656
- // Off Canvas Menu Variables
657
- // $off-canvas-width: 250px;
658
- // $off-canvas-bg: #333;
659
-
660
- // Off Canvas Menu List Variables
661
- // $off-canvas-label-padding: 0.3rem rem-calc(15);
662
- // $off-canvas-label-color: #999;
663
- // $off-canvas-label-text-transform: uppercase;
664
- // $off-canvas-label-font-weight: bold;
665
- // $off-canvas-label-bg: #444;
666
- // $off-canvas-label-border-top: 1px solid scale-color(#444, $lightness: 14%);
667
- // $off-canvas-label-border-bottom: none;
668
- // $off-canvas-label-margin:0;
669
- // $off-canvas-link-padding: rem-calc(10, 15);
670
- // $off-canvas-link-color: rgba(#FFF, 0.7);
671
- // $off-canvas-link-border-bottom: 1px solid scale-color($off-canvas-bg, $lightness: -25%);
672
-
673
- // Off Canvas Menu Icon Variables
674
- // $tabbar-menu-icon-color: #FFF;
675
- // $tabbar-menu-icon-hover: scale-color($tabbar-menu-icon-color, $lightness: -30%);
676
-
677
- // $tabbar-menu-icon-text-indent: rem-calc(35);
678
- // $tabbar-menu-icon-width: $tabbar-height;
679
- // $tabbar-menu-icon-height: $tabbar-height;
680
- // $tabbar-menu-icon-line-height: rem-calc(33);
681
- // $tabbar-menu-icon-padding: 0;
682
-
683
- // $tabbar-hamburger-icon-width: rem-calc(16);
684
- // $tabbar-hamburger-icon-left: false;
685
- // $tabbar-hamburger-icon-top: false;
686
- // $tapbar-hamburger-icon-thickness: 1px;
687
- // $tapbar-hamburger-icon-gap: 6px;
688
-
689
- // Off Canvas Back-Link Overlay
690
- // $off-canvas-overlay-transition: background 300ms ease;
691
- // $off-canvas-overlay-cursor: pointer;
692
- // $off-canvas-overlay-box-shadow: -4px 0 4px rgba(#000, 0.5), 4px 0 4px rgba(#000, 0.5);
693
- // $off-canvas-overlay-background: rgba(#FFF, 0.2);
694
- // $off-canvas-overlay-background-hover: rgba(#FFF, 0.05);
695
-
696
- // Transition Variables
697
- // $menu-slide: "transform 500ms ease";
698
-
699
- // Orbit
700
-
701
- // $include-html-orbit-classes: $include-html-classes;
702
-
703
- // We use these to control the caption styles
704
- // $orbit-container-bg: none;
705
- // $orbit-caption-bg: rgba(51,51,51, 0.8);
706
- // $orbit-caption-font-color: #fff;
707
- // $orbit-caption-font-size: rem-calc(14);
708
- // $orbit-caption-position: "bottom"; // Supported values: "bottom", "under"
709
- // $orbit-caption-padding: rem-calc(10 14);
710
- // $orbit-caption-height: auto;
711
-
712
- // We use these to control the left/right nav styles
713
- // $orbit-nav-bg: none;
714
- // $orbit-nav-bg-hover: rgba(0,0,0,0.3);
715
- // $orbit-nav-arrow-color: #fff;
716
- // $orbit-nav-arrow-color-hover: #fff;
717
-
718
- // We use these to control the timer styles
719
- // $orbit-timer-bg: rgba(255,255,255,0.3);
720
- // $orbit-timer-show-progress-bar: true;
721
-
722
- // We use these to control the bullet nav styles
723
- // $orbit-bullet-nav-color: #ccc;
724
- // $orbit-bullet-nav-color-active: #999;
725
- // $orbit-bullet-radius: rem-calc(9);
726
-
727
- // We use these to controls the style of slide numbers
728
- // $orbit-slide-number-bg: rgba(0,0,0,0);
729
- // $orbit-slide-number-font-color: #fff;
730
- // $orbit-slide-number-padding: rem-calc(5);
731
-
732
- // Graceful Loading Wrapper and preloader
733
- // $wrapper-class: "slideshow-wrapper";
734
- // $preloader-class: "preloader";
735
-
736
- // Pagination
737
-
738
- // $include-html-nav-classes: $include-html-classes;
739
-
740
- // We use these to control the pagination container
741
- // $pagination-height: rem-calc(24);
742
- // $pagination-margin: rem-calc(-5);
743
-
744
- // We use these to set the list-item properties
745
- // $pagination-li-float: $default-float;
746
- // $pagination-li-height: rem-calc(24);
747
- // $pagination-li-font-color: #222;
748
- // $pagination-li-font-size: rem-calc(14);
749
- // $pagination-li-margin: rem-calc(5);
750
-
751
- // We use these for the pagination anchor links
752
- // $pagination-link-pad: rem-calc(1 10 1);
753
- // $pagination-link-font-color: #999;
754
- // $pagination-link-active-bg: scale-color(#fff, $lightness: -10%);
755
-
756
- // We use these for disabled anchor links
757
- // $pagination-link-unavailable-cursor: default;
758
- // $pagination-link-unavailable-font-color: #999;
759
- // $pagination-link-unavailable-bg-active: transparent;
760
-
761
- // We use these for currently selected anchor links
762
- // $pagination-link-current-background: $primary-color;
763
- // $pagination-link-current-font-color: #fff;
764
- // $pagination-link-current-font-weight: bold;
765
- // $pagination-link-current-cursor: default;
766
- // $pagination-link-current-active-bg: $primary-color;
767
-
768
- // Panels
769
-
770
- // $include-html-panel-classes: $include-html-classes;
771
-
772
- // We use these to control the background and border styles
773
- // $panel-bg: scale-color(#fff, $lightness: -5%);
774
- // $panel-border-style: solid;
775
- // $panel-border-size: 1px;
776
-
777
- // We use this % to control how much we darken things on hover
778
- // $panel-function-factor: -11%;
779
- // $panel-border-color: scale-color($panel-bg, $lightness: $panel-function-factor);
780
-
781
- // We use these to set default inner padding and bottom margin
782
- // $panel-margin-bottom: rem-calc(20);
783
- // $panel-padding: rem-calc(20);
784
-
785
- // We use these to set default font colors
786
- // $panel-font-color: #333;
787
- // $panel-font-color-alt: #fff;
788
-
789
- // $panel-header-adjust: true;
790
- // $callout-panel-link-color: $primary-color;
791
-
792
- // Pricing Tables
793
-
794
- // $include-html-pricing-classes: $include-html-classes;
795
-
796
- // We use this to control the border color
797
- // $price-table-border: solid 1px #ddd;
798
-
799
- // We use this to control the bottom margin of the pricing table
800
- // $price-table-margin-bottom: rem-calc(20);
801
-
802
- // We use these to control the title styles
803
- // $price-title-bg: #333;
804
- // $price-title-padding: rem-calc(15 20);
805
- // $price-title-align: center;
806
- // $price-title-color: #eee;
807
- // $price-title-weight: normal;
808
- // $price-title-size: rem-calc(16);
809
- // $price-title-font-family: $body-font-family;
810
-
811
- // We use these to control the price styles
812
- // $price-money-bg: #f6f6f6 ;
813
- // $price-money-padding: rem-calc(15 20);
814
- // $price-money-align: center;
815
- // $price-money-color: #333;
816
- // $price-money-weight: normal;
817
- // $price-money-size: rem-calc(32);
818
- // $price-money-font-family: $body-font-family;
819
-
820
-
821
- // We use these to control the description styles
822
- // $price-bg: #fff;
823
- // $price-desc-color: #777;
824
- // $price-desc-padding: rem-calc(15);
825
- // $price-desc-align: center;
826
- // $price-desc-font-size: rem-calc(12);
827
- // $price-desc-weight: normal;
828
- // $price-desc-line-height: 1.4;
829
- // $price-desc-bottom-border: dotted 1px #ddd;
830
-
831
- // We use these to control the list item styles
832
- // $price-item-color: #333;
833
- // $price-item-padding: rem-calc(15);
834
- // $price-item-align: center;
835
- // $price-item-font-size: rem-calc(14);
836
- // $price-item-weight: normal;
837
- // $price-item-bottom-border: dotted 1px #ddd;
838
-
839
- // We use these to control the CTA area styles
840
- // $price-cta-bg: #fff;
841
- // $price-cta-align: center;
842
- // $price-cta-padding: rem-calc(20 20 0);
843
-
844
- // Progress Meters
845
-
846
- // $include-html-media-classes: $include-html-classes;
847
-
848
- // We use this to se the prog bar height
849
- // $progress-bar-height: rem-calc(25);
850
- // $progress-bar-color: #f6f6f6 ;
851
-
852
- // We use these to control the border styles
853
- // $progress-bar-border-color: scale-color(#fff, $lightness: -20%);
854
- // $progress-bar-border-size: 1px;
855
- // $progress-bar-border-style: solid;
856
- // $progress-bar-border-radius: $global-radius;
857
-
858
- // We use these to control the margin & padding
859
- // $progress-bar-pad: rem-calc(2);
860
- // $progress-bar-margin-bottom: rem-calc(10);
861
-
862
- // We use these to set the meter colors
863
- // $progress-meter-color: $primary-color;
864
- // $progress-meter-secondary-color: $secondary-color;
865
- // $progress-meter-success-color: $success-color;
866
- // $progress-meter-alert-color: $alert-color;
867
-
868
- // Reveal
869
-
870
- // $include-html-reveal-classes: $include-html-classes;
871
-
872
- // We use these to control the style of the reveal overlay.
873
- // $reveal-overlay-bg: rgba(#000, .45);
874
- // $reveal-overlay-bg-old: #000;
875
-
876
- // We use these to control the style of the modal itself.
877
- // $reveal-modal-bg: #fff;
878
- // $reveal-position-top: 50px;
879
- // $reveal-default-width: 80%;
880
- // $reveal-modal-padding: rem-calc(20);
881
- // $reveal-box-shadow: 0 0 10px rgba(#000,.4);
882
-
883
- // We use these to style the reveal close button
884
- // $reveal-close-font-size: rem-calc(22);
885
- // $reveal-close-top: rem-calc(8);
886
- // $reveal-close-side: rem-calc(11);
887
- // $reveal-close-color: #aaa;
888
- // $reveal-close-weight: bold;
889
-
890
- // We use these to control the modal border
891
- // $reveal-border-style: solid;
892
- // $reveal-border-width: 1px;
893
- // $reveal-border-color: #666;
894
-
895
- // $reveal-modal-class: "reveal-modal";
896
- // $close-reveal-modal-class: "close-reveal-modal";
897
-
898
- // Side Nav
899
-
900
- // $include-html-nav-classes: $include-html-classes;
901
-
902
- // We use this to control padding.
903
- // $side-nav-padding: rem-calc(14 0);
904
-
905
- // We use these to control list styles.
906
- // $side-nav-list-type: none;
907
- // $side-nav-list-position: inside;
908
- // $side-nav-list-margin: rem-calc(0 0 7 0);
909
-
910
- // We use these to control link styles.
911
- // $side-nav-link-color: $primary-color;
912
- // $side-nav-link-color-active: scale-color($side-nav-link-color, $lightness: 30%);
913
- // $side-nav-link-color-hover: scale-color($side-nav-link-color, $lightness: 30%);
914
- // $side-nav-font-size: rem-calc(14);
915
- // $side-nav-font-weight: normal;
916
- // $side-nav-font-family: $body-font-family;
917
- // $side-nav-active-font-family: $side-nav-font-family;
918
-
919
-
920
-
921
- // We use these to control border styles
922
- // $side-nav-divider-size: 1px;
923
- // $side-nav-divider-style: solid;
924
- // $side-nav-divider-color: scale-color(#fff, $lightness: -10%);
925
-
926
- // Split Buttons
927
-
928
- // $include-html-button-classes: $include-html-classes;
929
-
930
- // We use these to control different shared styles for Split Buttons
931
- // $split-button-function-factor: 10%;
932
- // $split-button-pip-color: #fff;
933
- // $split-button-pip-color-alt: #333;
934
- // $split-button-active-bg-tint: rgba(0,0,0,0.1);
935
-
936
- // We use these to control tiny split buttons
937
- // $split-button-padding-tny: $button-pip-tny * 10;
938
- // $split-button-span-width-tny: $button-pip-tny * 6;
939
- // $split-button-pip-size-tny: $button-pip-tny;
940
- // $split-button-pip-top-tny: $button-pip-tny * 2;
941
- // $split-button-pip-default-float-tny: rem-calc(-6);
942
-
943
- // We use these to control small split buttons
944
- // $split-button-padding-sml: $button-pip-sml * 10;
945
- // $split-button-span-width-sml: $button-pip-sml * 6;
946
- // $split-button-pip-size-sml: $button-pip-sml;
947
- // $split-button-pip-top-sml: $button-pip-sml * 1.5;
948
- // $split-button-pip-default-float-sml: rem-calc(-6);
949
-
950
- // We use these to control medium split buttons
951
- // $split-button-padding-med: $button-pip-med * 9;
952
- // $split-button-span-width-med: $button-pip-med * 5.5;
953
- // $split-button-pip-size-med: $button-pip-med - rem-calc(3);
954
- // $split-button-pip-top-med: $button-pip-med * 1.5;
955
- // $split-button-pip-default-float-med: rem-calc(-6);
956
-
957
- // We use these to control large split buttons
958
- // $split-button-padding-lrg: $button-pip-lrg * 8;
959
- // $split-button-span-width-lrg: $button-pip-lrg * 5;
960
- // $split-button-pip-size-lrg: $button-pip-lrg - rem-calc(6);
961
- // $split-button-pip-top-lrg: $button-pip-lrg + rem-calc(5);
962
- // $split-button-pip-default-float-lrg: rem-calc(-6);
963
-
964
- // Sub Nav
965
-
966
- // $include-html-nav-classes: $include-html-classes;
967
-
968
- // We use these to control margin and padding
969
- // $sub-nav-list-margin: rem-calc(-4 0 18);
970
- // $sub-nav-list-padding-top: rem-calc(4);
971
-
972
- // We use this to control the definition
973
- // $sub-nav-font-family: $body-font-family;
974
- // $sub-nav-font-size: rem-calc(14);
975
- // $sub-nav-font-color: #999;
976
- // $sub-nav-font-weight: normal;
977
- // $sub-nav-text-decoration: none;
978
- // $sub-nav-border-radius: 3px;
979
- // $sub-nav-font-color-hover: scale-color($sub-nav-font-color, $lightness: -25%);
980
-
981
-
982
- // We use these to control the active item styles
983
-
984
- // $sub-nav-active-font-weight: normal;
985
- // $sub-nav-active-bg: $primary-color;
986
- // $sub-nav-active-bg-hover: scale-color($sub-nav-active-bg, $lightness: -14%);
987
- // $sub-nav-active-color: #fff;
988
- // $sub-nav-active-padding: rem-calc(3 16);
989
- // $sub-nav-active-cursor: default;
990
-
991
- // $sub-nav-item-divider: "";
992
- // $sub-nav-item-divider-margin: rem-calc(12);
993
-
994
- //
995
- // SWITCH
996
- //
997
-
998
- // $include-html-form-classes: $include-html-classes;
999
-
1000
- // Controlling border styles and background colors for the switch container
1001
- // $switch-border-color: scale-color(#fff, $lightness: -20%);
1002
- // $switch-border-style: solid;
1003
- // $switch-border-width: 1px;
1004
- // $switch-bg: #fff;
1005
-
1006
- // We use these to control the switch heights for our default classes
1007
- // $switch-height-tny: 22px;
1008
- // $switch-height-sml: 28px;
1009
- // $switch-height-med: 36px;
1010
- // $switch-height-lrg: 44px;
1011
- // $switch-bottom-margin: rem-calc(20);
1012
-
1013
- // We use these to control default font sizes for our classes.
1014
- // $switch-font-size-tny: 11px;
1015
- // $switch-font-size-sml: 12px;
1016
- // $switch-font-size-med: 14px;
1017
- // $switch-font-size-lrg: 17px;
1018
- // $switch-label-side-padding: 6px;
1019
-
1020
- // We use these to style the switch-paddle
1021
- // $switch-paddle-bg: #fff;
1022
- // $switch-paddle-fade-to-color: scale-color($switch-paddle-bg, $lightness: -10%);
1023
- // $switch-paddle-border-color: scale-color($switch-paddle-bg, $lightness: -35%);
1024
- // $switch-paddle-border-width: 1px;
1025
- // $switch-paddle-border-style: solid;
1026
- // $switch-paddle-transition-speed: .1s;
1027
- // $switch-paddle-transition-ease: ease-out;
1028
- // $switch-positive-color: scale-color($success-color, $lightness: 94%);
1029
- // $switch-negative-color: #f5f5f5;
1030
-
1031
- // Outline Style for tabbing through switches
1032
- // $switch-label-outline: 1px dotted #888;
1033
-
1034
- // Tables
1035
-
1036
- // $include-html-table-classes: $include-html-classes;
1037
-
1038
- // These control the background color for the table and even rows
1039
- // $table-bg: #fff;
1040
- // $table-even-row-bg: #f9f9f9 ;
1041
-
1042
- // These control the table cell border style
1043
- // $table-border-style: solid;
1044
- // $table-border-size: 1px;
1045
- // $table-border-color: #ddd;
1046
-
1047
- // These control the table head styles
1048
- // $table-head-bg: #f5f5f5 ;
1049
- // $table-head-font-size: rem-calc(14);
1050
- // $table-head-font-color: #222;
1051
- // $table-head-font-weight: bold;
1052
- // $table-head-padding: rem-calc(8 10 10);
1053
-
1054
- // These control the row padding and font styles
1055
- // $table-row-padding: rem-calc(9 10);
1056
- // $table-row-font-size: rem-calc(14);
1057
- // $table-row-font-color: #222;
1058
- // $table-line-height: rem-calc(18);
1059
-
1060
- // These are for controlling the display and margin of tables
1061
- // $table-display: table-cell;
1062
- // $table-margin-bottom: rem-calc(20);
1063
-
1064
- //
1065
- // TABS
1066
- //
1067
-
1068
- // $include-html-tabs-classes: $include-html-classes;
1069
-
1070
- // $tabs-navigation-padding: rem-calc(16);
1071
- // $tabs-navigation-bg-color: #efefef ;
1072
- // $tabs-navigation-active-bg-color: #fff;
1073
- // $tabs-navigation-hover-bg-color: scale-color($tabs-navigation-bg-color, $lightness: -6%);
1074
- // $tabs-navigation-font-color: #222;
1075
- // $tabs-navigation-font-size: rem-calc(16);
1076
- // $tabs-navigation-font-family: $body-font-family;
1077
-
1078
- // $tabs-content-margin-bottom: rem-calc(24);
1079
- // $tabs-content-padding: $column-gutter/2;
1080
-
1081
- // $tabs-vertical-navigation-margin-bottom: 1.25rem;
1082
-
1083
- //
1084
- // THUMBNAILS
1085
- //
1086
-
1087
- // $include-html-media-classes: $include-html-classes;
1088
-
1089
- // We use these to control border styles
1090
- // $thumb-border-style: solid;
1091
- // $thumb-border-width: 4px;
1092
- // $thumb-border-color: #fff;
1093
- // $thumb-box-shadow: 0 0 0 1px rgba(#000,.2);
1094
- // $thumb-box-shadow-hover: 0 0 6px 1px rgba($primary-color,0.5);
1095
-
1096
- // Radius and transition speed for thumbs
1097
- // $thumb-radius: $global-radius;
1098
- // $thumb-transition-speed: 200ms;
1099
-
1100
- //
1101
- // TOOLTIPS
1102
- //
1103
-
1104
- // $include-html-tooltip-classes: $include-html-classes;
1105
-
1106
- // $has-tip-border-bottom: dotted 1px #ccc;
1107
- // $has-tip-font-weight: bold;
1108
- // $has-tip-font-color: #333;
1109
- // $has-tip-border-bottom-hover: dotted 1px scale-color($primary-color, $lightness: -55%);
1110
- // $has-tip-font-color-hover: $primary-color;
1111
- // $has-tip-cursor-type: help;
1112
-
1113
- // $tooltip-padding: rem-calc(12);
1114
- // $tooltip-bg: #333;
1115
- // $tooltip-font-size: rem-calc(14);
1116
- // $tooltip-font-weight: normal;
1117
- // $tooltip-font-color: #fff;
1118
- // $tooltip-line-height: 1.3;
1119
- // $tooltip-close-font-size: rem-calc(10);
1120
- // $tooltip-close-font-weight: normal;
1121
- // $tooltip-close-font-color: #777;
1122
- // $tooltip-font-size-sml: rem-calc(14);
1123
- // $tooltip-radius: $global-radius;
1124
- // $tooltip-rounded: $global-rounded;
1125
- // $tooltip-pip-size: 5px;
1126
-
1127
- //
1128
- // TOP BAR
1129
- //
1130
-
1131
- // $include-html-top-bar-classes: $include-html-classes;
1132
-
1133
- // Background color for the top bar
1134
- // $topbar-bg-color: #333;
1135
- // $topbar-bg: $topbar-bg-color;
1136
-
1137
- // Height and margin
1138
- // $topbar-height: 45px;
1139
- // $topbar-margin-bottom: 0;
1140
-
1141
- // Controlling the styles for the title in the top bar
1142
- // $topbar-title-weight: normal;
1143
- // $topbar-title-font-size: rem-calc(17);
1144
-
1145
- // Style the top bar dropdown elements
1146
- // $topbar-dropdown-bg: #333;
1147
- // $topbar-dropdown-link-color: #fff;
1148
- // $topbar-dropdown-link-bg: #333;
1149
- // $topbar-dropdown-link-weight: normal;
1150
- // $topbar-dropdown-toggle-size: 5px;
1151
- // $topbar-dropdown-toggle-color: #fff;
1152
- // $topbar-dropdown-toggle-alpha: 0.4;
1153
-
1154
- // Set the link colors and styles for top-level nav
1155
- // $topbar-link-color: #fff;
1156
- // $topbar-link-color-hover: #fff;
1157
- // $topbar-link-color-active: #fff;
1158
- // $topbar-link-color-active-hover: #fff;
1159
- // $topbar-link-weight: normal;
1160
- // $topbar-link-font-size: rem-calc(13);
1161
- // $topbar-link-hover-lightness: -10%; // Darken by 10%
1162
- // $topbar-link-bg-hover: #272727;
1163
- // $topbar-link-bg-active: $primary-color;
1164
- // $topbar-link-bg-active-hover: scale-color($primary-color, $lightness: -14%);
1165
- // $topbar-link-font-family: $body-font-family;
1166
- // $topbar-link-text-transform: none;
1167
- // $topbar-link-padding: $topbar-height / 3;
1168
-
1169
- // $topbar-button-font-size: 0.75rem;
1170
- // $topbar-button-top: 7px;
1171
-
1172
- // $topbar-dropdown-label-color: #777;
1173
- // $topbar-dropdown-label-text-transform: uppercase;
1174
- // $topbar-dropdown-label-font-weight: bold;
1175
- // $topbar-dropdown-label-font-size: rem-calc(10);
1176
- // $topbar-dropdown-label-bg: #333;
1177
-
1178
- // Top menu icon styles
1179
- // $topbar-menu-link-transform: uppercase;
1180
- // $topbar-menu-link-font-size: rem-calc(13);
1181
- // $topbar-menu-link-weight: bold;
1182
- // $topbar-menu-link-color: #fff;
1183
- // $topbar-menu-icon-color: #fff;
1184
- // $topbar-menu-link-color-toggled: #888;
1185
- // $topbar-menu-icon-color-toggled: #888;
1186
-
1187
- // Transitions and breakpoint styles
1188
- // $topbar-transition-speed: 300ms;
1189
- // Using rem-calc for the below breakpoint causes issues with top bar
1190
- // $topbar-breakpoint: #{upper-bound($medium-range)}; // Change to 9999px for always mobile layout
1191
- // $topbar-media-query: "only screen and (min-width: #{upper-bound($medium-range)})";
1192
-
1193
- // Divider Styles
1194
- // $topbar-divider-border-bottom: solid 1px scale-color($topbar-bg-color, $lightness: 13%);
1195
- // $topbar-divider-border-top: solid 1px scale-color($topbar-bg-color, $lightness: -50%);
1196
-
1197
- // Sticky Class
1198
- // $topbar-sticky-class: ".sticky";
1199
- // $topbar-arrows: true; //Set false to remove the triangle icon from the menu item
1200
-
1201
- //
1202
- // VISIBILITY CLASSES
1203
- //
1204
-
1205
- // $include-html-visibility-classes: $include-html-classes;
1206
- // $include-table-visibility-classes: true;
1207
- // $include-legacy-visibility-classes: true;
1208
-
1209
- //
1210
- // RANGE SLIDER
1211
- //
1212
-
1213
- // $include-html-range-slider-classes: $include-html-classes;
1214
-
1215
- // These variabels define the slider bar styles
1216
- // $range-slider-bar-width: 100%;
1217
- // $range-slider-bar-height: rem-calc(16);
1218
-
1219
- // $range-slider-bar-border-width: 1px;
1220
- // $range-slider-bar-border-style: solid;
1221
- // $range-slider-bar-border-color: #ddd;
1222
- // $range-slider-radius: $global-radius;
1223
- // $range-slider-round: $global-rounded;
1224
- // $range-slider-bar-bg-color: #fafafa;
1225
-
1226
- // Vertical bar styles
1227
- // $range-slider-vertical-bar-width: rem-calc(16);
1228
- // $range-slider-vertical-bar-height: rem-calc(200);
1229
-
1230
- // These variabels define the slider handle styles
1231
- // $range-slider-handle-width: rem-calc(32);
1232
- // $range-slider-handle-height: rem-calc(22);
1233
- // $range-slider-handle-position-top: rem-calc(-5);
1234
- // $range-slider-handle-bg-color: $primary-color;
1235
- // $range-slider-handle-border-width: 1px;
1236
- // $range-slider-handle-border-style: solid;
1237
- // $range-slider-handle-border-color: none;
1238
- // $range-slider-handle-radius: $global-radius;
1239
- // $range-slider-handle-round: $global-rounded;
1240
- // $range-slider-handle-bg-hover-color: scale-color($primary-color, $lightness: -12%);
1241
- // $range-slider-handle-cursor: pointer;
1242
-
1243
-
1244
- $text-direction: rtl;
1245
- $alert-color: $alizarin;
1246
- $success-color: $emerald;
1247
- $include-html-classes: true;
1248
- $input-font-color: $darkgray;
1249
- $fieldset-border-color: #dedede;
1250
- $fieldset-padding: emCalc(20px) emCalc(30px) emCalc(20px);
1251
- $fieldset-margin: emCalc(18px) 0;
1252
- $legend-bg: none;
1253
- $alert-close-color: #fff;
1254
- $alert-close-position: emCalc(12px);
1255
- $section-function-factor: 5%;
1256
- $section-title-bg: #f5f5f5;
1257
- $section-border-color: #dfdfdf;
1258
- $topbar-bg: $headerbg;
1259
- $topbar-margin-bottom: emCalc(20px);
1260
- $topbar-input-height: emCalc(60px);
1261
- $topbar-transition-speed: 300ms;
1262
- $topbar-breakpoint: emCalc(768px); // Change to 9999px for always mobile layout
1263
-
1264
- @import 'foundation';