lesli_assets 1.0.4 → 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.
- checksums.yaml +4 -4
- data/app/assets/config/lesli_assets_manifest.js +4 -0
- data/app/assets/javascripts/lesli_assets/calendar.js +12 -1
- data/app/assets/stylesheets/lesli_assets/templates/application.css +1 -1
- data/app/assets/stylesheets/lesli_assets/templates/public.css +1 -1
- data/app/assets/stylesheets/lesli_assets/templates/start.css +1 -1
- data/lib/lesli_assets/version.rb +2 -2
- data/lib/lesli_assets_js/calendar.js +14 -1
- data/lib/lesli_assets_styles/fonts/families.scss +2 -2
- data/lib/lesli_assets_styles/fonts/mdsymbols.scss +8 -3
- data/lib/lesli_assets_styles/fonts/remixicons.scss +3039 -3040
- data/lib/lesli_assets_styles/layouts/application-container.scss +16 -0
- data/lib/lesli_assets_styles/settings/variables.scss +12 -9
- metadata +2 -2
@@ -30,7 +30,23 @@ Building a better future, one line of code at a time.
|
|
30
30
|
// ·
|
31
31
|
*/
|
32
32
|
|
33
|
+
|
34
|
+
// ·
|
35
|
+
@use "lesli-css" as lesli;
|
36
|
+
|
37
|
+
|
38
|
+
// ·
|
33
39
|
section.lesli-application-container,
|
34
40
|
turbo-frame.lesli-application-container {
|
35
41
|
padding: 1rem;
|
36
42
|
}
|
43
|
+
|
44
|
+
|
45
|
+
// ·
|
46
|
+
@include lesli.lesli-breakpoint-desktop {
|
47
|
+
section.lesli-application-container,
|
48
|
+
turbo-frame.lesli-application-container {
|
49
|
+
padding-left: 0rem;
|
50
|
+
padding-right: 0rem;
|
51
|
+
}
|
52
|
+
}
|
@@ -1,7 +1,7 @@
|
|
1
1
|
/*
|
2
2
|
Lesli
|
3
3
|
|
4
|
-
Copyright (c)
|
4
|
+
Copyright (c) 2025, Lesli Technologies, S. A.
|
5
5
|
|
6
6
|
This program is free software: you can redistribute it and/or modify
|
7
7
|
it under the terms of the GNU General Public License as published by
|
@@ -18,7 +18,7 @@ along with this program. If not, see http://www.gnu.org/licenses/.
|
|
18
18
|
|
19
19
|
Lesli · Ruby on Rails SaaS Development Framework.
|
20
20
|
|
21
|
-
Made with ♥ by
|
21
|
+
Made with ♥ by LesliTech
|
22
22
|
Building a better future, one line of code at a time.
|
23
23
|
|
24
24
|
@contact hello@lesli.tech
|
@@ -29,7 +29,10 @@ Building a better future, one line of code at a time.
|
|
29
29
|
// ·
|
30
30
|
*/
|
31
31
|
|
32
|
-
|
32
|
+
|
33
|
+
// ·
|
34
|
+
@use "lesli-css" as lesli;
|
35
|
+
|
33
36
|
|
34
37
|
// · Layout
|
35
38
|
$lesli-font-size: 16px !default;
|
@@ -50,7 +53,7 @@ $lesli-color-background: #f8f4f4 !default;
|
|
50
53
|
|
51
54
|
|
52
55
|
// · To understand more about customization go to:
|
53
|
-
// · https://www.lesli.dev/
|
56
|
+
// · https://www.lesli.dev/engines/lesli/theming/
|
54
57
|
|
55
58
|
|
56
59
|
|
@@ -102,7 +105,7 @@ $family-primary: "OpenSans", "Ubuntu", "Helvetica Neue", "Helvetica", "Arial", s
|
|
102
105
|
|
103
106
|
|
104
107
|
// Mobile Up to 768px
|
105
|
-
@include
|
108
|
+
@include lesli.lesli-breakpoint-mobile {
|
106
109
|
:root {
|
107
110
|
--lesli-sidebar-width: 50px;
|
108
111
|
}
|
@@ -110,7 +113,7 @@ $family-primary: "OpenSans", "Ubuntu", "Helvetica Neue", "Helvetica", "Arial", s
|
|
110
113
|
|
111
114
|
|
112
115
|
// Tablet Between 769px and 1023px
|
113
|
-
@include
|
116
|
+
@include lesli.lesli-breakpoint-tablet {
|
114
117
|
:root {
|
115
118
|
--lesli-sidebar-width: 100px;
|
116
119
|
}
|
@@ -118,7 +121,7 @@ $family-primary: "OpenSans", "Ubuntu", "Helvetica Neue", "Helvetica", "Arial", s
|
|
118
121
|
|
119
122
|
|
120
123
|
// Desktop Between 1024px and 1215px
|
121
|
-
@include
|
124
|
+
@include lesli.lesli-breakpoint-desktop {
|
122
125
|
:root {
|
123
126
|
--lesli-sidebar-width: 200px;
|
124
127
|
}
|
@@ -126,7 +129,7 @@ $family-primary: "OpenSans", "Ubuntu", "Helvetica Neue", "Helvetica", "Arial", s
|
|
126
129
|
|
127
130
|
|
128
131
|
// Widescreen Between 1216px and 1407px
|
129
|
-
@include
|
132
|
+
@include lesli.lesli-breakpoint-widescreen {
|
130
133
|
:root {
|
131
134
|
--lesli-sidebar-width: 225px;
|
132
135
|
}
|
@@ -134,7 +137,7 @@ $family-primary: "OpenSans", "Ubuntu", "Helvetica Neue", "Helvetica", "Arial", s
|
|
134
137
|
|
135
138
|
|
136
139
|
// Widescreen Between 1216px and 1407px
|
137
|
-
@include
|
140
|
+
@include lesli.lesli-breakpoint-fullhd {
|
138
141
|
:root {
|
139
142
|
--lesli-sidebar-width: 328px;
|
140
143
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lesli_assets
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- The Lesli Development Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-08-
|
11
|
+
date: 2025-08-11 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: "LesliAssets provides shared frontend assets for the Lesli Framework,
|
14
14
|
\nincluding stylesheets, JavaScript, images, icons, and reusable \nview partials.
|