lesli_assets 1.0.3 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/config/lesli_assets_manifest.js +4 -0
  3. data/app/assets/fonts/lesli_assets/MaterialDesign/symbols.woff +0 -0
  4. data/app/assets/javascripts/lesli_assets/application.js +19526 -1041
  5. data/app/assets/javascripts/lesli_assets/calendar.js +9749 -1
  6. data/app/assets/stylesheets/lesli_assets/templates/application.css +1 -1
  7. data/app/assets/stylesheets/lesli_assets/templates/public.css +1 -1
  8. data/app/assets/stylesheets/lesli_assets/templates/start.css +1 -1
  9. data/lib/lesli_assets/version.rb +2 -2
  10. data/lib/lesli_assets_js/calendar.js +88 -6
  11. data/lib/{lesli_assets_css → lesli_assets_styles}/fonts/families.scss +2 -2
  12. data/lib/lesli_assets_styles/fonts/mdsymbols.scss +65 -0
  13. data/lib/lesli_assets_styles/fonts/remixicons.scss +3082 -0
  14. data/lib/lesli_assets_styles/layouts/application-container.scss +52 -0
  15. data/lib/lesli_assets_styles/layouts/application-header.scss +74 -0
  16. data/lib/{lesli_assets_css/templates/dashboards.scss → lesli_assets_styles/layouts/application-navigation.scss} +28 -15
  17. data/lib/{lesli_assets_css → lesli_assets_styles}/settings/variables.scss +15 -14
  18. data/lib/{lesli_assets_css → lesli_assets_styles}/templates/application.scss +3 -2
  19. data/lib/{lesli_assets_css/layouts/application-container.scss → lesli_assets_styles/templates/dashboards.scss} +2 -7
  20. data/lib/{lesli_assets_css → lesli_assets_styles}/templates/public.scss +2 -1
  21. metadata +26 -25
  22. data/lib/lesli_assets_css/fonts/remixicons.scss +0 -3083
  23. data/lib/lesli_assets_css/layouts/application-engines.scss +0 -115
  24. data/lib/lesli_assets_css/layouts/application-header.scss +0 -104
  25. data/lib/lesli_assets_css/layouts/application-navigation.scss +0 -97
  26. /data/lib/{lesli_assets_css → lesli_assets_styles}/fonts/mdicons.scss +0 -0
  27. /data/lib/{lesli_assets_css → lesli_assets_styles}/helpers/display.scss +0 -0
  28. /data/lib/{lesli_assets_css → lesli_assets_styles}/helpers/tooltip.scss +0 -0
  29. /data/lib/{lesli_assets_css → lesli_assets_styles}/layouts/application-app.scss +0 -0
  30. /data/lib/{lesli_assets_css → lesli_assets_styles}/layouts/application-component.scss +0 -0
  31. /data/lib/{lesli_assets_css → lesli_assets_styles}/layouts/application-notification.scss +0 -0
  32. /data/lib/{lesli_assets_css → lesli_assets_styles}/layouts/application-sidebar.scss +0 -0
  33. /data/lib/{lesli_assets_css → lesli_assets_styles}/pages/invites.scss +0 -0
  34. /data/lib/{lesli_assets_css → lesli_assets_styles}/shared/workflow-status-progress.scss +0 -0
  35. /data/lib/{lesli_assets_css → lesli_assets_styles}/templates/component.scss +0 -0
  36. /data/lib/{lesli_assets_css → lesli_assets_styles}/templates/empty.scss +0 -0
  37. /data/lib/{lesli_assets_css → lesli_assets_styles}/templates/pdf.scss +0 -0
  38. /data/lib/{lesli_assets_css → lesli_assets_styles}/templates/start.scss +0 -0
@@ -1,115 +0,0 @@
1
- /*
2
-
3
- Lesli
4
-
5
- Copyright (c) 2023, 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
- Lesli · Ruby on Rails SaaS Development Framework.
21
-
22
- Made with ♥ 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://www.lesli.tech
27
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
28
-
29
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
30
- // ·
31
- */
32
-
33
-
34
- // ·
35
- @use "lesli-css/sass/helpers/shadow";
36
- @use "lesli-css/sass/helpers/breakpoint";
37
-
38
-
39
- // ·
40
- .lesli-application-engines {
41
-
42
- .engines-container {
43
-
44
- .engines {
45
- display: flex;
46
- flex-wrap: wrap;
47
- flex-direction: column;
48
- justify-content: center;
49
-
50
- // engine link
51
- a {
52
- width: 100%;
53
- height: 200px;
54
- display: block;
55
-
56
- text-align: center;
57
- padding: 1rem .4rem;
58
- margin-bottom: 2rem;
59
- border-radius: .5rem;
60
- border: transparent 1px solid;
61
- background-color: lesli-css-color(silver, 100);
62
- background-color: #FFFFFF;
63
- transition: all ease-in-out .4s;
64
- @include shadow.lesli-shadow();
65
-
66
- &:hover {
67
- border-color: var(--lesli-color-primary);
68
- transform: translateY(-1px);
69
- }
70
-
71
- &.is-active {
72
- background-color: #F0F4FF;
73
- border-color: var(--lesli-color-primary);
74
- }
75
-
76
- // engine logo
77
- svg {
78
- margin-right: .4rem;
79
- fill: var(--lesli-color-primary);
80
- }
81
-
82
- // engine description
83
- p {
84
- font-size: 14;
85
- }
86
-
87
- // engine name
88
- span {
89
- font-weight: 600;
90
- font-size: 20px;
91
- }
92
-
93
- span, p {
94
- color: var(--lesli-color-primary);
95
- }
96
- }
97
- }
98
-
99
- // close button
100
- button {
101
- width: 100%;
102
- }
103
- }
104
- }
105
-
106
-
107
- @include breakpoint.lesli-breakpoint-tablet() {
108
- .lesli-application-engines .engines-container .engines {
109
- flex-direction: row;
110
- a {
111
- width: 320px;
112
- margin: 1rem;
113
- }
114
- }
115
- }
@@ -1,104 +0,0 @@
1
- /*
2
-
3
- Lesli
4
-
5
- Copyright (c) 2023, 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
- Lesli · Ruby on Rails SaaS Development Framework.
21
-
22
- Made with ♥ by LesliTech
23
- Building a better future, one line of code at a time.
24
-
25
- @contact hello@lesli.tech
26
- @website https://www.lesli.tech
27
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
28
-
29
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
30
- // ·
31
- */
32
-
33
-
34
- // ·
35
- @use "lesli-css" as lesli;
36
-
37
- // ·
38
- header.lesli-application-header {
39
- background-color: var(--lesli-header-color);
40
- height: var(--lesli-header-height);
41
-
42
- nav.lesli-navbar {
43
-
44
- .navbar-brand {
45
- img {
46
- height: var(--lesli-header-height);
47
- }
48
- }
49
-
50
- .navbar-menu {
51
- &.is-active {
52
- z-index: 99;
53
- position: relative;
54
- }
55
- }
56
-
57
- .navbar-item {
58
-
59
- .icon {
60
- padding: 0;
61
- }
62
-
63
- // navigation icons
64
- [class^="ri-"] {
65
- font-size: 20px;
66
- color: lesli.lesli-color(black, 700);
67
- }
68
- }
69
-
70
- .header-icons {
71
-
72
- a {
73
- position: relative;
74
- }
75
-
76
- // navigation icons
77
- [class^="ri-"] {
78
- font-size: 25px;
79
- padding: 0 0.6rem;
80
- color: lesli.lesli-color(black, 700);
81
- }
82
-
83
- // Notification icon & count
84
- .header-indicator {
85
- .count {
86
- top: -8px;
87
- right: 10px;
88
- width: 10px;
89
- height: 10px;
90
- border-radius: 50%;
91
- background-color: lesli-css-color(berry, 300);
92
- position: absolute;
93
- }
94
- }
95
-
96
- .lesli-header-notifications {
97
- .dropdown-content {
98
- box-shadow: none;
99
- background-color: transparent;
100
- }
101
- }
102
- }
103
- }
104
- }
@@ -1,97 +0,0 @@
1
- /*
2
-
3
- Lesli
4
-
5
- Copyright (c) 2025, 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
- Lesli · Ruby on Rails SaaS Development Framework.
21
-
22
- Made with ♥ by LesliTech
23
- Building a better future, one line of code at a time.
24
-
25
- @contact hello@lesli.tech
26
- @website https://www.lesli.tech
27
- @license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
28
-
29
- // · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
30
- // ·
31
- */
32
-
33
-
34
- // ·
35
- @use "lesli-css/sass/color";
36
-
37
-
38
- // ·
39
- .navbar {
40
- position: static;
41
- }
42
-
43
-
44
- // ·
45
- nav.lesli-application-navigation {
46
- background-color: var(--lesli-navbar-color);
47
- border-bottom: 1px solid rgba(172,179,194,.5);
48
- border-top: 1px solid rgba(172,179,194,.5);
49
- width: 100%;
50
-
51
- .navbar-menu {
52
- justify-content: center;
53
- }
54
-
55
- .navbar-end {
56
- margin-inline-start: unset;
57
- }
58
-
59
- li {
60
- padding-top: 0;
61
- padding-bottom: 0;
62
-
63
- a {
64
- gap: 6px;
65
- display: flex;
66
- padding: 1.2rem 1.1rem 0.8rem;
67
- align-items: center;
68
- border-bottom: 2px solid transparent;
69
- color: lesli-css-color(black, 700);
70
- transition: all linear .2s;
71
-
72
- &:hover {
73
- // color: lesli-css-color(slate, 100);
74
- // text-shadow: 0 0px 10px rgba(lesli-css-color(slate, 900), 0.8);
75
- color: color.lesli-color(slate, 700);
76
- text-shadow: 0 2px 6px rgba(color.lesli-color(slate, 700), 0.25);
77
- }
78
-
79
- // highlight active link
80
- &.navigation-link-active {
81
- border-bottom-color: lesli-css-color(lesli, primary);
82
- }
83
-
84
- // link label
85
- span.text {
86
- flex-grow: 1;
87
- font-size: 1rem;
88
- text-align: left;
89
- display: inline-block;
90
- }
91
-
92
- [class^="ri-"] {
93
- font-size: 20px;
94
- }
95
- }
96
- }
97
- }