lesli 5.0.11 → 5.0.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/config/lesli_manifest.js +0 -13
- data/app/assets/icons/lesli/engine-security.svg +1 -0
- data/app/assets/icons/lesli/engine-shield.svg +1 -0
- data/app/assets/images/lesli/brand/app-logo.png +0 -0
- data/app/assets/images/lesli/lesli-logo.svg +4 -0
- data/app/assets/javascripts/lesli/templates/application.js +14 -0
- data/app/assets/javascripts/lesli/templates/public.js +14 -0
- data/app/assets/stylesheets/lesli/templates/application.css +1365 -293
- data/app/assets/stylesheets/lesli/templates/public.css +1 -1
- data/app/controllers/lesli/abouts_controller.rb +12 -18
- data/app/controllers/lesli/application_controller.rb +26 -25
- data/app/controllers/lesli/application_lesli_controller.rb +5 -6
- data/app/controllers/lesli/interfaces/application/authorization.rb +2 -2
- data/app/controllers/lesli/interfaces/application/customization.rb +1 -1
- data/app/controllers/lesli/interfaces/application/requester.rb +2 -2
- data/app/controllers/lesli/interfaces/application/responder.rb +8 -8
- data/app/controllers/lesli/interfaces/controllers/actions.rb +250 -0
- data/app/controllers/lesli/interfaces/controllers/activities.rb +215 -0
- data/app/controllers/lesli/interfaces/controllers/discussions.rb +270 -0
- data/app/controllers/lesli/interfaces/controllers/files.rb +467 -0
- data/app/controllers/lesli/interfaces/controllers/subscribers.rb +234 -0
- data/app/helpers/lesli/assets_helper.rb +26 -8
- data/app/helpers/lesli/navigation_helper.rb +53 -92
- data/app/lib/date2.rb +8 -0
- data/app/lib/lesli/system.rb +17 -4
- data/app/models/concerns/account_initializer.rb +46 -42
- data/app/models/concerns/user_extensions.rb +6 -0
- data/{lib/scss/devise/registrations.scss → app/models/lesli/account/detail.rb} +7 -3
- data/app/models/lesli/account.rb +12 -5
- data/app/models/lesli/cloud_object/action.rb +70 -0
- data/app/models/lesli/cloud_object/activity.rb +311 -0
- data/app/models/lesli/cloud_object/custom_field.rb +158 -0
- data/app/models/lesli/cloud_object/discussion.rb +219 -0
- data/app/models/lesli/cloud_object/subscriber.rb +186 -0
- data/app/models/lesli/shared/dashboard.rb +16 -5
- data/app/models/lesli/user/session.rb +0 -2
- data/app/models/lesli/user.rb +13 -13
- data/app/operators/lesli/controller_operator.rb +4 -1
- data/app/operators/lesli/user_registration_operator.rb +3 -3
- data/app/services/lesli/user_service.rb +1 -1
- data/app/views/lesli/layouts/application-devise.html.erb +6 -6
- data/app/views/lesli/layouts/application-lesli.html.erb +3 -1
- data/app/views/lesli/partials/_application-data.html.erb +5 -4
- data/app/views/lesli/partials/_application-lesli-engines.html.erb +14 -39
- data/app/views/lesli/partials/_application-lesli-header.html.erb +50 -25
- data/app/views/lesli/partials/_application-lesli-icons.html.erb +1 -1
- data/app/views/lesli/partials/_application-lesli-javascript.html.erb +2 -2
- data/app/views/lesli/partials/_application-lesli-navigation.html.erb +8 -1
- data/app/views/lesli/partials/_application-lesli-panels.html.erb +7 -7
- data/app/views/lesli/partials/_application-lesli-scss.html.erb +2 -2
- data/app/views/lesli/wrappers/_application-devise-simple.erb +1 -1
- data/app/views/lesli/wrappers/_application-devise.html.erb +5 -7
- data/config/initializers/devise.rb +335 -335
- data/config/initializers/lesli.rb +9 -2
- data/config/locales/translations.en.yml +9 -3
- data/config/locales/translations.es.yml +9 -3
- data/config/locales/translations.fr.yml +30 -0
- data/config/locales/translations.it.yml +30 -0
- data/config/locales/translations.pt.yml +30 -0
- data/config/routes.rb +1 -10
- data/db/migrate/{v1.0/0010003010_create_lesli_user_details.rb → v1/0010000110_create_lesli_accounts.rb} +19 -13
- data/db/migrate/{v1.0/0010000110_create_lesli_accounts.rb → v1/0010001010_create_lesli_account_details.rb} +5 -7
- data/db/migrate/{v1.0/0010001010_create_lesli_account_settings.rb → v1/0010001110_create_lesli_account_settings.rb} +2 -2
- data/db/seed/development/accounts.rb +10 -7
- data/db/seed/development/users.rb +20 -20
- data/db/seed/production/accounts.rb +10 -7
- data/lib/generators/application_lesli_generator.rb +164 -0
- data/lib/generators/lesli/spec/USAGE +8 -0
- data/lib/generators/lesli/spec/spec_generator.rb +25 -0
- data/lib/generators/lesli/spec/templates/spec-factory.template +17 -0
- data/lib/generators/lesli/spec/templates/spec-model.template +70 -0
- data/lib/lesli/configuration.rb +1 -1
- data/lib/lesli/engine.rb +3 -14
- data/lib/{scss/devise/passwords.scss → lesli/r_spec.rb} +12 -5
- data/lib/lesli/routing.rb +51 -20
- data/lib/lesli/version.rb +2 -2
- data/lib/lesli.rb +1 -0
- data/lib/scss/cloud-objects/discussion.scss +8 -5
- data/lib/scss/layouts/application-component.scss +1 -1
- data/lib/scss/{devise/sessions.scss → layouts/application-content.scss} +4 -4
- data/lib/scss/layouts/application-header.scss +38 -108
- data/lib/scss/layouts/{application-navbar.scss → application-navigation.scss} +23 -5
- data/lib/scss/layouts/application-search.scss +1 -1
- data/lib/scss/{elements/msg.scss → overrides/notification.scss} +16 -18
- data/lib/scss/pages/devise-simple.scss +4 -2
- data/lib/scss/pages/devise.scss +111 -107
- data/lib/scss/panels/panel-notification.scss +1 -1
- data/lib/scss/panels/{panel-ticket.scss → panel-support-ticket.scss} +3 -4
- data/lib/scss/settings/variables.scss +1 -1
- data/lib/scss/templates/application.scss +14 -41
- data/lib/scss/templates/public.scss +6 -4
- data/lib/tasks/lesli/controllers.rake +1 -1
- data/lib/tasks/lesli/db.rake +24 -12
- data/lib/tasks/lesli_tasks.rake +7 -7
- data/lib/vue/application.js +18 -15
- data/lib/vue/{refactor/shared/cloudobjects → cloudobjects}/discussion/content.vue +10 -8
- data/lib/vue/cloudobjects/discussion/element.vue +170 -0
- data/lib/vue/{refactor/shared/cloudobjects → cloudobjects}/discussion/filters.vue +1 -1
- data/lib/vue/{refactor/shared/cloudobjects → cloudobjects}/discussion/new.vue +20 -16
- data/lib/vue/{refactor/shared/cloudobjects → cloudobjects}/discussion.vue +25 -24
- data/lib/vue/{refactor/stores/cloudobjects → cloudobjects/stores}/discussion.js +7 -16
- data/lib/vue/layouts/application-component.vue +2 -2
- data/lib/vue/layouts/application-header.vue +109 -88
- data/lib/vue/panels/{panel-notifications.vue → panel-bell-notifications.vue} +15 -19
- data/lib/vue/panels/panel-support-tickets.vue +163 -0
- data/lib/vue/panels/stores/bell-notifications.js +46 -0
- data/lib/vue/panels/stores/support-tickets.js +103 -0
- data/lib/vue/shared/dashboards/apps/edit.vue +10 -10
- data/lib/vue/shared/dashboards/components/form.vue +31 -40
- data/lib/vue/shared/stores/dashboard.js +2 -0
- data/lib/vue/shared/stores/layout.js +2 -1
- data/lib/{scss/devise/confirmations.scss → vue/shared/stores/users.js} +22 -21
- data/lib/vue/stores/translations.json +119 -2
- data/lib/webpack/base.js +18 -12
- data/lib/webpack/core.js +16 -12
- data/lib/webpack/engines.js +3 -1
- data/lib/webpack/root.js +105 -0
- data/lib/webpack/version.js +37 -0
- data/readme.md +16 -15
- metadata +58 -92
- data/app/assets/icons/lesli/engine-guard.svg +0 -1
- data/app/assets/javascripts/lesli/users/sessions.js +0 -1
- data/app/assets/stylesheets/lesli/users/sessions.css +0 -1
- data/app/controllers/users/confirmations_controller.rb +0 -66
- data/app/controllers/users/omniauth_callbacks_controller.rb +0 -30
- data/app/controllers/users/passwords_controller.rb +0 -71
- data/app/controllers/users/registrations_controller.rb +0 -141
- data/app/controllers/users/sessions_controller.rb +0 -141
- data/app/controllers/users/unlocks_controller.rb +0 -30
- data/app/views/devise/confirmations/new.html.erb +0 -2
- data/app/views/devise/confirmations/show.html.erb +0 -63
- data/app/views/devise/mailer/confirmation_instructions.html.erb +0 -5
- data/app/views/devise/mailer/email_changed.html.erb +0 -7
- data/app/views/devise/mailer/password_change.html.erb +0 -3
- data/app/views/devise/mailer/reset_password_instructions.html.erb +0 -8
- data/app/views/devise/mailer/unlock_instructions.html.erb +0 -7
- data/app/views/devise/passwords/edit.html.erb +0 -79
- data/app/views/devise/passwords/new.html.erb +0 -75
- data/app/views/devise/registrations/edit.html.erb +0 -43
- data/app/views/devise/registrations/new.html.erb +0 -147
- data/app/views/devise/sessions/new.html.erb +0 -114
- data/app/views/devise/shared/_demo.html.erb +0 -7
- data/app/views/devise/shared/_error_messages.html.erb +0 -15
- data/app/views/devise/shared/_links.html.erb +0 -96
- data/app/views/devise/unlocks/new.html.erb +0 -16
- data/db/migrate/v1.0/0010000210_create_lesli_roles.rb +0 -59
- data/db/migrate/v1.0/0010000310_create_lesli_users.rb +0 -97
- data/db/migrate/v1.0/0010003110_create_lesli_user_settings.rb +0 -44
- data/db/migrate/v1.0/0010003210_create_lesli_user_sessions.rb +0 -55
- data/db/migrate/v1.0/0010003410_create_lesli_user_powers.rb +0 -43
- data/db/migrate/v1.0/0010004010_create_lesli_user_logs.rb +0 -45
- data/db/migrate/v1.0/0010005010_create_lesli_descriptors.rb +0 -44
- data/db/migrate/v1.0/0010005110_create_lesli_descriptor_privileges.rb +0 -45
- data/db/migrate/v1.0/0010005210_create_lesli_descriptor_activities.rb +0 -49
- data/db/migrate/v1.0/0010005510_create_lesli_role_powers.rb +0 -51
- data/db/migrate/v1.0/0010005710_create_lesli_role_privileges.rb +0 -45
- data/lib/scss/bulma/loader.scss +0 -92
- data/lib/scss/components/editor-richtext.scss +0 -88
- data/lib/scss/devise/oauth.scss +0 -34
- data/lib/scss/elements/avatar.scss +0 -48
- data/lib/scss/elements/calendar.scss +0 -47
- data/lib/scss/elements/toggle.scss +0 -102
- data/lib/vue/devise/confirmations.js +0 -33
- data/lib/vue/devise/passwords.js +0 -137
- data/lib/vue/devise/registrations.js +0 -157
- data/lib/vue/devise/sessions.js +0 -148
- data/lib/vue/panels/panel-tickets.vue +0 -181
- data/lib/vue/refactor/shared/cloudobjects/discussion/element.vue +0 -132
- data/lib/vue/shared/stores/account.js +0 -113
- /data/app/assets/icons/lesli/{engine-driver.svg → engine-calendar.svg} +0 -0
- /data/db/migrate/{v1.0 → v1}/0010000610_create_lesli_system_controllers.rb +0 -0
- /data/db/migrate/{v1.0 → v1}/0010000710_create_lesli_system_controller_actions.rb +0 -0
- /data/db/migrate/{v1.0 → v1}/0010001210_create_lesli_account_activities.rb +0 -0
- /data/db/migrate/{v1.0 → v1}/0010001410_create_lesli_account_logs.rb +0 -0
data/lib/lesli/configuration.rb
CHANGED
@@ -19,7 +19,7 @@ along with this program. If not, see http://www.gnu.org/licenses/.
|
|
19
19
|
|
20
20
|
Lesli · Ruby on Rails SaaS Development Framework.
|
21
21
|
|
22
|
-
Made with ♥ by
|
22
|
+
Made with ♥ by LesliTech
|
23
23
|
Building a better future, one line of code at a time.
|
24
24
|
|
25
25
|
@contact hello@lesli.tech
|
data/lib/lesli/engine.rb
CHANGED
@@ -19,11 +19,11 @@ along with this program. If not, see http://www.gnu.org/licenses/.
|
|
19
19
|
|
20
20
|
Lesli · Ruby on Rails SaaS Development Framework.
|
21
21
|
|
22
|
-
Made with ♥ by
|
22
|
+
Made with ♥ by LesliTech
|
23
23
|
Building a better future, one line of code at a time.
|
24
24
|
|
25
25
|
@contact hello@lesli.tech
|
26
|
-
@website https://www.lesli.
|
26
|
+
@website https://www.lesli.tech
|
27
27
|
@license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
|
28
28
|
|
29
29
|
// · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
|
@@ -36,9 +36,8 @@ require "kaminari"
|
|
36
36
|
|
37
37
|
# · Tools used to build the Lesli Framework
|
38
38
|
require "L2"
|
39
|
-
require "
|
39
|
+
require "ancestry"
|
40
40
|
require "useragent"
|
41
|
-
#require "flag-icons-rails"
|
42
41
|
require "acts_as_paranoid"
|
43
42
|
|
44
43
|
module Lesli
|
@@ -65,14 +64,6 @@ module Lesli
|
|
65
64
|
# Lesli Framework configuration
|
66
65
|
|
67
66
|
|
68
|
-
# Include lib/assets folder in the asset pipeline
|
69
|
-
#config.assets.paths << root.join("lib", "assets")
|
70
|
-
|
71
|
-
#config.assets.paths << root.join("lib", "sass")
|
72
|
-
|
73
|
-
# Include third-party assets
|
74
|
-
#config.assets.paths << root.join("vendor")
|
75
|
-
|
76
67
|
# Default languages
|
77
68
|
config.i18n.default_locale = :en
|
78
69
|
config.i18n.available_locales = [:en]
|
@@ -98,8 +89,6 @@ module Lesli
|
|
98
89
|
from: config.company.dig(:email)
|
99
90
|
}
|
100
91
|
|
101
|
-
|
102
|
-
|
103
92
|
# Mailer url options for development
|
104
93
|
config.action_mailer.default_url_options ||= {
|
105
94
|
host: "http://0.0.0.0:3000"
|
@@ -1,4 +1,4 @@
|
|
1
|
-
|
1
|
+
=begin
|
2
2
|
|
3
3
|
Lesli
|
4
4
|
|
@@ -19,7 +19,7 @@ along with this program. If not, see http://www.gnu.org/licenses/.
|
|
19
19
|
|
20
20
|
Lesli · Ruby on Rails SaaS Development Framework.
|
21
21
|
|
22
|
-
Made with ♥ by
|
22
|
+
Made with ♥ by LesliTech
|
23
23
|
Building a better future, one line of code at a time.
|
24
24
|
|
25
25
|
@contact hello@lesli.tech
|
@@ -28,6 +28,13 @@ Building a better future, one line of code at a time.
|
|
28
28
|
|
29
29
|
// · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
|
30
30
|
// ·
|
31
|
-
|
32
|
-
|
33
|
-
|
31
|
+
=end
|
32
|
+
|
33
|
+
# ·
|
34
|
+
module Lesli
|
35
|
+
module RSpec
|
36
|
+
def self.testers_request
|
37
|
+
Lesli::Engine.root.join("spec/support/testers/request")
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
data/lib/lesli/routing.rb
CHANGED
@@ -1,25 +1,56 @@
|
|
1
|
+
=begin
|
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
|
+
=end
|
32
|
+
|
33
|
+
# ·
|
1
34
|
module Lesli
|
2
35
|
module Routing
|
3
|
-
def self.
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
:sessions => "users/sessions"
|
22
|
-
}
|
36
|
+
def self.mount_dashboard_for lesli_engine
|
37
|
+
|
38
|
+
lesli_engine::Engine.routes.draw do
|
39
|
+
|
40
|
+
# Dashboard alias
|
41
|
+
root to: "dashboards#show"
|
42
|
+
|
43
|
+
# Dashboard management
|
44
|
+
resource :dashboard, only: [:show]
|
45
|
+
resources :dashboards do
|
46
|
+
collection do
|
47
|
+
post "list" => :index
|
48
|
+
get :options
|
49
|
+
end
|
50
|
+
scope module: :dashboard do
|
51
|
+
resources :components
|
52
|
+
end
|
53
|
+
end
|
23
54
|
end
|
24
55
|
end
|
25
56
|
end
|
data/lib/lesli/version.rb
CHANGED
data/lib/lesli.rb
CHANGED
@@ -17,9 +17,9 @@ GNU General Public License for more details.
|
|
17
17
|
You should have received a copy of the GNU General Public License
|
18
18
|
along with this program. If not, see http://www.gnu.org/licenses/.
|
19
19
|
|
20
|
-
Lesli · Ruby on Rails SaaS
|
20
|
+
Lesli · Ruby on Rails SaaS Development Framework.
|
21
21
|
|
22
|
-
Made with ♥ by
|
22
|
+
Made with ♥ by LesliTech
|
23
23
|
Building a better future, one line of code at a time.
|
24
24
|
|
25
25
|
@contact hello@lesli.tech
|
@@ -27,12 +27,15 @@ Building a better future, one line of code at a time.
|
|
27
27
|
@license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
|
28
28
|
|
29
29
|
// · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
|
30
|
-
// ·
|
31
|
-
|
30
|
+
// ·
|
32
31
|
*/
|
33
32
|
|
34
|
-
.discussion {
|
33
|
+
.lesli-cloud-object-discussion {
|
34
|
+
max-width: 1000px;
|
35
|
+
}
|
35
36
|
|
37
|
+
.discussion {
|
38
|
+
|
36
39
|
&-content {
|
37
40
|
display: flex;
|
38
41
|
flex-direction: column;
|
@@ -1,5 +1,4 @@
|
|
1
1
|
/*
|
2
|
-
|
3
2
|
Lesli
|
4
3
|
|
5
4
|
Copyright (c) 2023, Lesli Technologies, S. A.
|
@@ -19,7 +18,7 @@ along with this program. If not, see http://www.gnu.org/licenses/.
|
|
19
18
|
|
20
19
|
Lesli · Ruby on Rails SaaS Development Framework.
|
21
20
|
|
22
|
-
Made with ♥ by
|
21
|
+
Made with ♥ by LesliTech
|
23
22
|
Building a better future, one line of code at a time.
|
24
23
|
|
25
24
|
@contact hello@lesli.tech
|
@@ -30,6 +29,7 @@ Building a better future, one line of code at a time.
|
|
30
29
|
// ·
|
31
30
|
*/
|
32
31
|
|
33
|
-
|
34
32
|
// ·
|
35
|
-
|
33
|
+
section.lesli-application-content {
|
34
|
+
display: flex;
|
35
|
+
}
|
@@ -19,11 +19,11 @@ along with this program. If not, see http://www.gnu.org/licenses/.
|
|
19
19
|
|
20
20
|
Lesli · Ruby on Rails SaaS Development Framework.
|
21
21
|
|
22
|
-
Made with ♥ by
|
22
|
+
Made with ♥ by LesliTech
|
23
23
|
Building a better future, one line of code at a time.
|
24
24
|
|
25
25
|
@contact hello@lesli.tech
|
26
|
-
@website https://www.lesli.
|
26
|
+
@website https://www.lesli.tech
|
27
27
|
@license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
|
28
28
|
|
29
29
|
// · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
|
@@ -33,128 +33,58 @@ Building a better future, one line of code at a time.
|
|
33
33
|
|
34
34
|
// ·
|
35
35
|
header.lesli-application-header {
|
36
|
-
height: var(--lesli-header-height);
|
37
36
|
background-color: var(--lesli-header-color);
|
38
|
-
border-bottom: 1px solid rgba(172,179,194,.
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
// · main logo
|
43
|
-
.lesli-brand {
|
44
|
-
img {
|
45
|
-
height: var(--lesli-header-height);
|
46
|
-
}
|
47
|
-
}
|
48
|
-
|
49
|
-
|
50
|
-
// · Navigation and icons contianer
|
51
|
-
.lesli-application-header-container {
|
52
|
-
width: 100%;
|
53
|
-
height: 100%;
|
54
|
-
display: flex;
|
55
|
-
align-items: center;
|
56
|
-
flex-direction: row;
|
57
|
-
justify-content: space-between;
|
58
|
-
padding: 0 1.2rem;
|
59
|
-
}
|
60
|
-
|
61
|
-
|
62
|
-
// · Logo and search container
|
63
|
-
.lesli-application-header-left {
|
64
|
-
flex: 1;
|
65
|
-
|
66
|
-
.control {
|
67
|
-
flex: 1;
|
68
|
-
|
69
|
-
.icon {
|
70
|
-
height: 100%;
|
71
|
-
display: flex;
|
72
|
-
align-items: center;
|
73
|
-
justify-content: center;
|
74
|
-
}
|
75
|
-
|
76
|
-
.material-icons {
|
77
|
-
font-size: 25px;
|
78
|
-
}
|
79
|
-
|
80
|
-
input {
|
81
|
-
font-size: 1.15rem;
|
82
|
-
padding-left: 2.7rem;
|
83
|
-
border-radius: 8px;
|
84
|
-
border: 1px solid transparent;
|
85
|
-
transition: all linear .3s;
|
86
|
-
background-color: transparent;
|
37
|
+
border-bottom: 1px solid rgba(172,179,194,.3);
|
38
|
+
height: var(--lesli-header-height);
|
87
39
|
|
88
|
-
|
89
|
-
color: lesli-css-color(silver, 700);
|
90
|
-
}
|
40
|
+
nav.lesli-navbar {
|
91
41
|
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
}
|
42
|
+
.navbar-brand {
|
43
|
+
img {
|
44
|
+
height: var(--lesli-header-height);
|
96
45
|
}
|
97
46
|
}
|
98
|
-
}
|
99
|
-
|
100
|
-
|
101
|
-
// · Indicator icons container
|
102
|
-
.lesli-application-header-right {
|
103
47
|
|
104
|
-
.
|
105
|
-
|
106
|
-
}
|
48
|
+
.navbar-item {
|
49
|
+
padding: 0;
|
107
50
|
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
51
|
+
// navigation icon containers
|
52
|
+
span {
|
53
|
+
line-height: 1;
|
54
|
+
}
|
112
55
|
|
113
|
-
// icons
|
56
|
+
// navigation icons
|
114
57
|
[class^="ri-"] {
|
115
58
|
font-size: 25px;
|
59
|
+
padding: 0 0.6rem;
|
60
|
+
color: lesli-css-color(black, 700);
|
116
61
|
}
|
117
62
|
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
width: 8px;
|
122
|
-
height: 8px;
|
123
|
-
font-size: 0px;
|
124
|
-
text-align: center;
|
125
|
-
border-radius: 50%;
|
126
|
-
background-color: lesli-css-color(berry, 300);
|
127
|
-
color: lesli-css-color(silver, 100);
|
128
|
-
font-family: sans-serif;
|
129
|
-
position: absolute;
|
130
|
-
}
|
131
|
-
}
|
132
|
-
|
133
|
-
//
|
134
|
-
.header-user-options {
|
135
|
-
margin-left: 20px;
|
63
|
+
// Notification icon & count
|
64
|
+
.header-indicator {
|
65
|
+
position: relative;
|
136
66
|
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
67
|
+
// icons
|
68
|
+
[class^="ri-"] {
|
69
|
+
font-size: 25px;
|
70
|
+
color: lesli-css-color(black, 700);
|
71
|
+
}
|
72
|
+
|
73
|
+
.count {
|
74
|
+
top: -4px;
|
75
|
+
right: 6px;
|
76
|
+
width: 8px;
|
77
|
+
height: 8px;
|
78
|
+
border-radius: 50%;
|
79
|
+
background-color: lesli-css-color(berry, 300);
|
80
|
+
position: absolute;
|
151
81
|
}
|
152
82
|
}
|
83
|
+
}
|
153
84
|
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
}
|
85
|
+
.dropdown {
|
86
|
+
.icon-text {
|
87
|
+
align-items: center;
|
158
88
|
}
|
159
89
|
}
|
160
90
|
}
|
@@ -32,7 +32,7 @@ Building a better future, one line of code at a time.
|
|
32
32
|
|
33
33
|
nav.lesli-application-navigation {
|
34
34
|
background-color: var(--lesli-navbar-color);
|
35
|
-
border-bottom: 1px solid rgba(172,179,194,.
|
35
|
+
border-bottom: 1px solid rgba(172,179,194,.5);
|
36
36
|
width: 100%;
|
37
37
|
|
38
38
|
ul {
|
@@ -40,17 +40,24 @@ nav.lesli-application-navigation {
|
|
40
40
|
justify-content: center;
|
41
41
|
|
42
42
|
li a {
|
43
|
-
|
43
|
+
gap: 6px;
|
44
44
|
display: flex;
|
45
|
+
padding: 1rem 1.1rem;
|
45
46
|
align-items: center;
|
47
|
+
border-bottom: 2px solid transparent;
|
48
|
+
color: lesli-css-color(black, 700);
|
46
49
|
|
50
|
+
// highlight active link
|
51
|
+
&.navigation-link-active {
|
52
|
+
border-bottom-color: lesli-css-color(lesli, primary);
|
53
|
+
}
|
54
|
+
|
47
55
|
// link label
|
48
56
|
span.text {
|
49
|
-
margin-left: 6px;
|
50
|
-
font-size: 1rem;
|
51
|
-
display: inline-block;
|
52
57
|
flex-grow: 1;
|
58
|
+
font-size: 1rem;
|
53
59
|
text-align: left;
|
60
|
+
display: inline-block;
|
54
61
|
}
|
55
62
|
|
56
63
|
[class^="ri-"] {
|
@@ -59,3 +66,14 @@ nav.lesli-application-navigation {
|
|
59
66
|
}
|
60
67
|
}
|
61
68
|
}
|
69
|
+
|
70
|
+
|
71
|
+
@include lesli-css-breakpoint-small {
|
72
|
+
|
73
|
+
nav.lesli-application-navigation {
|
74
|
+
ul {
|
75
|
+
display: block;
|
76
|
+
justify-content: center;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
}
|
@@ -44,7 +44,7 @@ Building a better future, one line of code at a time.
|
|
44
44
|
padding: 0 28px;
|
45
45
|
max-width: calc(100% - var(--lesli-sidebar-width));
|
46
46
|
margin-left: var(--lesli-sidebar-width);
|
47
|
-
background-color:
|
47
|
+
background-color: white;
|
48
48
|
|
49
49
|
.content {
|
50
50
|
padding: 0;
|
@@ -17,7 +17,7 @@ GNU General Public License for more details.
|
|
17
17
|
You should have received a copy of the GNU General Public License
|
18
18
|
along with this program. If not, see http://www.gnu.org/licenses/.
|
19
19
|
|
20
|
-
Lesli · Ruby on Rails SaaS
|
20
|
+
Lesli · Ruby on Rails SaaS Development Framework.
|
21
21
|
|
22
22
|
Made with ♥ by https://www.lesli.tech
|
23
23
|
Building a better future, one line of code at a time.
|
@@ -27,29 +27,27 @@ Building a better future, one line of code at a time.
|
|
27
27
|
@license GPLv3 http://www.gnu.org/licenses/gpl-3.0.en.html
|
28
28
|
|
29
29
|
// · ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~ ~·~
|
30
|
-
// ·
|
31
|
-
|
30
|
+
// ·
|
32
31
|
*/
|
33
32
|
|
34
33
|
|
35
34
|
// ·
|
36
35
|
.lesli-msg {
|
37
36
|
position: fixed;
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
animation: lesli-msg-fade-out cubic-bezier(.22, .58, .12, .98) .4s forwards;
|
37
|
+
width: 100%;
|
38
|
+
top: 40px;
|
39
|
+
|
40
|
+
.lesli-msg-content {
|
41
|
+
text-align: center;
|
42
|
+
margin-bottom: 2px;
|
43
|
+
//animation: lesli-msg-move-in-top cubic-bezier(.22, .58, .12, .98) .4s;
|
44
|
+
&.hide {
|
45
|
+
animation: lesli-msg-fade-out cubic-bezier(.22, .58, .12, .98) .2s forwards;
|
46
|
+
}
|
47
|
+
|
48
|
+
.notification {
|
49
|
+
display: inline-block;
|
50
|
+
}
|
53
51
|
}
|
54
52
|
}
|
55
53
|
|
@@ -30,10 +30,12 @@ Building a better future, one line of code at a time.
|
|
30
30
|
// ·
|
31
31
|
*/
|
32
32
|
|
33
|
-
|
34
|
-
|
33
|
+
|
34
|
+
// ·
|
35
|
+
@import "Lesli/scss/templates/public";
|
35
36
|
|
36
37
|
|
38
|
+
// ·
|
37
39
|
main {
|
38
40
|
background: white;
|
39
41
|
|