lesli 5.0.1 → 5.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (213) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/config/lesli_manifest.js +7 -4
  3. data/app/assets/fonts/lesli/Domine/Domine-VariableFont_wght.ttf +0 -0
  4. data/app/assets/fonts/lesli/Domine/OFL.txt +2 -0
  5. data/app/assets/javascripts/lesli/users/passwords.js +776 -0
  6. data/app/assets/javascripts/lesli/users/registrations.js +776 -0
  7. data/app/assets/javascripts/lesli/users/sessions.js +776 -1
  8. data/app/assets/stylesheets/lesli/users/passwords.scss +5 -6
  9. data/app/assets/stylesheets/lesli/users/registrations.scss +5 -6
  10. data/app/assets/stylesheets/lesli/users/sessions.scss +5 -10
  11. data/app/controllers/lesli/abouts_controller.rb +66 -0
  12. data/app/controllers/lesli/application_lesli_controller.rb +0 -1
  13. data/app/controllers/lesli/interfaces/application/logger.rb +9 -9
  14. data/app/controllers/lesli/roles_controller.rb +43 -0
  15. data/{lib/sass/lesli/devise/registrations.scss.erb → app/controllers/lesli/users_controller.rb} +18 -23
  16. data/app/controllers/users/registrations_controller.rb +137 -58
  17. data/app/helpers/lesli/assets_helper.rb +2 -2
  18. data/app/helpers/lesli/general_helper.rb +1 -1
  19. data/app/helpers/lesli/navigation_helper.rb +7 -10
  20. data/app/helpers/lesli/system_helper.rb +1 -1
  21. data/app/lib/lesli/system.rb +7 -3
  22. data/app/mailers/lesli/application_lesli_mailer.rb +199 -0
  23. data/app/mailers/lesli/application_mailer.rb +7 -0
  24. data/app/mailers/lesli/devise_mailer.rb +33 -0
  25. data/app/models/concerns/user_guard.rb +3 -4
  26. data/app/models/lesli/account.rb +29 -0
  27. data/{lib/sass/lesli/pages/passes.scss → app/models/lesli/descriptor.rb} +14 -8
  28. data/app/models/lesli/role.rb +90 -0
  29. data/app/models/lesli/system_controller.rb +1 -0
  30. data/app/models/lesli/user/detail.rb +55 -0
  31. data/{lib/sass/lesli/pages/otps.scss → app/models/lesli/user/role.rb} +13 -9
  32. data/app/models/lesli/user.rb +4 -3
  33. data/app/services/lesli/role_service.rb +45 -0
  34. data/app/services/lesli/user_service.rb +69 -0
  35. data/app/views/devise/passwords/new.html.erb +72 -12
  36. data/app/views/devise/registrations/new.html.erb +146 -28
  37. data/app/views/devise/sessions/new.html.erb +11 -78
  38. data/app/views/devise/shared/_links.html.erb +96 -25
  39. data/app/views/lesli/emails/devise_mailer/confirmation_instructions.html.erb +23 -0
  40. data/app/views/lesli/emails/user_mailer/invitation.html.erb +23 -0
  41. data/app/views/lesli/layouts/application-devise.html.erb +1 -1
  42. data/app/views/lesli/layouts/application-public.html.erb +2 -2
  43. data/app/views/lesli/layouts/mailer.html.erb +13 -0
  44. data/app/views/lesli/layouts/mailer.text.erb +1 -0
  45. data/app/views/lesli/partials/_application-lesli-header.html.erb +27 -41
  46. data/app/views/lesli/partials/_application-lesli-javascript.html.erb +10 -6
  47. data/app/views/lesli/partials/_application-public-javascript.html.erb +12 -8
  48. data/{lib/sass/lesli/devise/confirmations.scss.erb → app/views/lesli/wrappers/_application-devise-simple.erb} +30 -46
  49. data/app/views/lesli/wrappers/{_application-auth.html.erb → _application-devise.html.erb} +15 -0
  50. data/config/initializers/{lesli_defaults.rb → lesli.rb} +4 -2
  51. data/config/locales/translations.en.yml +7 -0
  52. data/config/locales/translations.es.yml +7 -0
  53. data/config/routes.rb +24 -17
  54. data/db/migrate/v1.0/0010000210_create_lesli_roles.rb +1 -1
  55. data/db/{tables/0010003010_create_user_details.rb → migrate/v1.0/0010003010_create_lesli_user_details.rb} +6 -6
  56. data/db/{tables/0010003510_create_user_roles.rb → migrate/v1.0/0010003410_create_lesli_user_roles.rb} +4 -4
  57. data/db/{tables/0010005010_create_descriptors.rb → migrate/v1.0/0010005010_create_lesli_descriptors.rb} +5 -6
  58. data/db/{tables/0010005110_create_descriptor_privileges.rb → migrate/v1.0/0010005110_create_lesli_descriptor_privileges.rb} +8 -7
  59. data/db/{tables/0010005210_create_descriptor_activities.rb → migrate/v1.0/0010005210_create_lesli_descriptor_activities.rb} +6 -8
  60. data/db/seeds.rb +0 -2
  61. data/lib/lesli/engine.rb +25 -2
  62. data/lib/lesli/routing.rb +26 -0
  63. data/lib/lesli/version.rb +2 -2
  64. data/lib/lesli.rb +1 -0
  65. data/lib/{sass/lesli/pages/mfas.scss → mailer_previews/devise_mailer_preview.rb} +12 -6
  66. data/lib/sass/lesli/bulma/loader.scss +3 -0
  67. data/lib/sass/lesli/elements/header.scss +1 -1
  68. data/lib/sass/lesli/fonts/families.scss +3 -3
  69. data/lib/sass/lesli/layouts/application-container.scss +4 -0
  70. data/lib/sass/lesli/{devise/passwords.scss.erb → pages/devise-simple.scss} +38 -38
  71. data/lib/sass/lesli/{templates → pages}/devise.scss +4 -26
  72. data/lib/sass/lesli/settings/variables.scss +1 -1
  73. data/lib/sass/lesli/templates/application.scss +8 -4
  74. data/lib/sass/lesli/templates/dashboards.scss +8 -0
  75. data/lib/sass/lesli/templates/public.scss +2 -3
  76. data/lib/tasks/lesli/controllers.rake +33 -0
  77. data/lib/tasks/lesli/db.rake +88 -0
  78. data/lib/tasks/lesli/git.rake +74 -0
  79. data/lib/tasks/lesli_tasks.rake +70 -20
  80. data/lib/vue/devise/registrations.js +10 -15
  81. data/lib/vue/layouts/application-container.vue +10 -2
  82. data/lib/vue/layouts/application-header.vue +10 -3
  83. data/lib/vue/stores/account.js +113 -0
  84. data/lib/vue/stores/role.js +243 -0
  85. data/lib/vue/stores/translations.json +86 -0
  86. data/lib/vue/stores/user.js +102 -0
  87. data/lib/{sass/lesli/devise/sessions.scss → vue/translation.js} +14 -5
  88. data/lib/webpack/base.js +2 -2
  89. data/lib/webpack/core.js +2 -0
  90. data/readme.md +74 -55
  91. data/vendor/bulma/LICENSE +21 -0
  92. data/vendor/bulma/bulma.sass +10 -0
  93. data/vendor/bulma/css/bulma-rtl.css +11851 -0
  94. data/vendor/bulma/css/bulma-rtl.min.css +1 -0
  95. data/vendor/bulma/css/bulma.css +11851 -0
  96. data/vendor/bulma/css/bulma.min.css +1 -0
  97. data/vendor/bulma/sass/base/_all.sass +6 -0
  98. data/vendor/bulma/sass/base/animations.sass +5 -0
  99. data/vendor/bulma/sass/base/generic.sass +145 -0
  100. data/vendor/bulma/sass/base/helpers.sass +1 -0
  101. data/vendor/bulma/sass/base/minireset.sass +79 -0
  102. data/vendor/bulma/sass/components/_all.sass +15 -0
  103. data/vendor/bulma/sass/components/breadcrumb.sass +77 -0
  104. data/vendor/bulma/sass/components/card.sass +103 -0
  105. data/vendor/bulma/sass/components/dropdown.sass +83 -0
  106. data/vendor/bulma/sass/components/level.sass +79 -0
  107. data/vendor/bulma/sass/components/media.sass +59 -0
  108. data/vendor/bulma/sass/components/menu.sass +59 -0
  109. data/vendor/bulma/sass/components/message.sass +101 -0
  110. data/vendor/bulma/sass/components/modal.sass +117 -0
  111. data/vendor/bulma/sass/components/navbar.sass +446 -0
  112. data/vendor/bulma/sass/components/pagination.sass +167 -0
  113. data/vendor/bulma/sass/components/panel.sass +121 -0
  114. data/vendor/bulma/sass/components/tabs.sass +176 -0
  115. data/vendor/bulma/sass/elements/_all.sass +16 -0
  116. data/vendor/bulma/sass/elements/box.sass +26 -0
  117. data/vendor/bulma/sass/elements/button.sass +357 -0
  118. data/vendor/bulma/sass/elements/container.sass +29 -0
  119. data/vendor/bulma/sass/elements/content.sass +162 -0
  120. data/vendor/bulma/sass/elements/form.sass +1 -0
  121. data/vendor/bulma/sass/elements/icon.sass +46 -0
  122. data/vendor/bulma/sass/elements/image.sass +73 -0
  123. data/vendor/bulma/sass/elements/notification.sass +52 -0
  124. data/vendor/bulma/sass/elements/other.sass +31 -0
  125. data/vendor/bulma/sass/elements/progress.sass +73 -0
  126. data/vendor/bulma/sass/elements/table.sass +134 -0
  127. data/vendor/bulma/sass/elements/tag.sass +140 -0
  128. data/vendor/bulma/sass/elements/title.sass +70 -0
  129. data/vendor/bulma/sass/form/_all.sass +9 -0
  130. data/vendor/bulma/sass/form/checkbox-radio.sass +22 -0
  131. data/vendor/bulma/sass/form/file.sass +184 -0
  132. data/vendor/bulma/sass/form/input-textarea.sass +66 -0
  133. data/vendor/bulma/sass/form/select.sass +88 -0
  134. data/vendor/bulma/sass/form/shared.sass +60 -0
  135. data/vendor/bulma/sass/form/tools.sass +215 -0
  136. data/vendor/bulma/sass/grid/_all.sass +5 -0
  137. data/vendor/bulma/sass/grid/columns.sass +513 -0
  138. data/vendor/bulma/sass/grid/tiles.sass +36 -0
  139. data/vendor/bulma/sass/helpers/_all.sass +12 -0
  140. data/vendor/bulma/sass/helpers/color.sass +39 -0
  141. data/vendor/bulma/sass/helpers/flexbox.sass +35 -0
  142. data/vendor/bulma/sass/helpers/float.sass +10 -0
  143. data/vendor/bulma/sass/helpers/other.sass +14 -0
  144. data/vendor/bulma/sass/helpers/overflow.sass +2 -0
  145. data/vendor/bulma/sass/helpers/position.sass +7 -0
  146. data/vendor/bulma/sass/helpers/spacing.sass +31 -0
  147. data/vendor/bulma/sass/helpers/typography.sass +103 -0
  148. data/vendor/bulma/sass/helpers/visibility.sass +122 -0
  149. data/vendor/bulma/sass/layout/_all.sass +6 -0
  150. data/vendor/bulma/sass/layout/footer.sass +11 -0
  151. data/vendor/bulma/sass/layout/hero.sass +153 -0
  152. data/vendor/bulma/sass/layout/section.sass +17 -0
  153. data/vendor/bulma/sass/utilities/_all.sass +9 -0
  154. data/vendor/bulma/sass/utilities/animations.sass +1 -0
  155. data/vendor/bulma/sass/utilities/controls.sass +49 -0
  156. data/vendor/bulma/sass/utilities/derived-variables.sass +114 -0
  157. data/vendor/bulma/sass/utilities/extends.sass +25 -0
  158. data/vendor/bulma/sass/utilities/functions.sass +135 -0
  159. data/vendor/bulma/sass/utilities/initial-variables.sass +79 -0
  160. data/vendor/bulma/sass/utilities/mixins.sass +303 -0
  161. data/vendor/lesli-css/_index.scss +34 -0
  162. data/vendor/lesli-css/lesli.scss +51 -0
  163. data/{app/assets/stylesheets/lesli/users/devise.scss → vendor/lesli-css/license} +7 -11
  164. data/vendor/lesli-css/src/base/fonts.scss +50 -0
  165. data/vendor/lesli-css/src/base/normalize.scss +118 -0
  166. data/vendor/lesli-css/src/components/blockquote.scss +61 -0
  167. data/vendor/lesli-css/src/components/columns.scss +92 -0
  168. data/vendor/lesli-css/src/components/container.scss +47 -0
  169. data/vendor/lesli-css/src/components/grid.scss +0 -0
  170. data/vendor/lesli-css/src/components/navigation.scss +59 -0
  171. data/vendor/lesli-css/src/functions/colors.scss +184 -0
  172. data/vendor/lesli-css/src/helpers/units.scss +44 -0
  173. data/vendor/lesli-css/src/mixins/breakpoint.scss +184 -0
  174. data/vendor/lesli-css/src/mixins/flex.scss +80 -0
  175. data/vendor/lesli-css/src/mixins/scrollbar.scss +46 -0
  176. data/vendor/lesli-css/src/settings/variables.scss +26 -0
  177. data/vendor/lesli-css/tests/base/normalize.spec.scss +125 -0
  178. data/vendor/lesli-css/tests/functions/colors.spec.scss +117 -0
  179. data/vendor/lesli-css/tests/mixins/breakpoint.spec.scss +429 -0
  180. data/vendor/lesli-css/tests/mixins/scrollbar.spec.scss +82 -0
  181. data/vendor/lesli-css/vendor/normalize.scss +351 -0
  182. data/vendor/remixicon/License +201 -0
  183. data/vendor/remixicon/fonts/remixicon.css +2583 -0
  184. metadata +290 -51
  185. data/app/assets/fonts/lesli/Domine/Domine-Bold.ttf +0 -0
  186. data/app/assets/fonts/lesli/Domine/Domine-Regular.ttf +0 -0
  187. data/app/controllers/lesli/profiles_controller.rb +0 -60
  188. data/app/helpers/lesli/profiles_helper.rb +0 -4
  189. data/app/models/lesli/profile.rb +0 -4
  190. data/app/views/lesli/devise/sessions/_form.html.erb +0 -17
  191. data/app/views/lesli/devise/sessions/_session.html.erb +0 -2
  192. data/app/views/lesli/devise/sessions/edit.html.erb +0 -10
  193. data/app/views/lesli/devise/sessions/index.html.erb +0 -14
  194. data/app/views/lesli/devise/sessions/new.html.erb +0 -9
  195. data/app/views/lesli/devise/sessions/show.html.erb +0 -10
  196. data/app/views/lesli/profiles/_form.html.erb +0 -17
  197. data/app/views/lesli/profiles/_profile.html.erb +0 -2
  198. data/app/views/lesli/profiles/edit.html.erb +0 -10
  199. data/app/views/lesli/profiles/index.html.erb +0 -14
  200. data/app/views/lesli/profiles/new.html.erb +0 -9
  201. data/app/views/lesli/profiles/show.html.erb +0 -10
  202. data/lib/sass/lesli/pages/dashboards.scss +0 -57
  203. data/lib/tasks/db.rb +0 -76
  204. data/lib/vue/stores/profile.js +0 -90
  205. data/lib/vue/stores/workflow2.js +0 -345
  206. data/lib/vue/stores/workflows/actions.js +0 -327
  207. data/lib/vue/stores/workflows/associations.js +0 -130
  208. data/lib/vue/stores/workflows/checks.js +0 -210
  209. /data/lib/vue/stores/{announcements.js → entities/announcements.js} +0 -0
  210. /data/lib/vue/stores/{dashboard.js → entities/dashboard.js} +0 -0
  211. /data/lib/vue/stores/{workflow.js → entities/workflow.js} +0 -0
  212. /data/lib/vue/stores/{cloud-bell → panels}/notification.js +0 -0
  213. /data/lib/vue/stores/{firebase.js → services/firebase.js} +0 -0
@@ -0,0 +1,429 @@
1
+ /*
2
+
3
+ Lesli
4
+
5
+ Copyright (c) 2020, Lesli Technologies, S. A.
6
+
7
+ This program is free software: you can redistribute it and/or modify
8
+ it under the terms of the GNU General Public License as published by
9
+ the Free Software Foundation, either version 3 of the License, or
10
+ (at your option) any later version.
11
+
12
+ This program is distributed in the hope that it will be useful,
13
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ GNU General Public License for more details.
16
+
17
+ You should have received a copy of the GNU General Public License
18
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
19
+
20
+ LesliCSS - SCSS Utilities for websites, apps and web applications
21
+
22
+ Powered by https://www.lesli.tech
23
+ Building a better future, one line of code at a time.
24
+
25
+ @contact <hello@lesli.tech>
26
+ @website <https://lesli.tech>
27
+ @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
28
+
29
+ // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
30
+ // ·
31
+
32
+ */
33
+
34
+
35
+ // ·
36
+ @import "true";
37
+ @import "../../src/mixins/breakpoint.scss";
38
+
39
+
40
+ // ·
41
+ // Describe what you're testing
42
+ @include describe('@mixin lesli-css-breakpoint-builder($min, $max)') {
43
+
44
+ @include it('should create a breakpoint for small sizes') {
45
+
46
+ @include assert {
47
+
48
+ @include output {
49
+ @include lesli-css-breakpoint-builder("small", "small") {
50
+ .div {
51
+ color: red;
52
+ }
53
+ }
54
+ }
55
+
56
+ @include expect {
57
+ @media only screen and (min-width: 320px) and (max-width: 520px) {
58
+ .div {
59
+ color: red;
60
+ }
61
+ }
62
+ }
63
+
64
+ }
65
+
66
+ }
67
+
68
+
69
+ @include it('should create a breakpoint for small as min-width') {
70
+
71
+ @include assert {
72
+
73
+ @include output {
74
+ @include lesli-css-breakpoint-builder("small") {
75
+ .div {
76
+ color: red;
77
+ }
78
+ }
79
+ }
80
+
81
+ @include expect {
82
+ @media only screen and (min-width: 320px) {
83
+ .div {
84
+ color: red;
85
+ }
86
+ }
87
+ }
88
+
89
+ }
90
+
91
+ }
92
+
93
+ @include it('should create a breakpoint for small size') {
94
+
95
+ @include assert {
96
+
97
+ @include output {
98
+ @include lesli-css-breakpoint-small {
99
+ .div {
100
+ color: red;
101
+ }
102
+ }
103
+ }
104
+
105
+ @include expect {
106
+ @media only screen and (max-width: 520px) {
107
+ .div {
108
+ color: red;
109
+ }
110
+ }
111
+ }
112
+
113
+ }
114
+
115
+ }
116
+
117
+ @include it('should create a breakpoint for mobile size') {
118
+
119
+ @include assert {
120
+
121
+ @include output {
122
+ @include lesli-css-breakpoint-mobile {
123
+ .div {
124
+ color: red;
125
+ }
126
+ }
127
+ }
128
+
129
+ @include expect {
130
+ @media only screen and (max-width: 768px) {
131
+ .div {
132
+ color: red;
133
+ }
134
+ }
135
+ }
136
+
137
+ }
138
+
139
+ }
140
+
141
+ @include it('should create a breakpoint above tablet size') {
142
+
143
+ @include assert {
144
+
145
+ @include output {
146
+ @include lesli-css-breakpoint-tablet {
147
+ .div {
148
+ color: red;
149
+ }
150
+ }
151
+ }
152
+
153
+ @include expect {
154
+ @media only screen and (min-width: 769px) {
155
+ .div {
156
+ color: red;
157
+ }
158
+ }
159
+ }
160
+
161
+ }
162
+
163
+ }
164
+
165
+ @include it('should create a breakpoint above desktop size') {
166
+
167
+ @include assert {
168
+
169
+ @include output {
170
+ @include lesli-css-breakpoint-desktop {
171
+ .div {
172
+ color: red;
173
+ }
174
+ }
175
+ }
176
+
177
+ @include expect {
178
+ @media only screen and (min-width: 1024px) {
179
+ .div {
180
+ color: red;
181
+ }
182
+ }
183
+ }
184
+
185
+ }
186
+
187
+ }
188
+
189
+ @include it('should create a breakpoint above widescreen size') {
190
+
191
+ @include assert {
192
+
193
+ @include output {
194
+ @include lesli-css-breakpoint-widescreen {
195
+ .div {
196
+ color: red;
197
+ }
198
+ }
199
+ }
200
+
201
+ @include expect {
202
+ @media only screen and (min-width: 1216px) {
203
+ .div {
204
+ color: red;
205
+ }
206
+ }
207
+ }
208
+
209
+ }
210
+
211
+ }
212
+
213
+ @include it('should create a breakpoint above fullhd size') {
214
+
215
+ @include assert {
216
+
217
+ @include output {
218
+ @include lesli-css-breakpoint-fullhd {
219
+ .div {
220
+ color: red;
221
+ }
222
+ }
223
+ }
224
+
225
+ @include expect {
226
+ @media only screen and (min-width: 1408px) {
227
+ .div {
228
+ color: red;
229
+ }
230
+ }
231
+ }
232
+
233
+ }
234
+
235
+ }
236
+
237
+ @include it('should create a breakpoint until tablet ') {
238
+
239
+ @include assert {
240
+
241
+ @include output {
242
+ @include lesli-css-breakpoint-until-tablet {
243
+ .div {
244
+ color: red;
245
+ }
246
+ }
247
+ }
248
+
249
+ @include expect {
250
+ @media only screen and (max-width: 1023px) {
251
+ .div {
252
+ color: red;
253
+ }
254
+ }
255
+ }
256
+
257
+ }
258
+
259
+ }
260
+
261
+ @include it('should create a breakpoint until desktop ') {
262
+
263
+ @include assert {
264
+
265
+ @include output {
266
+ @include lesli-css-breakpoint-until-desktop {
267
+ .div {
268
+ color: red;
269
+ }
270
+ }
271
+ }
272
+
273
+ @include expect {
274
+ @media only screen and (max-width: 1215px) {
275
+ .div {
276
+ color: red;
277
+ }
278
+ }
279
+ }
280
+
281
+ }
282
+
283
+ }
284
+
285
+ @include it('should create a breakpoint until widescreen ') {
286
+
287
+ @include assert {
288
+
289
+ @include output {
290
+ @include lesli-css-breakpoint-until-widescreen {
291
+ .div {
292
+ color: red;
293
+ }
294
+ }
295
+ }
296
+
297
+ @include expect {
298
+ @media only screen and (max-width: 1407px) {
299
+ .div {
300
+ color: red;
301
+ }
302
+ }
303
+ }
304
+
305
+ }
306
+
307
+ }
308
+
309
+ @include it('should create a breakpoint only for tablet ') {
310
+
311
+ @include assert {
312
+
313
+ @include output {
314
+ @include lesli-css-breakpoint-only-tablet {
315
+ .div {
316
+ color: red;
317
+ }
318
+ }
319
+ }
320
+
321
+ @include expect {
322
+ @media only screen and (min-width: 769px) and (max-width: 1023px) {
323
+ .div {
324
+ color: red;
325
+ }
326
+ }
327
+ }
328
+
329
+ }
330
+
331
+ }
332
+
333
+ @include it('should create a breakpoint only for desktop ') {
334
+
335
+ @include assert {
336
+
337
+ @include output {
338
+ @include lesli-css-breakpoint-only-desktop {
339
+ .div {
340
+ color: red;
341
+ }
342
+ }
343
+ }
344
+
345
+ @include expect {
346
+ @media only screen and (min-width: 1024px) and (max-width: 1215px) {
347
+ .div {
348
+ color: red;
349
+ }
350
+ }
351
+ }
352
+
353
+ }
354
+
355
+ }
356
+
357
+ @include it('should create a breakpoint only for widescreen ') {
358
+
359
+ @include assert {
360
+
361
+ @include output {
362
+ @include lesli-css-breakpoint-only-widescreen {
363
+ .div {
364
+ color: red;
365
+ }
366
+ }
367
+ }
368
+
369
+ @include expect {
370
+ @media only screen and (min-width: 1216px) and (max-width: 1407px) {
371
+ .div {
372
+ color: red;
373
+ }
374
+ }
375
+ }
376
+
377
+ }
378
+
379
+ }
380
+
381
+ @include it('should create a breakpoint with 10px width min') {
382
+
383
+ @include assert {
384
+
385
+ @include output {
386
+ @include lesli-css-breakpoint(10px) {
387
+ .div {
388
+ color: red;
389
+ }
390
+ }
391
+ }
392
+
393
+ @include expect {
394
+ @media only screen and (min-width: 10px) {
395
+ .div {
396
+ color: red;
397
+ }
398
+ }
399
+ }
400
+
401
+ }
402
+
403
+ }
404
+
405
+ @include it('should create a breakpoint with 10px width min and 666px width max') {
406
+
407
+ @include assert {
408
+
409
+ @include output {
410
+ @include lesli-css-breakpoint(10px, 666px) {
411
+ .div {
412
+ color: red;
413
+ }
414
+ }
415
+ }
416
+
417
+ @include expect {
418
+ @media only screen and (min-width: 10px) and (max-width: 666px){
419
+ .div {
420
+ color: red;
421
+ }
422
+ }
423
+ }
424
+
425
+ }
426
+
427
+ }
428
+
429
+ }
@@ -0,0 +1,82 @@
1
+ /*
2
+
3
+ Lesli
4
+
5
+ Copyright (c) 2020, Lesli Technologies, S. A.
6
+
7
+ This program is free software: you can redistribute it and/or modify
8
+ it under the terms of the GNU General Public License as published by
9
+ the Free Software Foundation, either version 3 of the License, or
10
+ (at your option) any later version.
11
+
12
+ This program is distributed in the hope that it will be useful,
13
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ GNU General Public License for more details.
16
+
17
+ You should have received a copy of the GNU General Public License
18
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
19
+
20
+ LesliCSS - SCSS Utilities for websites, apps and web applications
21
+
22
+ Powered by https://www.lesli.tech
23
+ Building a better future, one line of code at a time.
24
+
25
+ @contact <hello@lesli.tech>
26
+ @website <https://lesli.tech>
27
+ @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
28
+
29
+ // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
30
+ // ·
31
+
32
+ */
33
+
34
+
35
+ // ·
36
+ @import "true";
37
+ @import "../../src/mixins/scrollbar.scss";
38
+
39
+
40
+ // ·
41
+ // Describe what you're testing
42
+ @include describe('@mixin lesli-css-scrollbar($style:normal, $color:false, $background:false)') {
43
+
44
+ @include it('should thin scrollbar') {
45
+
46
+ @include assert {
47
+
48
+ @include output {
49
+ @include lesli-css-scrollbar();
50
+ }
51
+
52
+ @include expect {
53
+ scrollbar-width: thin;
54
+ scrollbar-color: #ffffff #ffffff;
55
+ }
56
+
57
+ }
58
+
59
+ }
60
+
61
+ @include it('should thin and hide scrollbar') {
62
+
63
+ @include assert {
64
+
65
+ @include output {
66
+ @include lesli-css-scrollbar(hide);
67
+ }
68
+
69
+ @include expect {
70
+ scrollbar-width: thin;
71
+ scrollbar-color: #ffffff #ffffff;
72
+ &::-webkit-scrollbar {
73
+ width: 0px;
74
+ background-color: #f5f5f5;
75
+ }
76
+ }
77
+
78
+ }
79
+
80
+ }
81
+
82
+ }