lesli_babel 0.7.0 → 1.1.0

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 (100) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/lesli_babel/babel-logo.svg +1 -157
  3. data/app/assets/javascripts/lesli_babel/application.js +1 -4602
  4. data/app/assets/stylesheets/lesli_babel/application.css +0 -1051
  5. data/app/controllers/lesli_babel/buckets_controller.rb +8 -16
  6. data/app/controllers/lesli_babel/dashboards_controller.rb +1 -0
  7. data/app/controllers/lesli_babel/labels_controller.rb +122 -0
  8. data/app/controllers/lesli_babel/modules_controller.rb +6 -44
  9. data/app/controllers/lesli_babel/translations_controller.rb +7 -61
  10. data/app/helpers/lesli_babel/labels_helper.rb +4 -0
  11. data/app/models/lesli_babel/label.rb +57 -0
  12. data/app/models/lesli_babel/module.rb +1 -9
  13. data/app/services/lesli_babel/label_service.rb +54 -0
  14. data/app/services/lesli_babel/module_service.rb +4 -1
  15. data/app/services/lesli_babel/translation_service.rb +164 -0
  16. data/app/views/lesli_babel/dashboards/show.html.erb +28 -1
  17. data/app/views/lesli_babel/labels/_form.html.erb +35 -0
  18. data/app/views/lesli_babel/labels/index.html.erb +59 -0
  19. data/app/views/lesli_babel/labels/new.html.erb +11 -0
  20. data/app/views/lesli_babel/labels/show.html.erb +10 -0
  21. data/app/views/lesli_babel/partials/{_engine-navigation.html.erb → _navigation.html.erb} +1 -1
  22. data/config/locales/translations.en.yml +1 -20
  23. data/config/locales/translations.es.yml +1 -20
  24. data/config/locales/translations.fr.yml +1 -20
  25. data/config/locales/translations.it.yml +1 -20
  26. data/config/locales/translations.pt.yml +1 -20
  27. data/config/routes.rb +11 -21
  28. data/db/migrate/v1.0/{0901120110_create_lesli_babel_strings.rb → 0901120110_create_lesli_babel_labels.rb} +9 -8
  29. data/lib/lesli_babel/version.rb +2 -2
  30. data/lib/tasks/lesli_babel_tasks.rake +14 -22
  31. data/readme.md +71 -28
  32. metadata +24 -96
  33. data/app/controllers/lesli_babel/clones_controller.rb +0 -80
  34. data/app/controllers/lesli_babel/relevants_controller.rb +0 -38
  35. data/app/controllers/lesli_babel/strings_controller.rb +0 -142
  36. data/app/models/lesli_babel/clone.rb +0 -24
  37. data/app/models/lesli_babel/relevant.rb +0 -21
  38. data/app/models/lesli_babel/string.rb +0 -242
  39. data/app/models/lesli_babel/translation.rb +0 -5
  40. data/app/services/lesli_babel/deploy_rails_service.rb +0 -142
  41. data/app/services/lesli_babel/string_service.rb +0 -78
  42. data/app/views/lesli_babel/buckets/_form.html.erb +0 -17
  43. data/app/views/lesli_babel/buckets/edit.html.erb +0 -6
  44. data/app/views/lesli_babel/buckets/index.html.erb +0 -25
  45. data/app/views/lesli_babel/buckets/new.html.erb +0 -5
  46. data/app/views/lesli_babel/buckets/show.html.erb +0 -4
  47. data/app/views/lesli_babel/clones/_form.html.erb +0 -19
  48. data/app/views/lesli_babel/clones/edit.html.erb +0 -20
  49. data/app/views/lesli_babel/clones/index.html.erb +0 -20
  50. data/app/views/lesli_babel/clones/new.html.erb +0 -20
  51. data/app/views/lesli_babel/clones/show.html.erb +0 -20
  52. data/app/views/lesli_babel/dashboards/stats..html.erb +0 -1
  53. data/app/views/lesli_babel/modules/_form.html.erb +0 -17
  54. data/app/views/lesli_babel/modules/edit.html.erb +0 -1
  55. data/app/views/lesli_babel/modules/index.html.erb +0 -1
  56. data/app/views/lesli_babel/modules/new.html.erb +0 -1
  57. data/app/views/lesli_babel/modules/show.html.erb +0 -1
  58. data/app/views/lesli_babel/relevants/edit.html.erb +0 -20
  59. data/app/views/lesli_babel/relevants/index.html.erb +0 -21
  60. data/app/views/lesli_babel/relevants/new.html.erb +0 -20
  61. data/app/views/lesli_babel/relevants/show.html.erb +0 -20
  62. data/app/views/lesli_babel/string/activities/_form.html.erb +0 -17
  63. data/app/views/lesli_babel/string/activities/edit.html.erb +0 -6
  64. data/app/views/lesli_babel/string/activities/index.html.erb +0 -25
  65. data/app/views/lesli_babel/string/activities/new.html.erb +0 -5
  66. data/app/views/lesli_babel/string/activities/show.html.erb +0 -4
  67. data/app/views/lesli_babel/string/discussions/_form.html.erb +0 -17
  68. data/app/views/lesli_babel/string/discussions/edit.html.erb +0 -6
  69. data/app/views/lesli_babel/string/discussions/index.html.erb +0 -25
  70. data/app/views/lesli_babel/string/discussions/new.html.erb +0 -5
  71. data/app/views/lesli_babel/string/discussions/show.html.erb +0 -4
  72. data/app/views/lesli_babel/strings/_form.html.erb +0 -17
  73. data/app/views/lesli_babel/strings/edit.html.erb +0 -6
  74. data/app/views/lesli_babel/strings/index.html.erb +0 -25
  75. data/app/views/lesli_babel/strings/new.html.erb +0 -5
  76. data/app/views/lesli_babel/strings/show.html.erb +0 -4
  77. data/app/views/lesli_babel/translations/_form.html.erb +0 -17
  78. data/app/views/lesli_babel/translations/edit.html.erb +0 -6
  79. data/app/views/lesli_babel/translations/index.html.erb +0 -1
  80. data/app/views/lesli_babel/translations/new.html.erb +0 -5
  81. data/app/views/lesli_babel/translations/show.html.erb +0 -1
  82. data/lib/scss/application.scss +0 -47
  83. data/lib/scss/dashboards.scss +0 -56
  84. data/lib/scss/modules.scss +0 -34
  85. data/lib/scss/translations.scss +0 -59
  86. data/lib/vue/application.js +0 -69
  87. data/lib/vue/apps/dashboards/show.vue +0 -83
  88. data/lib/vue/apps/modules/show.vue +0 -106
  89. data/lib/vue/apps/relevants/index.vue +0 -47
  90. data/lib/vue/apps/translations/index.vue +0 -64
  91. data/lib/vue/components/actions.vue +0 -29
  92. data/lib/vue/components/form-label-editor.vue +0 -439
  93. data/lib/vue/components/form-string-new.vue +0 -130
  94. data/lib/vue/stores/module.js +0 -63
  95. data/lib/vue/stores/statistics.js +0 -42
  96. data/lib/vue/stores/string.js +0 -84
  97. data/lib/vue/stores/strings.js +0 -141
  98. data/lib/vue/stores/translations.js +0 -73
  99. data/lib/vue/stores/translations.json +0 -152
  100. /data/app/views/lesli_babel/partials/{_engine-sidebar.html.erb → _sidebar.html.erb} +0 -0
@@ -1,1051 +0,0 @@
1
- /*!*********************************************************************************************************************************************************!*\
2
- !*** css ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-15.use[1]!./node_modules/sass-loader/dist/cjs.js!../LesliBabel/lib/scss/application.scss ***!
3
- \*********************************************************************************************************************************************************/
4
- @charset "UTF-8";
5
- /*
6
-
7
- Lesli
8
-
9
- Copyright (c) 2023, Lesli Technologies, S. A.
10
-
11
- This program is free software: you can redistribute it and/or modify
12
- it under the terms of the GNU General Public License as published by
13
- the Free Software Foundation, either version 3 of the License, or
14
- (at your option) any later version.
15
-
16
- This program is distributed in the hope that it will be useful,
17
- but WITHOUT ANY WARRANTY; without even the implied warranty of
18
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19
- GNU General Public License for more details.
20
-
21
- You should have received a copy of the GNU General Public License
22
- along with this program. If not, see http://www.gnu.org/licenses/.
23
-
24
- Lesli · Ruby on Rails SaaS Development Framework.
25
-
26
- Made with ♥ by https://www.lesli.tech
27
- Building a better future, one line of code at a time.
28
-
29
- @contact hello@lesli.tech
30
- @website https://www.lesli.tech
31
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
32
-
33
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
34
- // ·
35
- */
36
- body.lesli-babel,
37
- body.lesli-babel-dashboard {
38
- /*
39
-
40
- Lesli
41
-
42
- Copyright (c) 2023, Lesli Technologies, S. A.
43
-
44
- This program is free software: you can redistribute it and/or modify
45
- it under the terms of the GNU General Public License as published by
46
- the Free Software Foundation, either version 3 of the License, or
47
- (at your option) any later version.
48
-
49
- This program is distributed in the hope that it will be useful,
50
- but WITHOUT ANY WARRANTY; without even the implied warranty of
51
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
52
- GNU General Public License for more details.
53
-
54
- You should have received a copy of the GNU General Public License
55
- along with this program. If not, see http://www.gnu.org/licenses/.
56
-
57
- Lesli · Ruby on Rails SaaS Development Framework.
58
-
59
- Made with ♥ by https://www.lesli.tech
60
- Building a better future, one line of code at a time.
61
-
62
- @contact hello@lesli.tech
63
- @website https://www.lesli.tech
64
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
65
-
66
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
67
- // ·
68
- */
69
- /*
70
-
71
- Lesli
72
-
73
- Copyright (c) 2023, Lesli Technologies, S. A.
74
-
75
- This program is free software: you can redistribute it and/or modify
76
- it under the terms of the GNU General Public License as published by
77
- the Free Software Foundation, either version 3 of the License, or
78
- (at your option) any later version.
79
-
80
- This program is distributed in the hope that it will be useful,
81
- but WITHOUT ANY WARRANTY; without even the implied warranty of
82
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
83
- GNU General Public License for more details.
84
-
85
- You should have received a copy of the GNU General Public License
86
- along with this program. If not, see http://www.gnu.org/licenses/.
87
-
88
- Lesli · Ruby on Rails SaaS Development Framework.
89
-
90
- Made with ♥ by https://www.lesli.tech
91
- Building a better future, one line of code at a time.
92
-
93
- @contact hello@lesli.tech
94
- @website https://www.lesli.tech
95
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
96
-
97
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
98
- // ·
99
- */
100
- /*
101
- Lesli
102
-
103
- Copyright (c) 2022, Lesli Technologies, S. A.
104
-
105
- This program is free software: you can redistribute it and/or modify
106
- it under the terms of the GNU General Public License as published by
107
- the Free Software Foundation, either version 3 of the License, or
108
- (at your option) any later version.
109
-
110
- This program is distributed in the hope that it will be useful,
111
- but WITHOUT ANY WARRANTY; without even the implied warranty of
112
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
113
- GNU General Public License for more details.
114
-
115
- You should have received a copy of the GNU General Public License
116
- along with this program. If not, see <http://www.gnu.org/licenses/>.
117
-
118
- LesliCSS - SCSS Utilities for websites, apps and web applications
119
-
120
- Powered by https://www.lesli.tech
121
- Building a better future, one line of code at a time.
122
-
123
- @contact <hello@lesli.tech>
124
- @website <https://lesli.tech>
125
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
126
-
127
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
128
- // ·
129
- */
130
- /*
131
- Lesli
132
-
133
- Copyright (c) 2022, Lesli Technologies, S. A.
134
-
135
- This program is free software: you can redistribute it and/or modify
136
- it under the terms of the GNU General Public License as published by
137
- the Free Software Foundation, either version 3 of the License, or
138
- (at your option) any later version.
139
-
140
- This program is distributed in the hope that it will be useful,
141
- but WITHOUT ANY WARRANTY; without even the implied warranty of
142
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
143
- GNU General Public License for more details.
144
-
145
- You should have received a copy of the GNU General Public License
146
- along with this program. If not, see <http://www.gnu.org/licenses/>.
147
-
148
- LesliCSS - SCSS Utilities for websites, apps and web applications
149
-
150
- Powered by https://www.lesli.tech
151
- Building a better future, one line of code at a time.
152
-
153
- @contact <hello@lesli.tech>
154
- @website <https://lesli.tech>
155
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
156
-
157
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
158
- // ·
159
- */
160
- /*
161
- Lesli
162
-
163
- Copyright (c) 2020, Lesli Technologies, S. A.
164
-
165
- This program is free software: you can redistribute it and/or modify
166
- it under the terms of the GNU General Public License as published by
167
- the Free Software Foundation, either version 3 of the License, or
168
- (at your option) any later version.
169
-
170
- This program is distributed in the hope that it will be useful,
171
- but WITHOUT ANY WARRANTY; without even the implied warranty of
172
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
173
- GNU General Public License for more details.
174
-
175
- You should have received a copy of the GNU General Public License
176
- along with this program. If not, see <http://www.gnu.org/licenses/>.
177
-
178
- LesliCSS - SCSS Utilities for websites, apps and web applications
179
-
180
- Powered by https://www.lesli.tech
181
- Building a better future, one line of code at a time.
182
-
183
- @contact <hello@lesli.tech>
184
- @website <https://lesli.tech>
185
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
186
-
187
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
188
- // ·
189
- */
190
- /**
191
- Lesli
192
-
193
- Copyright (c) 2022, Lesli Technologies, S. A.
194
-
195
- This program is free software: you can redistribute it and/or modify
196
- it under the terms of the GNU General Public License as published by
197
- the Free Software Foundation, either version 3 of the License, or
198
- (at your option) any later version.
199
-
200
- This program is distributed in the hope that it will be useful,
201
- but WITHOUT ANY WARRANTY; without even the implied warranty of
202
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
203
- GNU General Public License for more details.
204
-
205
- You should have received a copy of the GNU General Public License
206
- along with this program. If not, see <http://www.gnu.org/licenses/>.
207
-
208
- LesliCSS - SCSS Utilities for websites, apps and web applications
209
-
210
- Powered by https://www.lesli.tech
211
- Building a better future, one line of code at a time.
212
-
213
- @contact <hello@lesli.tech>
214
- @website <https://lesli.tech>
215
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
216
-
217
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
218
- // ·
219
- */
220
- /**
221
- Lesli
222
-
223
- Copyright (c) 2022, Lesli Technologies, S. A.
224
-
225
- This program is free software: you can redistribute it and/or modify
226
- it under the terms of the GNU General Public License as published by
227
- the Free Software Foundation, either version 3 of the License, or
228
- (at your option) any later version.
229
-
230
- This program is distributed in the hope that it will be useful,
231
- but WITHOUT ANY WARRANTY; without even the implied warranty of
232
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
233
- GNU General Public License for more details.
234
-
235
- You should have received a copy of the GNU General Public License
236
- along with this program. If not, see <http://www.gnu.org/licenses/>.
237
-
238
- LesliCSS - SCSS Utilities for websites, apps and web applications
239
-
240
- Powered by https://www.lesli.tech
241
- Building a better future, one line of code at a time.
242
-
243
- @contact <hello@lesli.tech>
244
- @website <https://lesli.tech>
245
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
246
-
247
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
248
- // ·
249
- */
250
- /*
251
- Lesli
252
-
253
- Copyright (c) 2022, Lesli Technologies, S. A.
254
-
255
- This program is free software: you can redistribute it and/or modify
256
- it under the terms of the GNU General Public License as published by
257
- the Free Software Foundation, either version 3 of the License, or
258
- (at your option) any later version.
259
-
260
- This program is distributed in the hope that it will be useful,
261
- but WITHOUT ANY WARRANTY; without even the implied warranty of
262
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
263
- GNU General Public License for more details.
264
-
265
- You should have received a copy of the GNU General Public License
266
- along with this program. If not, see <http://www.gnu.org/licenses/>.
267
-
268
- LesliCSS - SCSS Utilities for websites, apps and web applications
269
-
270
- Powered by https://www.lesli.tech
271
- Building a better future, one line of code at a time.
272
-
273
- @contact <hello@lesli.tech>
274
- @website <https://lesli.tech>
275
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
276
-
277
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
278
- // ·
279
- */
280
- /*
281
- Lesli
282
-
283
- Copyright (c) 2022, Lesli Technologies, S. A.
284
-
285
- This program is free software: you can redistribute it and/or modify
286
- it under the terms of the GNU General Public License as published by
287
- the Free Software Foundation, either version 3 of the License, or
288
- (at your option) any later version.
289
-
290
- This program is distributed in the hope that it will be useful,
291
- but WITHOUT ANY WARRANTY; without even the implied warranty of
292
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
293
- GNU General Public License for more details.
294
-
295
- You should have received a copy of the GNU General Public License
296
- along with this program. If not, see <http://www.gnu.org/licenses/>.
297
-
298
- LesliCSS - SCSS Utilities for websites, apps and web applications
299
-
300
- Powered by https://www.lesli.tech
301
- Building a better future, one line of code at a time.
302
-
303
- @contact <hello@lesli.tech>
304
- @website <https://lesli.tech>
305
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
306
-
307
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
308
- // ·
309
- */
310
- /*
311
- Lesli
312
-
313
- Copyright (c) 2020, Lesli Technologies, S. A.
314
-
315
- This program is free software: you can redistribute it and/or modify
316
- it under the terms of the GNU General Public License as published by
317
- the Free Software Foundation, either version 3 of the License, or
318
- (at your option) any later version.
319
-
320
- This program is distributed in the hope that it will be useful,
321
- but WITHOUT ANY WARRANTY; without even the implied warranty of
322
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
323
- GNU General Public License for more details.
324
-
325
- You should have received a copy of the GNU General Public License
326
- along with this program. If not, see <http://www.gnu.org/licenses/>.
327
-
328
- LesliCSS - SCSS Utilities for websites, apps and web applications
329
-
330
- Powered by https://www.lesli.tech
331
- Building a better future, one line of code at a time.
332
-
333
- @contact <hello@lesli.tech>
334
- @website <https://lesli.tech>
335
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
336
-
337
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
338
- // ·
339
- */
340
- /*
341
- Lesli
342
-
343
- Copyright (c) 2022, Lesli Technologies, S. A.
344
-
345
- This program is free software: you can redistribute it and/or modify
346
- it under the terms of the GNU General Public License as published by
347
- the Free Software Foundation, either version 3 of the License, or
348
- (at your option) any later version.
349
-
350
- This program is distributed in the hope that it will be useful,
351
- but WITHOUT ANY WARRANTY; without even the implied warranty of
352
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
353
- GNU General Public License for more details.
354
-
355
- You should have received a copy of the GNU General Public License
356
- along with this program. If not, see <http://www.gnu.org/licenses/>.
357
-
358
- LesliCSS - SCSS Utilities for websites, apps and web applications
359
-
360
- Powered by https://www.lesli.tech
361
- Building a better future, one line of code at a time.
362
-
363
- @contact <hello@lesli.tech>
364
- @website <https://lesli.tech>
365
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
366
-
367
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
368
- // ·
369
- */
370
- /*
371
- Lesli
372
-
373
- Copyright (c) 2020, Lesli Technologies, S. A.
374
-
375
- This program is free software: you can redistribute it and/or modify
376
- it under the terms of the GNU General Public License as published by
377
- the Free Software Foundation, either version 3 of the License, or
378
- (at your option) any later version.
379
-
380
- This program is distributed in the hope that it will be useful,
381
- but WITHOUT ANY WARRANTY; without even the implied warranty of
382
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
383
- GNU General Public License for more details.
384
-
385
- You should have received a copy of the GNU General Public License
386
- along with this program. If not, see <http://www.gnu.org/licenses/>.
387
-
388
- LesliCSS - SCSS Utilities for websites, apps and web applications
389
-
390
- Powered by https://www.lesli.tech
391
- Building a better future, one line of code at a time.
392
-
393
- @contact <hello@lesli.tech>
394
- @website <https://lesli.tech>
395
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
396
-
397
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
398
- // ·
399
- */
400
- /**
401
- Lesli
402
-
403
- Copyright (c) 2020, Lesli Technologies, S. A.
404
-
405
- This program is free software: you can redistribute it and/or modify
406
- it under the terms of the GNU General Public License as published by
407
- the Free Software Foundation, either version 3 of the License, or
408
- (at your option) any later version.
409
-
410
- This program is distributed in the hope that it will be useful,
411
- but WITHOUT ANY WARRANTY; without even the implied warranty of
412
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
413
- GNU General Public License for more details.
414
-
415
- You should have received a copy of the GNU General Public License
416
- along with this program. If not, see <http://www.gnu.org/licenses/>.
417
-
418
- LesliCSS - SCSS Utilities for websites, apps and web applications
419
-
420
- Powered by https://www.lesli.tech
421
- Building a better future, one line of code at a time.
422
-
423
- @contact <hello@lesli.tech>
424
- @website <https://lesli.tech>
425
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
426
-
427
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
428
- // ·
429
- */
430
- /*
431
- Lesli
432
-
433
- Copyright (c) 2023, Lesli Technologies, S. A.
434
-
435
- This program is free software: you can redistribute it and/or modify
436
- it under the terms of the GNU General Public License as published by
437
- the Free Software Foundation, either version 3 of the License, or
438
- (at your option) any later version.
439
-
440
- This program is distributed in the hope that it will be useful,
441
- but WITHOUT ANY WARRANTY; without even the implied warranty of
442
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
443
- GNU General Public License for more details.
444
-
445
- You should have received a copy of the GNU General Public License
446
- along with this program. If not, see http://www.gnu.org/licenses/.
447
-
448
- Lesli · Ruby on Rails SaaS Development Framework.
449
-
450
- Made with ♥ by https://www.lesli.tech
451
- Building a better future, one line of code at a time.
452
-
453
- @contact hello@lesli.tech
454
- @website https://www.lesli.tech
455
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
456
-
457
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
458
- // ·
459
- */
460
- }
461
- body.lesli-babel :root,
462
- body.lesli-babel-dashboard :root {
463
- --lesli-color-primary: var(--lesli-theme-color-primary, #193d8d);
464
- --lesli-color-background: var(--lesli-theme-color-background, #f6f8fb);
465
- --lesli-header-color: var(--lesli-theme-header-color, white);
466
- --lesli-header-height: var(--lesli-theme-header-height, 70px);
467
- --lesli-navbar-color: var(--lesli-theme-header-color, white);
468
- --lesli-footer-color: var(--lesli-theme-footer-color, white);
469
- --lesli-footer-height: var(--lesli-theme-footer-height, 84px);
470
- --lesli-sidebar-color: var(--lesli-theme-sidebar-color, white);
471
- --lesli-sidebar-width: var(--lesli-theme-sidebar-width, 50px);
472
- --lesli-logo-color: var(--lesli-theme-logo-color, white);
473
- --lesli-font-size: var(--lesli-theme-font-size, 16px);
474
- --lesli-font-color: var(--lesli-theme-font-color, #333333);
475
- }
476
- @media only screen and (max-width: 768px) {
477
- body.lesli-babel :root,
478
- body.lesli-babel-dashboard :root {
479
- --lesli-sidebar-width: 50px;
480
- }
481
- }
482
- @media only screen and (min-width: 769px) {
483
- body.lesli-babel :root,
484
- body.lesli-babel-dashboard :root {
485
- --lesli-sidebar-width: 100px;
486
- }
487
- }
488
- @media only screen and (min-width: 1024px) {
489
- body.lesli-babel :root,
490
- body.lesli-babel-dashboard :root {
491
- --lesli-sidebar-width: 200px;
492
- }
493
- }
494
- @media only screen and (min-width: 1216px) {
495
- body.lesli-babel :root,
496
- body.lesli-babel-dashboard :root {
497
- --lesli-sidebar-width: 225px;
498
- }
499
- }
500
- @media only screen and (min-width: 1408px) {
501
- body.lesli-babel :root,
502
- body.lesli-babel-dashboard :root {
503
- --lesli-sidebar-width: 328px;
504
- }
505
- }
506
- body.lesli-babel body.layout-expanded :root,
507
- body.lesli-babel-dashboard body.layout-expanded :root {
508
- --lesli-sidebar-width: 100px;
509
- }
510
- body.lesli-babel aside.lesli-application-sidebar,
511
- body.lesli-babel-dashboard aside.lesli-application-sidebar {
512
- display: none !important;
513
- }
514
- body.lesli-babel .locales,
515
- body.lesli-babel-dashboard .locales {
516
- display: flex;
517
- flex-wrap: wrap;
518
- justify-content: space-around;
519
- justify-content: center;
520
- }
521
- body.lesli-babel .locales > *,
522
- body.lesli-babel-dashboard .locales > * {
523
- flex-basis: 200px;
524
- max-width: 200px;
525
- }
526
- body.lesli-babel .locales .card,
527
- body.lesli-babel-dashboard .locales .card {
528
- padding: 1.8rem 1rem;
529
- text-align: center;
530
- box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
531
- background-color: white;
532
- border-radius: 4px;
533
- }
534
- body.lesli-babel .locales .card .flag-icon,
535
- body.lesli-babel-dashboard .locales .card .flag-icon {
536
- border-radius: 4px;
537
- box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
538
- }
539
-
540
- body.cloud_babel-modules,
541
- body.cloud_babel-relevants,
542
- body.cloud_babel-translations {
543
- /*
544
-
545
- Copyright (c) 2020, all rights reserved.
546
-
547
- All the information provided by this platform is protected by international laws related to
548
- industrial property, intellectual property, copyright and relative international laws.
549
- All intellectual or industrial property rights of the code, texts, trade mark, design,
550
- pictures and any other information belongs to the owner of this platform.
551
-
552
- Without the written permission of the owner, any replication, modification,
553
- transmission, publication is strictly forbidden.
554
-
555
- For more information read the license file including with this software.
556
-
557
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
558
- // ·
559
- */
560
- /*
561
-
562
- Lesli
563
-
564
- Copyright (c) 2023, Lesli Technologies, S. A.
565
-
566
- This program is free software: you can redistribute it and/or modify
567
- it under the terms of the GNU General Public License as published by
568
- the Free Software Foundation, either version 3 of the License, or
569
- (at your option) any later version.
570
-
571
- This program is distributed in the hope that it will be useful,
572
- but WITHOUT ANY WARRANTY; without even the implied warranty of
573
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
574
- GNU General Public License for more details.
575
-
576
- You should have received a copy of the GNU General Public License
577
- along with this program. If not, see http://www.gnu.org/licenses/.
578
-
579
- Lesli · Ruby on Rails SaaS Development Framework.
580
-
581
- Made with ♥ by https://www.lesli.tech
582
- Building a better future, one line of code at a time.
583
-
584
- @contact hello@lesli.tech
585
- @website https://www.lesli.tech
586
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
587
-
588
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
589
- // ·
590
- */
591
- /*
592
- Lesli
593
-
594
- Copyright (c) 2022, Lesli Technologies, S. A.
595
-
596
- This program is free software: you can redistribute it and/or modify
597
- it under the terms of the GNU General Public License as published by
598
- the Free Software Foundation, either version 3 of the License, or
599
- (at your option) any later version.
600
-
601
- This program is distributed in the hope that it will be useful,
602
- but WITHOUT ANY WARRANTY; without even the implied warranty of
603
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
604
- GNU General Public License for more details.
605
-
606
- You should have received a copy of the GNU General Public License
607
- along with this program. If not, see <http://www.gnu.org/licenses/>.
608
-
609
- LesliCSS - SCSS Utilities for websites, apps and web applications
610
-
611
- Powered by https://www.lesli.tech
612
- Building a better future, one line of code at a time.
613
-
614
- @contact <hello@lesli.tech>
615
- @website <https://lesli.tech>
616
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
617
-
618
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
619
- // ·
620
- */
621
- /*
622
- Lesli
623
-
624
- Copyright (c) 2022, Lesli Technologies, S. A.
625
-
626
- This program is free software: you can redistribute it and/or modify
627
- it under the terms of the GNU General Public License as published by
628
- the Free Software Foundation, either version 3 of the License, or
629
- (at your option) any later version.
630
-
631
- This program is distributed in the hope that it will be useful,
632
- but WITHOUT ANY WARRANTY; without even the implied warranty of
633
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
634
- GNU General Public License for more details.
635
-
636
- You should have received a copy of the GNU General Public License
637
- along with this program. If not, see <http://www.gnu.org/licenses/>.
638
-
639
- LesliCSS - SCSS Utilities for websites, apps and web applications
640
-
641
- Powered by https://www.lesli.tech
642
- Building a better future, one line of code at a time.
643
-
644
- @contact <hello@lesli.tech>
645
- @website <https://lesli.tech>
646
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
647
-
648
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
649
- // ·
650
- */
651
- /*
652
- Lesli
653
-
654
- Copyright (c) 2020, Lesli Technologies, S. A.
655
-
656
- This program is free software: you can redistribute it and/or modify
657
- it under the terms of the GNU General Public License as published by
658
- the Free Software Foundation, either version 3 of the License, or
659
- (at your option) any later version.
660
-
661
- This program is distributed in the hope that it will be useful,
662
- but WITHOUT ANY WARRANTY; without even the implied warranty of
663
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
664
- GNU General Public License for more details.
665
-
666
- You should have received a copy of the GNU General Public License
667
- along with this program. If not, see <http://www.gnu.org/licenses/>.
668
-
669
- LesliCSS - SCSS Utilities for websites, apps and web applications
670
-
671
- Powered by https://www.lesli.tech
672
- Building a better future, one line of code at a time.
673
-
674
- @contact <hello@lesli.tech>
675
- @website <https://lesli.tech>
676
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
677
-
678
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
679
- // ·
680
- */
681
- /**
682
- Lesli
683
-
684
- Copyright (c) 2022, Lesli Technologies, S. A.
685
-
686
- This program is free software: you can redistribute it and/or modify
687
- it under the terms of the GNU General Public License as published by
688
- the Free Software Foundation, either version 3 of the License, or
689
- (at your option) any later version.
690
-
691
- This program is distributed in the hope that it will be useful,
692
- but WITHOUT ANY WARRANTY; without even the implied warranty of
693
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
694
- GNU General Public License for more details.
695
-
696
- You should have received a copy of the GNU General Public License
697
- along with this program. If not, see <http://www.gnu.org/licenses/>.
698
-
699
- LesliCSS - SCSS Utilities for websites, apps and web applications
700
-
701
- Powered by https://www.lesli.tech
702
- Building a better future, one line of code at a time.
703
-
704
- @contact <hello@lesli.tech>
705
- @website <https://lesli.tech>
706
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
707
-
708
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
709
- // ·
710
- */
711
- /**
712
- Lesli
713
-
714
- Copyright (c) 2022, Lesli Technologies, S. A.
715
-
716
- This program is free software: you can redistribute it and/or modify
717
- it under the terms of the GNU General Public License as published by
718
- the Free Software Foundation, either version 3 of the License, or
719
- (at your option) any later version.
720
-
721
- This program is distributed in the hope that it will be useful,
722
- but WITHOUT ANY WARRANTY; without even the implied warranty of
723
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
724
- GNU General Public License for more details.
725
-
726
- You should have received a copy of the GNU General Public License
727
- along with this program. If not, see <http://www.gnu.org/licenses/>.
728
-
729
- LesliCSS - SCSS Utilities for websites, apps and web applications
730
-
731
- Powered by https://www.lesli.tech
732
- Building a better future, one line of code at a time.
733
-
734
- @contact <hello@lesli.tech>
735
- @website <https://lesli.tech>
736
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
737
-
738
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
739
- // ·
740
- */
741
- /*
742
- Lesli
743
-
744
- Copyright (c) 2022, Lesli Technologies, S. A.
745
-
746
- This program is free software: you can redistribute it and/or modify
747
- it under the terms of the GNU General Public License as published by
748
- the Free Software Foundation, either version 3 of the License, or
749
- (at your option) any later version.
750
-
751
- This program is distributed in the hope that it will be useful,
752
- but WITHOUT ANY WARRANTY; without even the implied warranty of
753
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
754
- GNU General Public License for more details.
755
-
756
- You should have received a copy of the GNU General Public License
757
- along with this program. If not, see <http://www.gnu.org/licenses/>.
758
-
759
- LesliCSS - SCSS Utilities for websites, apps and web applications
760
-
761
- Powered by https://www.lesli.tech
762
- Building a better future, one line of code at a time.
763
-
764
- @contact <hello@lesli.tech>
765
- @website <https://lesli.tech>
766
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
767
-
768
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
769
- // ·
770
- */
771
- /*
772
- Lesli
773
-
774
- Copyright (c) 2022, Lesli Technologies, S. A.
775
-
776
- This program is free software: you can redistribute it and/or modify
777
- it under the terms of the GNU General Public License as published by
778
- the Free Software Foundation, either version 3 of the License, or
779
- (at your option) any later version.
780
-
781
- This program is distributed in the hope that it will be useful,
782
- but WITHOUT ANY WARRANTY; without even the implied warranty of
783
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
784
- GNU General Public License for more details.
785
-
786
- You should have received a copy of the GNU General Public License
787
- along with this program. If not, see <http://www.gnu.org/licenses/>.
788
-
789
- LesliCSS - SCSS Utilities for websites, apps and web applications
790
-
791
- Powered by https://www.lesli.tech
792
- Building a better future, one line of code at a time.
793
-
794
- @contact <hello@lesli.tech>
795
- @website <https://lesli.tech>
796
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
797
-
798
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
799
- // ·
800
- */
801
- /*
802
- Lesli
803
-
804
- Copyright (c) 2020, Lesli Technologies, S. A.
805
-
806
- This program is free software: you can redistribute it and/or modify
807
- it under the terms of the GNU General Public License as published by
808
- the Free Software Foundation, either version 3 of the License, or
809
- (at your option) any later version.
810
-
811
- This program is distributed in the hope that it will be useful,
812
- but WITHOUT ANY WARRANTY; without even the implied warranty of
813
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
814
- GNU General Public License for more details.
815
-
816
- You should have received a copy of the GNU General Public License
817
- along with this program. If not, see <http://www.gnu.org/licenses/>.
818
-
819
- LesliCSS - SCSS Utilities for websites, apps and web applications
820
-
821
- Powered by https://www.lesli.tech
822
- Building a better future, one line of code at a time.
823
-
824
- @contact <hello@lesli.tech>
825
- @website <https://lesli.tech>
826
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
827
-
828
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
829
- // ·
830
- */
831
- /*
832
- Lesli
833
-
834
- Copyright (c) 2022, Lesli Technologies, S. A.
835
-
836
- This program is free software: you can redistribute it and/or modify
837
- it under the terms of the GNU General Public License as published by
838
- the Free Software Foundation, either version 3 of the License, or
839
- (at your option) any later version.
840
-
841
- This program is distributed in the hope that it will be useful,
842
- but WITHOUT ANY WARRANTY; without even the implied warranty of
843
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
844
- GNU General Public License for more details.
845
-
846
- You should have received a copy of the GNU General Public License
847
- along with this program. If not, see <http://www.gnu.org/licenses/>.
848
-
849
- LesliCSS - SCSS Utilities for websites, apps and web applications
850
-
851
- Powered by https://www.lesli.tech
852
- Building a better future, one line of code at a time.
853
-
854
- @contact <hello@lesli.tech>
855
- @website <https://lesli.tech>
856
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
857
-
858
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
859
- // ·
860
- */
861
- /*
862
- Lesli
863
-
864
- Copyright (c) 2020, Lesli Technologies, S. A.
865
-
866
- This program is free software: you can redistribute it and/or modify
867
- it under the terms of the GNU General Public License as published by
868
- the Free Software Foundation, either version 3 of the License, or
869
- (at your option) any later version.
870
-
871
- This program is distributed in the hope that it will be useful,
872
- but WITHOUT ANY WARRANTY; without even the implied warranty of
873
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
874
- GNU General Public License for more details.
875
-
876
- You should have received a copy of the GNU General Public License
877
- along with this program. If not, see <http://www.gnu.org/licenses/>.
878
-
879
- LesliCSS - SCSS Utilities for websites, apps and web applications
880
-
881
- Powered by https://www.lesli.tech
882
- Building a better future, one line of code at a time.
883
-
884
- @contact <hello@lesli.tech>
885
- @website <https://lesli.tech>
886
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
887
-
888
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
889
- // ·
890
- */
891
- /**
892
- Lesli
893
-
894
- Copyright (c) 2020, Lesli Technologies, S. A.
895
-
896
- This program is free software: you can redistribute it and/or modify
897
- it under the terms of the GNU General Public License as published by
898
- the Free Software Foundation, either version 3 of the License, or
899
- (at your option) any later version.
900
-
901
- This program is distributed in the hope that it will be useful,
902
- but WITHOUT ANY WARRANTY; without even the implied warranty of
903
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
904
- GNU General Public License for more details.
905
-
906
- You should have received a copy of the GNU General Public License
907
- along with this program. If not, see <http://www.gnu.org/licenses/>.
908
-
909
- LesliCSS - SCSS Utilities for websites, apps and web applications
910
-
911
- Powered by https://www.lesli.tech
912
- Building a better future, one line of code at a time.
913
-
914
- @contact <hello@lesli.tech>
915
- @website <https://lesli.tech>
916
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
917
-
918
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
919
- // ·
920
- */
921
- /*
922
- Lesli
923
-
924
- Copyright (c) 2023, Lesli Technologies, S. A.
925
-
926
- This program is free software: you can redistribute it and/or modify
927
- it under the terms of the GNU General Public License as published by
928
- the Free Software Foundation, either version 3 of the License, or
929
- (at your option) any later version.
930
-
931
- This program is distributed in the hope that it will be useful,
932
- but WITHOUT ANY WARRANTY; without even the implied warranty of
933
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
934
- GNU General Public License for more details.
935
-
936
- You should have received a copy of the GNU General Public License
937
- along with this program. If not, see http://www.gnu.org/licenses/.
938
-
939
- Lesli · Ruby on Rails SaaS Development Framework.
940
-
941
- Made with ♥ by https://www.lesli.tech
942
- Building a better future, one line of code at a time.
943
-
944
- @contact hello@lesli.tech
945
- @website https://www.lesli.tech
946
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
947
-
948
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
949
- // ·
950
- */
951
- }
952
- body.cloud_babel-modules :root,
953
- body.cloud_babel-relevants :root,
954
- body.cloud_babel-translations :root {
955
- --lesli-color-primary: var(--lesli-theme-color-primary, #193d8d);
956
- --lesli-color-background: var(--lesli-theme-color-background, #f6f8fb);
957
- --lesli-header-color: var(--lesli-theme-header-color, white);
958
- --lesli-header-height: var(--lesli-theme-header-height, 70px);
959
- --lesli-navbar-color: var(--lesli-theme-header-color, white);
960
- --lesli-footer-color: var(--lesli-theme-footer-color, white);
961
- --lesli-footer-height: var(--lesli-theme-footer-height, 84px);
962
- --lesli-sidebar-color: var(--lesli-theme-sidebar-color, white);
963
- --lesli-sidebar-width: var(--lesli-theme-sidebar-width, 50px);
964
- --lesli-logo-color: var(--lesli-theme-logo-color, white);
965
- --lesli-font-size: var(--lesli-theme-font-size, 16px);
966
- --lesli-font-color: var(--lesli-theme-font-color, #333333);
967
- }
968
- @media only screen and (max-width: 768px) {
969
- body.cloud_babel-modules :root,
970
- body.cloud_babel-relevants :root,
971
- body.cloud_babel-translations :root {
972
- --lesli-sidebar-width: 50px;
973
- }
974
- }
975
- @media only screen and (min-width: 769px) {
976
- body.cloud_babel-modules :root,
977
- body.cloud_babel-relevants :root,
978
- body.cloud_babel-translations :root {
979
- --lesli-sidebar-width: 100px;
980
- }
981
- }
982
- @media only screen and (min-width: 1024px) {
983
- body.cloud_babel-modules :root,
984
- body.cloud_babel-relevants :root,
985
- body.cloud_babel-translations :root {
986
- --lesli-sidebar-width: 200px;
987
- }
988
- }
989
- @media only screen and (min-width: 1216px) {
990
- body.cloud_babel-modules :root,
991
- body.cloud_babel-relevants :root,
992
- body.cloud_babel-translations :root {
993
- --lesli-sidebar-width: 225px;
994
- }
995
- }
996
- @media only screen and (min-width: 1408px) {
997
- body.cloud_babel-modules :root,
998
- body.cloud_babel-relevants :root,
999
- body.cloud_babel-translations :root {
1000
- --lesli-sidebar-width: 328px;
1001
- }
1002
- }
1003
- body.cloud_babel-modules body.layout-expanded :root,
1004
- body.cloud_babel-relevants body.layout-expanded :root,
1005
- body.cloud_babel-translations body.layout-expanded :root {
1006
- --lesli-sidebar-width: 100px;
1007
- }
1008
- body.cloud_babel-modules #babel-translations tbody td,
1009
- body.cloud_babel-relevants #babel-translations tbody td,
1010
- body.cloud_babel-translations #babel-translations tbody td {
1011
- padding: 0rem 1rem;
1012
- height: 60px;
1013
- }
1014
- body.cloud_babel-modules #babel-translations tbody td input.input,
1015
- body.cloud_babel-relevants #babel-translations tbody td input.input,
1016
- body.cloud_babel-translations #babel-translations tbody td input.input {
1017
- height: 60px;
1018
- border: none;
1019
- box-shadow: none;
1020
- border-radius: 3px;
1021
- background-color: transparent;
1022
- }
1023
- body.cloud_babel-modules #babel-translations tbody td input.input::placeholder,
1024
- body.cloud_babel-relevants #babel-translations tbody td input.input::placeholder,
1025
- body.cloud_babel-translations #babel-translations tbody td input.input::placeholder {
1026
- color: #555761;
1027
- }
1028
- body.cloud_babel-modules #babel-translations tbody td.detail-row,
1029
- body.cloud_babel-relevants #babel-translations tbody td.detail-row,
1030
- body.cloud_babel-translations #babel-translations tbody td.detail-row {
1031
- padding-left: 1rem !important;
1032
- }
1033
- body.cloud_babel-modules #babel-translations .copied:after,
1034
- body.cloud_babel-relevants #babel-translations .copied:after,
1035
- body.cloud_babel-translations #babel-translations .copied:after {
1036
- display: inline;
1037
- position: absolute;
1038
- content: "Label copied to clipboard!";
1039
- animation: 1s ease-in-out 0s 1 normal forwards running copyit;
1040
- font-size: 0.8em;
1041
- }
1042
- @keyframes copyit {
1043
- 0% {
1044
- bottom: 2em;
1045
- opacity: 1;
1046
- }
1047
- 100% {
1048
- bottom: 4em;
1049
- opacity: 0;
1050
- }
1051
- }