bobjoll 1.634.3

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 (96) hide show
  1. package/README.md +35 -0
  2. package/package.json +26 -0
  3. package/scripts/script.js +199 -0
  4. package/scss/layout/_footer.scss +10 -0
  5. package/scss/layout/_header.scss +10 -0
  6. package/scss/modules/_fonts.scss +26 -0
  7. package/scss/modules/_reset.scss +219 -0
  8. package/scss/modules/bourbon/addons/_clearfix.scss +25 -0
  9. package/scss/modules/bourbon/addons/_ellipsis.scss +30 -0
  10. package/scss/modules/bourbon/addons/_position.scss +48 -0
  11. package/scss/modules/bourbon/addons/_prefixer.scss +66 -0
  12. package/scss/modules/bourbon/addons/_size.scss +51 -0
  13. package/scss/modules/bourbon/addons/_timing-functions.scss +34 -0
  14. package/scss/modules/bourbon/addons/_triangle.scss +63 -0
  15. package/scss/modules/bourbon/css3/_calc.scss +4 -0
  16. package/scss/modules/bourbon/css3/_flex-box.scss +287 -0
  17. package/scss/modules/bourbon/css3/_keyframes.scss +36 -0
  18. package/scss/modules/bourbon/css3/_linear-gradient.scss +38 -0
  19. package/scss/modules/bourbon/css3/_placeholder.scss +8 -0
  20. package/scss/modules/bourbon/css3/_selection.scss +42 -0
  21. package/scss/modules/bourbon/css3/_transition.scss +71 -0
  22. package/scss/modules/mixins/_component.scss +9 -0
  23. package/scss/modules/mixins/_grid.scss +75 -0
  24. package/scss/modules/mixins/_helpers.scss +224 -0
  25. package/scss/modules/variables/_colors.scss +447 -0
  26. package/scss/modules/variables/_general.scss +235 -0
  27. package/scss/partials/_accordion-v1-0.scss +165 -0
  28. package/scss/partials/_autocomplete-v1-0.scss +55 -0
  29. package/scss/partials/_general-v1-0.scss +51 -0
  30. package/scss/partials/_grid-v1-0.scss +109 -0
  31. package/scss/partials/_helper-v1-0.scss +299 -0
  32. package/scss/partials/_icon-v2-0.scss +323 -0
  33. package/scss/partials/_list-v1-0.scss +100 -0
  34. package/scss/partials/_modal-v1-0.scss +159 -0
  35. package/scss/partials/_notification-v1-1.scss +297 -0
  36. package/scss/partials/_progress-bar-v1.0.scss +25 -0
  37. package/scss/partials/_range-v1.0.scss +75 -0
  38. package/scss/partials/_tooltipFixed-v1.0.scss +128 -0
  39. package/scss/partials/_typography-v1-0.scss +201 -0
  40. package/scss/partials/animations/_fade.scss +23 -0
  41. package/scss/partials/animations/_rotate.scss +11 -0
  42. package/scss/partials/animations/_scale.scss +23 -0
  43. package/scss/partials/animations/_slide.scss +31 -0
  44. package/scss/partials/button-v4-0/_component.scss +304 -0
  45. package/scss/partials/form/_checkbox-and-radio-v1-0.scss +187 -0
  46. package/scss/partials/form/_dropdowns-v1-0.scss +323 -0
  47. package/scss/partials/form/_general-v1-0.scss +166 -0
  48. package/scss/partials/form/_group-v1-0.scss +157 -0
  49. package/scss/partials/form/_password-v1-0.scss +28 -0
  50. package/scss/partials/form/_switch-v1-0.scss +128 -0
  51. package/scss/partials/form/_upload-v1-0.scss +91 -0
  52. package/ts/library/common.ts +30 -0
  53. package/ts/library/cookie.ts +47 -0
  54. package/ts/library/delegate.ts +122 -0
  55. package/ts/library/dom.ts +124 -0
  56. package/ts/library/event.ts +138 -0
  57. package/ts/library/extend.js +32 -0
  58. package/ts/library/gr/dom.q.ts +12 -0
  59. package/ts/library/gr/social/dependency/twitter_pu.js +66 -0
  60. package/ts/library/gr/social/facebook.ts +154 -0
  61. package/ts/library/gr/social/google.ts +127 -0
  62. package/ts/library/gr/social/index.ts +35 -0
  63. package/ts/library/gr/social/twitter.ts +65 -0
  64. package/ts/library/helpers.ts +9 -0
  65. package/ts/library/number-abbreviate.js +57 -0
  66. package/ts/library/settings.ts +7 -0
  67. package/ts/library/storage.ts +131 -0
  68. package/ts/library/svg4everybody.legacy.js +122 -0
  69. package/ts/partials/accordion-v1.0.ts +104 -0
  70. package/ts/partials/accordionTabs-v1.0.ts +27 -0
  71. package/ts/partials/alert-v1.0.ts +51 -0
  72. package/ts/partials/copy-v1.0.ts +17 -0
  73. package/ts/partials/countdown-v1.0.ts +119 -0
  74. package/ts/partials/dropdown-v1.0.ts +247 -0
  75. package/ts/partials/hbs-v1.0.ts +9 -0
  76. package/ts/partials/modal-v1.0.ts +213 -0
  77. package/ts/partials/notifications-v1.1.ts +376 -0
  78. package/ts/partials/notify-v1.0.ts +746 -0
  79. package/ts/partials/password-v1.0.ts +19 -0
  80. package/ts/partials/popover-v1.0.ts +125 -0
  81. package/ts/partials/progress-bar-v1.0.ts +29 -0
  82. package/ts/partials/scroll-v1.0.ts +169 -0
  83. package/ts/partials/scrollable-v1.0.ts +90 -0
  84. package/ts/partials/tabs-v1.0.ts +79 -0
  85. package/ts/partials/tags-v1.0.ts +21 -0
  86. package/ts/partials/trigger-v2.0.ts +155 -0
  87. package/ts/partials/upload-v1.0.ts +17 -0
  88. package/ts/views/hbs/alert-v1.0/element.html.hbs +35 -0
  89. package/ts/views/hbs/countdown-v1.0/countdown-inner.hbs +39 -0
  90. package/ts/views/hbs/countdown-v1.0/countdown.hbs +4 -0
  91. package/ts/views/hbs/dropdown-v1.0/element.html.hbs +70 -0
  92. package/ts/views/hbs/helpers.js +58 -0
  93. package/ts/views/hbs/modal-v1.0/element.html.hbs +17 -0
  94. package/ts/views/hbs/notification-v1.1/element-disable.html.hbs +26 -0
  95. package/ts/views/hbs/notification-v1.1/element.html.hbs +43 -0
  96. package/ts/views/hbs/notification-v1.1/wrapper.html.hbs +4 -0
@@ -0,0 +1,323 @@
1
+ @if $icon-v2-0 {
2
+ $webfont: "bobjoll" !global;
3
+
4
+ @font-face {
5
+ font-family: $webfont;
6
+ src: url("~bobjoll/fonts/bobjoll.woff2?5d2e1028a913daedf2dd81459e3fad31") format("woff2"),
7
+ url("~bobjoll/fonts/bobjoll.woff?5d2e1028a913daedf2dd81459e3fad31") format("woff");
8
+ }
9
+
10
+ %icon {
11
+ display: block;
12
+
13
+ text-transform: none;
14
+
15
+ -webkit-font-smoothing: antialiased;
16
+ -moz-osx-font-smoothing: grayscale;
17
+
18
+ speak: none;
19
+
20
+ &::before {
21
+ font-family: $webfont;
22
+ font-style: normal;
23
+ font-weight: normal;
24
+ font-variant: normal;
25
+ }
26
+ }
27
+
28
+ .icon {
29
+ @extend %icon;
30
+
31
+ width: $base-icon-width;
32
+ height: $base-icon-height;
33
+
34
+ font-size: $base-icon-width;
35
+ line-height: $base-icon-height;
36
+
37
+ color: color('icon', 'general');
38
+ fill: color('icon', 'general');
39
+ }
40
+
41
+ .icon--inverted {
42
+ color: color('icon-inverted', 'general') !important;
43
+ fill: color('icon-inverted', 'general') !important;
44
+ }
45
+
46
+ $map: map-get($colors, 'social');
47
+
48
+ @each $color, $hex in $map {
49
+ .icon--#{$color} {
50
+ color: $hex;
51
+ fill: $hex;
52
+ }
53
+ }
54
+
55
+ @each $size1 in $sizes {
56
+ $map: map-get($icon-sizes, $size1);
57
+
58
+ .icon--#{$size1} {
59
+ width: map-get($map, 'width');
60
+ height: map-get($map, 'height');
61
+
62
+ font-size: map-get($map, 'width');
63
+ line-height: map-get($map, 'height');
64
+
65
+ @each $size2 in $sizes {
66
+ $icon-spacing: ((map-get($base-sizes, $size2) - map-get($map, 'height')) / 2);
67
+
68
+ &.icon--mg-#{$size2} { padding: $icon-spacing; box-sizing: content-box; }
69
+ } // End spacing
70
+ }
71
+ }
72
+
73
+ .icon--3d { &::before { content: "\f101"; } }
74
+ .icon--add-to-folder { &::before { content: "\f102"; } }
75
+ .icon--addcollection { &::before { content: "\f103"; } }
76
+ .icon--advanced { &::before { content: "\f104"; } }
77
+ .icon--aligncenter { &::before { content: "\f105"; } }
78
+ .icon--alignleft { &::before { content: "\f106"; } }
79
+ .icon--alignright { &::before { content: "\f107"; } }
80
+ .icon--amex { &::before { content: "\f108"; } }
81
+ .icon--api { &::before { content: "\f109"; } }
82
+ .icon--archive { &::before { content: "\f10a"; } }
83
+ .icon--background { &::before { content: "\f10b"; } }
84
+ .icon--backwards { &::before { content: "\f10c"; } }
85
+ .icon--beacon-lineal { &::before { content: "\f10d"; } }
86
+ .icon--beacon { &::before { content: "\f10e"; } }
87
+ .icon--beginner { &::before { content: "\f10f"; } }
88
+ .icon--behance { &::before { content: "\f110"; } }
89
+ .icon--bold { &::before { content: "\f111"; } }
90
+ .icon--book { &::before { content: "\f112"; } }
91
+ .icon--bookmark-filled { &::before { content: "\f113"; } }
92
+ .icon--bookmark { &::before { content: "\f114"; } }
93
+ .icon--briefcase { &::before { content: "\f115"; } }
94
+ .icon--broken-image { &::before { content: "\f116"; } }
95
+ .icon--brush { &::before { content: "\f117"; } }
96
+ .icon--bug { &::before { content: "\f118"; } }
97
+ .icon--bullet { &::before { content: "\f119"; } }
98
+ .icon--business-card { &::before { content: "\f11a"; } }
99
+ .icon--calendar { &::before { content: "\f11b"; } }
100
+ .icon--camera { &::before { content: "\f11c"; } }
101
+ .icon--caret-down { &::before { content: "\f11d"; } }
102
+ .icon--caret-left { &::before { content: "\f11e"; } }
103
+ .icon--caret-right { &::before { content: "\f11f"; } }
104
+ .icon--caret-up { &::before { content: "\f120"; } }
105
+ .icon--check { &::before { content: "\f121"; } }
106
+ .icon--checkbox { &::before { content: "\f122"; } }
107
+ .icon--circle-filled { &::before { content: "\f123"; } }
108
+ .icon--circle-lineal-small { &::before { content: "\f124"; } }
109
+ .icon--circle-lineal { &::before { content: "\f125"; } }
110
+ .icon--circle { &::before { content: "\f126"; } }
111
+ .icon--clean { &::before { content: "\f127"; } }
112
+ .icon--clip { &::before { content: "\f128"; } }
113
+ .icon--cloud { &::before { content: "\f129"; } }
114
+ .icon--collapse { &::before { content: "\f12a"; } }
115
+ .icon--collection { &::before { content: "\f12b"; } }
116
+ .icon--comment { &::before { content: "\f12c"; } }
117
+ .icon--cookie { &::before { content: "\f12d"; } }
118
+ .icon--copy-image { &::before { content: "\f12e"; } }
119
+ .icon--copyright { &::before { content: "\f12f"; } }
120
+ .icon--coupon { &::before { content: "\f130"; } }
121
+ .icon--create-folder-filled { &::before { content: "\f131"; } }
122
+ .icon--create-folder { &::before { content: "\f132"; } }
123
+ .icon--credit-card { &::before { content: "\f133"; } }
124
+ .icon--crop { &::before { content: "\f134"; } }
125
+ .icon--cross-small { &::before { content: "\f135"; } }
126
+ .icon--cross { &::before { content: "\f136"; } }
127
+ .icon--crown { &::before { content: "\f137"; } }
128
+ .icon--dashboard { &::before { content: "\f138"; } }
129
+ .icon--desktop-wallpaper { &::before { content: "\f139"; } }
130
+ .icon--devices { &::before { content: "\f13a"; } }
131
+ .icon--disabled { &::before { content: "\f13b"; } }
132
+ .icon--display-options { &::before { content: "\f13c"; } }
133
+ .icon--dollar { &::before { content: "\f13d"; } }
134
+ .icon--down-small { &::before { content: "\f13e"; } }
135
+ .icon--down { &::before { content: "\f13f"; } }
136
+ .icon--download { &::before { content: "\f140"; } }
137
+ .icon--dribbble { &::before { content: "\f141"; } }
138
+ .icon--duplicate { &::before { content: "\f142"; } }
139
+ .icon--earnings { &::before { content: "\f143"; } }
140
+ .icon--edit { &::before { content: "\f144"; } }
141
+ .icon--education { &::before { content: "\f145"; } }
142
+ .icon--empty { &::before { content: "\f146"; } }
143
+ .icon--envelope-solid { &::before { content: "\f147"; } }
144
+ .icon--envelope { &::before { content: "\f148"; } }
145
+ .icon--exclamation { &::before { content: "\f149"; } }
146
+ .icon--external-link { &::before { content: "\f14a"; } }
147
+ .icon--eye-line-through { &::before { content: "\f14b"; } }
148
+ .icon--eye { &::before { content: "\f14c"; } }
149
+ .icon--facebook { &::before { content: "\f14d"; } }
150
+ .icon--file { &::before { content: "\f14e"; } }
151
+ .icon--filter { &::before { content: "\f14f"; } }
152
+ .icon--fiverr { &::before { content: "\f150"; } }
153
+ .icon--flag { &::before { content: "\f151"; } }
154
+ .icon--flame { &::before { content: "\f152"; } }
155
+ .icon--flaticon-symbol { &::before { content: "\f153"; } }
156
+ .icon--flaticon-text { &::before { content: "\f154"; } }
157
+ .icon--flaticon { &::before { content: "\f155"; } }
158
+ .icon--flip { &::before { content: "\f156"; } }
159
+ .icon--fold { &::before { content: "\f157"; } }
160
+ .icon--folder { &::before { content: "\f158"; } }
161
+ .icon--follow-folder { &::before { content: "\f159"; } }
162
+ .icon--followcollection { &::before { content: "\f15a"; } }
163
+ .icon--following { &::before { content: "\f15b"; } }
164
+ .icon--font { &::before { content: "\f15c"; } }
165
+ .icon--forwards { &::before { content: "\f15d"; } }
166
+ .icon--fullscreen { &::before { content: "\f15e"; } }
167
+ .icon--globe { &::before { content: "\f15f"; } }
168
+ .icon--google { &::before { content: "\f160"; } }
169
+ .icon--graphic-style { &::before { content: "\f161"; } }
170
+ .icon--grid { &::before { content: "\f162"; } }
171
+ .icon--headphones { &::before { content: "\f163"; } }
172
+ .icon--headquarters { &::before { content: "\f164"; } }
173
+ .icon--heart-filled { &::before { content: "\f165"; } }
174
+ .icon--heart { &::before { content: "\f166"; } }
175
+ .icon--history { &::before { content: "\f167"; } }
176
+ .icon--home { &::before { content: "\f168"; } }
177
+ .icon--hourglass { &::before { content: "\f169"; } }
178
+ .icon--images { &::before { content: "\f16a"; } }
179
+ .icon--inbox { &::before { content: "\f16b"; } }
180
+ .icon--info { &::before { content: "\f16c"; } }
181
+ .icon--instagram { &::before { content: "\f16d"; } }
182
+ .icon--interactive { &::before { content: "\f16e"; } }
183
+ .icon--intermediate { &::before { content: "\f16f"; } }
184
+ .icon--interogation { &::before { content: "\f170"; } }
185
+ .icon--italic { &::before { content: "\f171"; } }
186
+ .icon--justify { &::before { content: "\f172"; } }
187
+ .icon--keyboard { &::before { content: "\f173"; } }
188
+ .icon--laptop { &::before { content: "\f174"; } }
189
+ .icon--layers { &::before { content: "\f175"; } }
190
+ .icon--left-small { &::before { content: "\f176"; } }
191
+ .icon--left { &::before { content: "\f177"; } }
192
+ .icon--license { &::before { content: "\f178"; } }
193
+ .icon--light-bulb { &::before { content: "\f179"; } }
194
+ .icon--linkedin { &::before { content: "\f17a"; } }
195
+ .icon--list { &::before { content: "\f17b"; } }
196
+ .icon--lock-open-solid { &::before { content: "\f17c"; } }
197
+ .icon--lock-solid { &::before { content: "\f17d"; } }
198
+ .icon--lock { &::before { content: "\f17e"; } }
199
+ .icon--logo-symbol-old { &::before { content: "\f17f"; } }
200
+ .icon--logo-symbol { &::before { content: "\f180"; } }
201
+ .icon--logo-text-old { &::before { content: "\f181"; } }
202
+ .icon--logo-text { &::before { content: "\f182"; } }
203
+ .icon--logout { &::before { content: "\f183"; } }
204
+ .icon--marker { &::before { content: "\f184"; } }
205
+ .icon--master-card { &::before { content: "\f185"; } }
206
+ .icon--medical-1 { &::before { content: "\f186"; } }
207
+ .icon--medical-2 { &::before { content: "\f187"; } }
208
+ .icon--menuburger { &::before { content: "\f188"; } }
209
+ .icon--menudots-vertical { &::before { content: "\f189"; } }
210
+ .icon--menudots { &::before { content: "\f18a"; } }
211
+ .icon--minimize { &::before { content: "\f18b"; } }
212
+ .icon--minus-small { &::before { content: "\f18c"; } }
213
+ .icon--minus { &::before { content: "\f18d"; } }
214
+ .icon--mockup { &::before { content: "\f18e"; } }
215
+ .icon--move-to-folder-2 { &::before { content: "\f18f"; } }
216
+ .icon--move-to-folder { &::before { content: "\f190"; } }
217
+ .icon--next-small { &::before { content: "\f191"; } }
218
+ .icon--next { &::before { content: "\f192"; } }
219
+ .icon--notification-filled { &::before { content: "\f193"; } }
220
+ .icon--notification { &::before { content: "\f194"; } }
221
+ .icon--o-horizontal { &::before { content: "\f195"; } }
222
+ .icon--o-panoramic { &::before { content: "\f196"; } }
223
+ .icon--o-square { &::before { content: "\f197"; } }
224
+ .icon--o-vertical { &::before { content: "\f198"; } }
225
+ .icon--opacity { &::before { content: "\f199"; } }
226
+ .icon--palette { &::before { content: "\f19a"; } }
227
+ .icon--paper-plane { &::before { content: "\f19b"; } }
228
+ .icon--paper-plane2 { &::before { content: "\f19c"; } }
229
+ .icon--paste { &::before { content: "\f19d"; } }
230
+ .icon--pattern { &::before { content: "\f19e"; } }
231
+ .icon--pause { &::before { content: "\f19f"; } }
232
+ .icon--paypal { &::before { content: "\f1a0"; } }
233
+ .icon--pencil { &::before { content: "\f1a1"; } }
234
+ .icon--phone { &::before { content: "\f1a2"; } }
235
+ .icon--photo { &::before { content: "\f1a3"; } }
236
+ .icon--picpeople-filled { &::before { content: "\f1a4"; } }
237
+ .icon--picpeople { &::before { content: "\f1a5"; } }
238
+ .icon--pinterest { &::before { content: "\f1a6"; } }
239
+ .icon--pixabay { &::before { content: "\f1a7"; } }
240
+ .icon--play { &::before { content: "\f1a8"; } }
241
+ .icon--plus-small { &::before { content: "\f1a9"; } }
242
+ .icon--plus { &::before { content: "\f1aa"; } }
243
+ .icon--presentation { &::before { content: "\f1ab"; } }
244
+ .icon--prev-small { &::before { content: "\f1ac"; } }
245
+ .icon--prev { &::before { content: "\f1ad"; } }
246
+ .icon--projects { &::before { content: "\f1ae"; } }
247
+ .icon--psd { &::before { content: "\f1af"; } }
248
+ .icon--quote { &::before { content: "\f1b0"; } }
249
+ .icon--receipt { &::before { content: "\f1b1"; } }
250
+ .icon--redo { &::before { content: "\f1b2"; } }
251
+ .icon--reflect-horizontal { &::before { content: "\f1b3"; } }
252
+ .icon--reflect-vertical { &::before { content: "\f1b4"; } }
253
+ .icon--refresh { &::before { content: "\f1b5"; } }
254
+ .icon--remove-folder { &::before { content: "\f1b6"; } }
255
+ .icon--removecollection { &::before { content: "\f1b7"; } }
256
+ .icon--replace { &::before { content: "\f1b8"; } }
257
+ .icon--resources { &::before { content: "\f1b9"; } }
258
+ .icon--right-small { &::before { content: "\f1ba"; } }
259
+ .icon--right { &::before { content: "\f1bb"; } }
260
+ .icon--rotate-inverted { &::before { content: "\f1bc"; } }
261
+ .icon--rotate { &::before { content: "\f1bd"; } }
262
+ .icon--save { &::before { content: "\f1be"; } }
263
+ .icon--search { &::before { content: "\f1bf"; } }
264
+ .icon--security { &::before { content: "\f1c0"; } }
265
+ .icon--settings { &::before { content: "\f1c1"; } }
266
+ .icon--share { &::before { content: "\f1c2"; } }
267
+ .icon--shopping-cart { &::before { content: "\f1c3"; } }
268
+ .icon--shuffle { &::before { content: "\f1c4"; } }
269
+ .icon--slidesgo { &::before { content: "\f1c5"; } }
270
+ .icon--smiley-comment { &::before { content: "\f1c6"; } }
271
+ .icon--sortcollection { &::before { content: "\f1c7"; } }
272
+ .icon--speaker { &::before { content: "\f1c8"; } }
273
+ .icon--spinner { &::before { content: "\f1c9"; } }
274
+ .icon--square-lineal { &::before { content: "\f1ca"; } }
275
+ .icon--square { &::before { content: "\f1cb"; } }
276
+ .icon--squares { &::before { content: "\f1cc"; } }
277
+ .icon--squircle-lineal { &::before { content: "\f1cd"; } }
278
+ .icon--squircle { &::before { content: "\f1ce"; } }
279
+ .icon--star-comment { &::before { content: "\f1cf"; } }
280
+ .icon--star-filled { &::before { content: "\f1d0"; } }
281
+ .icon--star { &::before { content: "\f1d1"; } }
282
+ .icon--stats { &::before { content: "\f1d2"; } }
283
+ .icon--sticker { &::before { content: "\f1d3"; } }
284
+ .icon--stop { &::before { content: "\f1d4"; } }
285
+ .icon--stroke { &::before { content: "\f1d5"; } }
286
+ .icon--stumbleupon { &::before { content: "\f1d6"; } }
287
+ .icon--subtitles { &::before { content: "\f1d7"; } }
288
+ .icon--support { &::before { content: "\f1d8"; } }
289
+ .icon--tablet { &::before { content: "\f1d9"; } }
290
+ .icon--tag { &::before { content: "\f1da"; } }
291
+ .icon--telegram { &::before { content: "\f1db"; } }
292
+ .icon--template-alt { &::before { content: "\f1dc"; } }
293
+ .icon--template { &::before { content: "\f1dd"; } }
294
+ .icon--text-shadow { &::before { content: "\f1de"; } }
295
+ .icon--thumb-down { &::before { content: "\f1df"; } }
296
+ .icon--thumb-up { &::before { content: "\f1e0"; } }
297
+ .icon--time { &::before { content: "\f1e1"; } }
298
+ .icon--trash { &::before { content: "\f1e2"; } }
299
+ .icon--twitter { &::before { content: "\f1e3"; } }
300
+ .icon--underline { &::before { content: "\f1e4"; } }
301
+ .icon--undo { &::before { content: "\f1e5"; } }
302
+ .icon--unfold { &::before { content: "\f1e6"; } }
303
+ .icon--unlock { &::before { content: "\f1e7"; } }
304
+ .icon--up-small { &::before { content: "\f1e8"; } }
305
+ .icon--up { &::before { content: "\f1e9"; } }
306
+ .icon--upload-to-folder { &::before { content: "\f1ea"; } }
307
+ .icon--upload { &::before { content: "\f1eb"; } }
308
+ .icon--url { &::before { content: "\f1ec"; } }
309
+ .icon--user { &::before { content: "\f1ed"; } }
310
+ .icon--users { &::before { content: "\f1ee"; } }
311
+ .icon--vector { &::before { content: "\f1ef"; } }
312
+ .icon--video-linear { &::before { content: "\f1f0"; } }
313
+ .icon--video { &::before { content: "\f1f1"; } }
314
+ .icon--vimeo { &::before { content: "\f1f2"; } }
315
+ .icon--visa { &::before { content: "\f1f3"; } }
316
+ .icon--volume { &::before { content: "\f1f4"; } }
317
+ .icon--warning-filled { &::before { content: "\f1f5"; } }
318
+ .icon--whatsapp { &::before { content: "\f1f6"; } }
319
+ .icon--world { &::before { content: "\f1f7"; } }
320
+ .icon--youtube { &::before { content: "\f1f8"; } }
321
+ .icon--zoom-in { &::before { content: "\f1f9"; } }
322
+ .icon--zoom-out { &::before { content: "\f1fa"; } }
323
+ }
@@ -0,0 +1,100 @@
1
+ @if $list-v1-0 {
2
+ ul, ol, dl {
3
+ margin: 0;
4
+ padding: 0;
5
+ }
6
+
7
+ li {
8
+ list-style: none;
9
+ }
10
+
11
+ .list {
12
+ margin: 0 0 $base-spacing;
13
+
14
+ li {
15
+ position: relative;
16
+
17
+ margin: 0 0 ($extra-small-spacing / 2);
18
+ padding: 0 0 0 $small-spacing;
19
+
20
+ list-style: none;
21
+
22
+ &::before {
23
+ $bullet-width: 6px;
24
+ $bullet-height: $bullet-width;
25
+ $bullet-spacing: floor(floor($base-line-height * $base-font-size) - $bullet-height) / 2;
26
+
27
+ display: inline-block;
28
+
29
+ width: $bullet-width;
30
+ height: $bullet-height;
31
+
32
+ margin: ($bullet-spacing - 1) $small-spacing $bullet-spacing ($small-spacing * -1);
33
+
34
+ border-radius: 50%;
35
+
36
+ background-color: color('text', 'general');
37
+
38
+ vertical-align: middle;
39
+
40
+ content: '';
41
+ }
42
+ }
43
+
44
+ @each $size in $sizes {
45
+ @include modifier($size) {
46
+ li {
47
+ font-size: map-get($font-sizes, $size);
48
+ line-height: map-get($line-height-sizes, $size);
49
+
50
+ &::before {
51
+ $bullet-width: 6px;
52
+ $bullet-height: $bullet-width;
53
+ $bullet-spacing: floor(floor(map-get($line-height-sizes, $size) * map-get($font-sizes, $size)) - $bullet-height) / 2;
54
+
55
+ margin: $bullet-spacing $extra-small-spacing 0 0;
56
+ }
57
+ }
58
+ }
59
+ } // End sizes
60
+
61
+ @include modifier('horizontal') {
62
+ @include clearfix;
63
+
64
+ display: block;
65
+
66
+ li {
67
+ float: left;
68
+
69
+ margin: 0 $small-spacing 0 0;
70
+
71
+ &:last-child {
72
+ margin: 0;
73
+ }
74
+ }
75
+ }
76
+
77
+ @include modifier('comma-separated') {
78
+ li {
79
+ margin: 0;
80
+ padding: 0;
81
+ }
82
+
83
+ li:not(:last-child)::after {
84
+ content: ',\00a0'
85
+ }
86
+
87
+ li:last-child::after {
88
+ content: '.'
89
+ }
90
+ }
91
+
92
+ @include modifier('nospacing') {
93
+ margin: 0;
94
+
95
+ li {
96
+ margin: 0;
97
+ }
98
+ }
99
+ }
100
+ } // End if
@@ -0,0 +1,159 @@
1
+ @if $modal-v1-0 {
2
+ .modal {
3
+ @include position(fixed, 0 null null 0);
4
+ @include transform(scale(0));
5
+ @include transition(
6
+ opacity ($base-duration / 2) ($base-duration / 2) $base-timing,
7
+ transform $base-duration ($base-duration) $base-timing
8
+ );
9
+
10
+ opacity: 0;
11
+
12
+ & iframe,object {
13
+ display: none;
14
+ }
15
+
16
+ width: 100vw;
17
+ height: 0vh;
18
+
19
+ padding: 0 $base-spacing;
20
+
21
+ background-color: color('overlay', 'background', .75);
22
+
23
+ text-align: center;
24
+ line-height: 100vh;
25
+
26
+ z-index: 100;
27
+
28
+ &.scrollable {
29
+ overflow-y: scroll;
30
+ }
31
+
32
+ &.active {
33
+ @include transform(scale(1));
34
+ @include transition(opacity $base-duration $base-timing);
35
+
36
+ opacity: 1;
37
+
38
+ height: 100vh;
39
+
40
+ & > * {
41
+ @include transform(scale(1));
42
+ @include transition($base-duration $base-duration $base-timing);
43
+
44
+ opacity: 1;
45
+ }
46
+
47
+ & iframe,object {
48
+ display: block;
49
+ }
50
+ }
51
+
52
+ & > * {
53
+ @include transform(scale(.8));
54
+ @include transition($base-duration $base-timing);
55
+
56
+ opacity: 0;
57
+ }
58
+
59
+ @include element('container') {
60
+ position: relative;
61
+
62
+ display: inline-block;
63
+
64
+ width: 100%;
65
+ max-width: map-get($breakpoints, 'lg');
66
+
67
+ margin: $large-spacing * 2 0;
68
+
69
+ vertical-align: middle;
70
+
71
+ text-align: left;
72
+ line-height: $base-line-height;
73
+
74
+ & > .content {
75
+ overflow: hidden;
76
+
77
+ padding: $base-spacing;
78
+
79
+ border-radius: $base-border-radius;
80
+
81
+ background-color: color('modal', 'background');
82
+ }
83
+ }
84
+
85
+ @include element('close') {
86
+ &:not(.nostyle) {
87
+ @include appearance(none);
88
+ @include position(absolute, 0 0 null null);
89
+ @include backface-visibility(hidden);
90
+
91
+ margin: $extra-small-spacing;
92
+ padding: 0;
93
+ font-size: $large-font-size * 2;
94
+ line-height: 1;
95
+ z-index: 10;
96
+ }
97
+ }
98
+
99
+ @include element('close') {
100
+ @include modifier('absolute') {
101
+ @include position(absolute, null null null null);
102
+
103
+ z-index: 1;
104
+ }
105
+
106
+ @include modifier('top-left') {
107
+ top: 0;
108
+ left: 0;
109
+ }
110
+
111
+ @include modifier('top-right') {
112
+ top: 0;
113
+ right: 0;
114
+ }
115
+
116
+ @include modifier('bottom-left') {
117
+ top: 0;
118
+ left: 0;
119
+ }
120
+
121
+ @include modifier('bottom-right') {
122
+ top: 0;
123
+ right: 0;
124
+ }
125
+ }
126
+
127
+ @include modifier('full-screen') {
128
+ padding: 0;
129
+
130
+ line-height: inherit;
131
+
132
+ .modal__container {
133
+ width: 100%;
134
+ max-width: inherit;
135
+ height: 100%;
136
+
137
+ margin: 0;
138
+ padding: 0;
139
+
140
+ background-color: color('modal', 'background');
141
+
142
+ vertical-align: inherit;
143
+ }
144
+ }
145
+
146
+ @include element('trigger') {
147
+ cursor: pointer;
148
+ }
149
+
150
+ // Sizes
151
+ @each $size in $sizes {
152
+ @include modifier($size) {
153
+ .modal__container {
154
+ max-width: map-get($breakpoints, $size);
155
+ }
156
+ }
157
+ }
158
+ }
159
+ } // End if