lesli_shield 1.0.3 → 1.0.4
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/stylesheets/lesli_shield/confirmations.css +18732 -0
- data/app/assets/stylesheets/lesli_shield/passwords.css +2 -238
- data/app/assets/stylesheets/lesli_shield/registrations.css +2 -238
- data/app/assets/stylesheets/lesli_shield/sessions.css +2 -238
- data/app/controllers/lesli_shield/dashboards_controller.rb +1 -8
- data/app/controllers/lesli_shield/invites_controller.rb +80 -0
- data/app/controllers/lesli_shield/role/actions_controller.rb +32 -20
- data/app/controllers/lesli_shield/roles_controller.rb +16 -8
- data/app/controllers/lesli_shield/sessions_controller.rb +5 -8
- data/app/controllers/lesli_shield/user/roles_controller.rb +62 -0
- data/app/controllers/lesli_shield/users_controller.rb +57 -20
- data/app/controllers/users/confirmations_controller.rb +42 -8
- data/app/controllers/users/passwords_controller.rb +52 -37
- data/app/controllers/users/registrations_controller.rb +2 -8
- data/app/controllers/users/sessions_controller.rb +57 -50
- data/app/helpers/lesli_shield/invites_helper.rb +4 -0
- data/app/helpers/lesli_shield/user/roles_helper.rb +4 -0
- data/app/interfaces/lesli_shield/authorization_interface.rb +8 -2
- data/app/mailers/lesli_shield/devise_mailer.rb +98 -0
- data/app/mailers/lesli_shield/invitation.html.erb +23 -0
- data/app/models/concerns/lesli_shield/user_security.rb +222 -0
- data/app/models/lesli_shield/account.rb +1 -1
- data/app/models/lesli_shield/dashboard.rb +1 -4
- data/app/models/lesli_shield/invite.rb +24 -0
- data/{lib/vue/confirmations.js → app/models/lesli_shield/role/action.rb} +17 -10
- data/{db/migrate/v1/0801003010_create_lesli_shield_dashboards.rb → app/models/lesli_shield/role/privilege.rb} +5 -4
- data/app/models/lesli_shield/user/role.rb +8 -0
- data/app/models/lesli_shield/user/session.rb +80 -0
- data/app/services/lesli_shield/invite_service.rb +43 -0
- data/app/services/lesli_shield/role_action_service.rb +118 -0
- data/app/services/lesli_shield/role_privilege_service.rb +112 -0
- data/app/{operators/lesli_shield/user_registration_operator.rb → services/lesli_shield/user_registration_service.rb} +26 -29
- data/app/services/lesli_shield/user_session_service.rb +78 -0
- data/app/services/lesli_shield/user_validator_service.rb +221 -0
- data/app/views/devise/confirmations/show.html.erb +4 -6
- data/app/views/devise/passwords/edit.html.erb +1 -2
- data/app/views/devise/passwords/new.html.erb +1 -1
- data/app/views/devise/registrations/new.html.erb +5 -4
- data/app/views/devise/sessions/new.html.erb +3 -2
- data/app/views/devise/shared/_application-devise-simple.erb +59 -0
- data/app/views/devise/shared/_application-devise.html.erb +76 -0
- data/app/views/lesli_shield/dashboards/_component-calendar.html.erb +1 -0
- data/app/views/lesli_shield/dashboards/_component-chart-bar.html.erb +6 -0
- data/app/views/lesli_shield/dashboards/_component-chart-line.html.erb +8 -0
- data/app/views/lesli_shield/dashboards/_component-count.html.erb +1 -0
- data/app/views/lesli_shield/dashboards/_component-date.html.erb +1 -0
- data/app/views/lesli_shield/dashboards/_component-weather.html.erb +1 -0
- data/app/views/lesli_shield/invites/_form.html.erb +10 -0
- data/app/views/lesli_shield/invites/_invite.html.erb +2 -0
- data/app/views/lesli_shield/invites/edit.html.erb +12 -0
- data/app/views/lesli_shield/invites/index.html.erb +66 -0
- data/{db/migrate/v1/0801001710_create_lesli_shield_settings.rb → app/views/lesli_shield/invites/new.html.erb} +9 -10
- data/{lib/vue/apps/dashboards/components/engine-version.vue → app/views/lesli_shield/invites/show.html.erb} +26 -43
- data/app/views/lesli_shield/partials/_navigation.html.erb +2 -4
- data/app/views/lesli_shield/{roles/_form-privileges.html.erb → role/actions/_form.html.erb} +5 -30
- data/app/views/lesli_shield/role/actions/index.html.erb +14 -0
- data/app/views/lesli_shield/roles/index.html.erb +2 -6
- data/app/views/lesli_shield/roles/new.html.erb +0 -11
- data/app/views/lesli_shield/roles/show.html.erb +5 -8
- data/app/views/lesli_shield/user/roles/_form.html.erb +17 -0
- data/app/views/lesli_shield/user/roles/_role.html.erb +2 -0
- data/app/views/lesli_shield/user/roles/edit.html.erb +12 -0
- data/app/views/lesli_shield/user/roles/index.html.erb +16 -0
- data/app/views/lesli_shield/user/roles/new.html.erb +11 -0
- data/app/views/lesli_shield/user/roles/show.html.erb +10 -0
- data/app/views/lesli_shield/users/{_viewer-activities.html.erb → _activities-viewer.html.erb} +2 -4
- data/app/views/lesli_shield/users/_information-card.html.erb +3 -3
- data/app/views/lesli_shield/users/_management-privileges.html.erb +74 -0
- data/app/views/lesli_shield/users/_management-security.html.erb +5 -0
- data/app/views/lesli_shield/users/index.html.erb +3 -7
- data/app/views/lesli_shield/users/new.html.erb +5 -11
- data/app/views/lesli_shield/users/show.html.erb +7 -5
- data/config/initializers/devise.rb +305 -304
- data/config/locales/translations.en.yml +4 -1
- data/config/locales/translations.es.yml +4 -1
- data/config/locales/translations.it.yml +4 -1
- data/config/routes.rb +7 -8
- data/db/migrate/v1/0801100210_create_lesli_shield_role_actions.rb +48 -0
- data/db/migrate/v1/0801100410_create_lesli_shield_role_privileges.rb +45 -0
- data/db/migrate/v1/0801110110_create_lesli_shield_user_roles.rb +43 -0
- data/db/migrate/v1/0801111210_create_lesli_shield_user_sessions.rb +56 -0
- data/db/migrate/v1/0801120110_create_lesli_shield_invites.rb +49 -0
- data/lib/lesli_shield/router.rb +21 -0
- data/lib/lesli_shield/version.rb +2 -2
- data/lib/lesli_shield.rb +1 -1
- data/lib/scss/confirmations.scss +24 -24
- data/lib/tasks/lesli_shield_tasks.rake +1 -1
- data/readme.md +59 -20
- metadata +57 -33
- data/app/controllers/lesli_shield/dashboard/components_controller.rb +0 -60
- data/app/models/lesli_shield/dashboard/component.rb +0 -18
- data/app/views/lesli_shield/dashboards/edit.html.erb +0 -1
- data/app/views/lesli_shield/dashboards/index.html.erb +0 -9
- data/app/views/lesli_shield/dashboards/new.html.erb +0 -1
- data/app/views/lesli_shield/dashboards/show.html.erb +0 -1
- data/app/views/lesli_shield/roles/_session.html.erb +0 -2
- data/app/views/lesli_shield/roles/edit.html.erb +0 -12
- data/app/views/lesli_shield/roles/update.turbo_stream.erb +0 -3
- data/app/views/lesli_shield/users/update.turbo_stream.erb +0 -3
- data/lib/lesli_shield/routing.rb +0 -23
- data/lib/vue/application.js +0 -83
- data/lib/vue/apps/sessions/index.vue +0 -50
- data/lib/vue/passwords.js +0 -137
- data/lib/vue/registrations.js +0 -144
- data/lib/vue/sessions.js +0 -148
- data/lib/vue/stores/sessions.js +0 -43
- data/lib/vue/stores/translations.json +0 -162
- /data/app/views/lesli_shield/roles/{_form-information.html.erb → _form.html.erb} +0 -0
- /data/db/migrate/v1/{0801120310_create_lesli_shield_user_shortcuts.rb → 0801111010_create_lesli_shield_user_shortcuts.rb} +0 -0
- /data/db/migrate/v1/{0801120410_create_lesli_shield_user_tokens.rb → 0801111110_create_lesli_shield_user_tokens.rb} +0 -0
|
@@ -1055,7 +1055,7 @@ table th {
|
|
|
1055
1055
|
width: 0.625em;
|
|
1056
1056
|
}
|
|
1057
1057
|
|
|
1058
|
-
.level:not(:last-child), .fixed-grid:not(:last-child), .grid:not(:last-child), .field:not(:last-child), .file:not(:last-child), .pagination:not(:last-child), .tabs:not(:last-child), .notification:not(:last-child), .buttons:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .
|
|
1058
|
+
.level:not(:last-child), .fixed-grid:not(:last-child), .grid:not(:last-child), .field:not(:last-child), .file:not(:last-child), .pagination:not(:last-child), .tabs:not(:last-child), .notification:not(:last-child), .buttons:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .box:not(:last-child) {
|
|
1059
1059
|
margin-bottom: var(--bulma-block-spacing);
|
|
1060
1060
|
}
|
|
1061
1061
|
|
|
@@ -1711,242 +1711,6 @@ a.box:active {
|
|
|
1711
1711
|
box-shadow: var(--bulma-box-link-active-shadow);
|
|
1712
1712
|
}
|
|
1713
1713
|
|
|
1714
|
-
/* Bulma Utilities */
|
|
1715
|
-
.tags {
|
|
1716
|
-
align-items: center;
|
|
1717
|
-
color: hsl(var(--bulma-tag-h), var(--bulma-tag-s), var(--bulma-tag-color-l));
|
|
1718
|
-
display: flex;
|
|
1719
|
-
flex-wrap: wrap;
|
|
1720
|
-
gap: 0.5rem;
|
|
1721
|
-
justify-content: flex-start;
|
|
1722
|
-
}
|
|
1723
|
-
.tags.are-medium .tag:not(.is-normal):not(.is-large) {
|
|
1724
|
-
font-size: var(--bulma-size-normal);
|
|
1725
|
-
}
|
|
1726
|
-
.tags.are-large .tag:not(.is-normal):not(.is-medium) {
|
|
1727
|
-
font-size: var(--bulma-size-medium);
|
|
1728
|
-
}
|
|
1729
|
-
.tags.is-centered {
|
|
1730
|
-
gap: 0.25rem;
|
|
1731
|
-
justify-content: center;
|
|
1732
|
-
}
|
|
1733
|
-
.tags.is-right {
|
|
1734
|
-
justify-content: flex-end;
|
|
1735
|
-
}
|
|
1736
|
-
.tags.has-addons {
|
|
1737
|
-
gap: 0;
|
|
1738
|
-
}
|
|
1739
|
-
.tags.has-addons .tag:not(:first-child) {
|
|
1740
|
-
border-start-start-radius: 0;
|
|
1741
|
-
border-end-start-radius: 0;
|
|
1742
|
-
}
|
|
1743
|
-
.tags.has-addons .tag:not(:last-child) {
|
|
1744
|
-
border-start-end-radius: 0;
|
|
1745
|
-
border-end-end-radius: 0;
|
|
1746
|
-
}
|
|
1747
|
-
|
|
1748
|
-
.tag {
|
|
1749
|
-
--bulma-tag-h: var(--bulma-scheme-h);
|
|
1750
|
-
--bulma-tag-s: var(--bulma-scheme-s);
|
|
1751
|
-
--bulma-tag-background-l: var(--bulma-background-l);
|
|
1752
|
-
--bulma-tag-background-l-delta: 0%;
|
|
1753
|
-
--bulma-tag-hover-background-l-delta: var(--bulma-hover-background-l-delta);
|
|
1754
|
-
--bulma-tag-active-background-l-delta: var(--bulma-active-background-l-delta);
|
|
1755
|
-
--bulma-tag-color-l: var(--bulma-text-l);
|
|
1756
|
-
--bulma-tag-radius: var(--bulma-radius);
|
|
1757
|
-
--bulma-tag-delete-margin: 1px;
|
|
1758
|
-
align-items: center;
|
|
1759
|
-
background-color: hsl(var(--bulma-tag-h), var(--bulma-tag-s), calc(var(--bulma-tag-background-l) + var(--bulma-tag-background-l-delta)));
|
|
1760
|
-
border-radius: var(--bulma-radius);
|
|
1761
|
-
color: hsl(var(--bulma-tag-h), var(--bulma-tag-s), var(--bulma-tag-color-l));
|
|
1762
|
-
display: inline-flex;
|
|
1763
|
-
font-size: var(--bulma-size-small);
|
|
1764
|
-
height: 2em;
|
|
1765
|
-
justify-content: center;
|
|
1766
|
-
line-height: 1.5;
|
|
1767
|
-
padding-left: 0.75em;
|
|
1768
|
-
padding-right: 0.75em;
|
|
1769
|
-
white-space: nowrap;
|
|
1770
|
-
}
|
|
1771
|
-
.tag .delete {
|
|
1772
|
-
margin-inline-start: 0.25rem;
|
|
1773
|
-
margin-inline-end: -0.375rem;
|
|
1774
|
-
}
|
|
1775
|
-
.tag.is-white {
|
|
1776
|
-
--bulma-tag-h: var(--bulma-white-h);
|
|
1777
|
-
--bulma-tag-s: var(--bulma-white-s);
|
|
1778
|
-
--bulma-tag-background-l: var(--bulma-white-l);
|
|
1779
|
-
--bulma-tag-color-l: var(--bulma-white-invert-l);
|
|
1780
|
-
}
|
|
1781
|
-
.tag.is-white.is-light {
|
|
1782
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1783
|
-
--bulma-tag-color-l: var(--bulma-white-light-invert-l);
|
|
1784
|
-
}
|
|
1785
|
-
.tag.is-black {
|
|
1786
|
-
--bulma-tag-h: var(--bulma-black-h);
|
|
1787
|
-
--bulma-tag-s: var(--bulma-black-s);
|
|
1788
|
-
--bulma-tag-background-l: var(--bulma-black-l);
|
|
1789
|
-
--bulma-tag-color-l: var(--bulma-black-invert-l);
|
|
1790
|
-
}
|
|
1791
|
-
.tag.is-black.is-light {
|
|
1792
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1793
|
-
--bulma-tag-color-l: var(--bulma-black-light-invert-l);
|
|
1794
|
-
}
|
|
1795
|
-
.tag.is-light {
|
|
1796
|
-
--bulma-tag-h: var(--bulma-light-h);
|
|
1797
|
-
--bulma-tag-s: var(--bulma-light-s);
|
|
1798
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1799
|
-
--bulma-tag-color-l: var(--bulma-light-invert-l);
|
|
1800
|
-
}
|
|
1801
|
-
.tag.is-light.is-light {
|
|
1802
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1803
|
-
--bulma-tag-color-l: var(--bulma-light-light-invert-l);
|
|
1804
|
-
}
|
|
1805
|
-
.tag.is-dark {
|
|
1806
|
-
--bulma-tag-h: var(--bulma-dark-h);
|
|
1807
|
-
--bulma-tag-s: var(--bulma-dark-s);
|
|
1808
|
-
--bulma-tag-background-l: var(--bulma-dark-l);
|
|
1809
|
-
--bulma-tag-color-l: var(--bulma-dark-invert-l);
|
|
1810
|
-
}
|
|
1811
|
-
.tag.is-dark.is-light {
|
|
1812
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1813
|
-
--bulma-tag-color-l: var(--bulma-dark-light-invert-l);
|
|
1814
|
-
}
|
|
1815
|
-
.tag.is-text {
|
|
1816
|
-
--bulma-tag-h: var(--bulma-text-h);
|
|
1817
|
-
--bulma-tag-s: var(--bulma-text-s);
|
|
1818
|
-
--bulma-tag-background-l: var(--bulma-text-l);
|
|
1819
|
-
--bulma-tag-color-l: var(--bulma-text-invert-l);
|
|
1820
|
-
}
|
|
1821
|
-
.tag.is-text.is-light {
|
|
1822
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1823
|
-
--bulma-tag-color-l: var(--bulma-text-light-invert-l);
|
|
1824
|
-
}
|
|
1825
|
-
.tag.is-primary {
|
|
1826
|
-
--bulma-tag-h: var(--bulma-primary-h);
|
|
1827
|
-
--bulma-tag-s: var(--bulma-primary-s);
|
|
1828
|
-
--bulma-tag-background-l: var(--bulma-primary-l);
|
|
1829
|
-
--bulma-tag-color-l: var(--bulma-primary-invert-l);
|
|
1830
|
-
}
|
|
1831
|
-
.tag.is-primary.is-light {
|
|
1832
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1833
|
-
--bulma-tag-color-l: var(--bulma-primary-light-invert-l);
|
|
1834
|
-
}
|
|
1835
|
-
.tag.is-link {
|
|
1836
|
-
--bulma-tag-h: var(--bulma-link-h);
|
|
1837
|
-
--bulma-tag-s: var(--bulma-link-s);
|
|
1838
|
-
--bulma-tag-background-l: var(--bulma-link-l);
|
|
1839
|
-
--bulma-tag-color-l: var(--bulma-link-invert-l);
|
|
1840
|
-
}
|
|
1841
|
-
.tag.is-link.is-light {
|
|
1842
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1843
|
-
--bulma-tag-color-l: var(--bulma-link-light-invert-l);
|
|
1844
|
-
}
|
|
1845
|
-
.tag.is-info {
|
|
1846
|
-
--bulma-tag-h: var(--bulma-info-h);
|
|
1847
|
-
--bulma-tag-s: var(--bulma-info-s);
|
|
1848
|
-
--bulma-tag-background-l: var(--bulma-info-l);
|
|
1849
|
-
--bulma-tag-color-l: var(--bulma-info-invert-l);
|
|
1850
|
-
}
|
|
1851
|
-
.tag.is-info.is-light {
|
|
1852
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1853
|
-
--bulma-tag-color-l: var(--bulma-info-light-invert-l);
|
|
1854
|
-
}
|
|
1855
|
-
.tag.is-success {
|
|
1856
|
-
--bulma-tag-h: var(--bulma-success-h);
|
|
1857
|
-
--bulma-tag-s: var(--bulma-success-s);
|
|
1858
|
-
--bulma-tag-background-l: var(--bulma-success-l);
|
|
1859
|
-
--bulma-tag-color-l: var(--bulma-success-invert-l);
|
|
1860
|
-
}
|
|
1861
|
-
.tag.is-success.is-light {
|
|
1862
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1863
|
-
--bulma-tag-color-l: var(--bulma-success-light-invert-l);
|
|
1864
|
-
}
|
|
1865
|
-
.tag.is-warning {
|
|
1866
|
-
--bulma-tag-h: var(--bulma-warning-h);
|
|
1867
|
-
--bulma-tag-s: var(--bulma-warning-s);
|
|
1868
|
-
--bulma-tag-background-l: var(--bulma-warning-l);
|
|
1869
|
-
--bulma-tag-color-l: var(--bulma-warning-invert-l);
|
|
1870
|
-
}
|
|
1871
|
-
.tag.is-warning.is-light {
|
|
1872
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1873
|
-
--bulma-tag-color-l: var(--bulma-warning-light-invert-l);
|
|
1874
|
-
}
|
|
1875
|
-
.tag.is-danger {
|
|
1876
|
-
--bulma-tag-h: var(--bulma-danger-h);
|
|
1877
|
-
--bulma-tag-s: var(--bulma-danger-s);
|
|
1878
|
-
--bulma-tag-background-l: var(--bulma-danger-l);
|
|
1879
|
-
--bulma-tag-color-l: var(--bulma-danger-invert-l);
|
|
1880
|
-
}
|
|
1881
|
-
.tag.is-danger.is-light {
|
|
1882
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1883
|
-
--bulma-tag-color-l: var(--bulma-danger-light-invert-l);
|
|
1884
|
-
}
|
|
1885
|
-
.tag.is-normal {
|
|
1886
|
-
font-size: var(--bulma-size-small);
|
|
1887
|
-
}
|
|
1888
|
-
.tag.is-medium {
|
|
1889
|
-
font-size: var(--bulma-size-normal);
|
|
1890
|
-
}
|
|
1891
|
-
.tag.is-large {
|
|
1892
|
-
font-size: var(--bulma-size-medium);
|
|
1893
|
-
}
|
|
1894
|
-
.tag .icon:first-child:not(:last-child) {
|
|
1895
|
-
margin-inline-start: -0.375em;
|
|
1896
|
-
margin-inline-end: 0.1875em;
|
|
1897
|
-
}
|
|
1898
|
-
.tag .icon:last-child:not(:first-child) {
|
|
1899
|
-
margin-inline-start: 0.1875em;
|
|
1900
|
-
margin-inline-end: -0.375em;
|
|
1901
|
-
}
|
|
1902
|
-
.tag .icon:first-child:last-child {
|
|
1903
|
-
margin-inline-start: -0.375em;
|
|
1904
|
-
margin-inline-end: -0.375em;
|
|
1905
|
-
}
|
|
1906
|
-
.tag.is-delete {
|
|
1907
|
-
margin-inline-start: var(--bulma-tag-delete-margin);
|
|
1908
|
-
padding: 0;
|
|
1909
|
-
position: relative;
|
|
1910
|
-
width: 2em;
|
|
1911
|
-
}
|
|
1912
|
-
.tag.is-delete::before, .tag.is-delete::after {
|
|
1913
|
-
background-color: currentColor;
|
|
1914
|
-
content: "";
|
|
1915
|
-
display: block;
|
|
1916
|
-
left: 50%;
|
|
1917
|
-
position: absolute;
|
|
1918
|
-
top: 50%;
|
|
1919
|
-
transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
1920
|
-
transform-origin: center center;
|
|
1921
|
-
}
|
|
1922
|
-
.tag.is-delete::before {
|
|
1923
|
-
height: 1px;
|
|
1924
|
-
width: 50%;
|
|
1925
|
-
}
|
|
1926
|
-
.tag.is-delete::after {
|
|
1927
|
-
height: 50%;
|
|
1928
|
-
width: 1px;
|
|
1929
|
-
}
|
|
1930
|
-
.tag.is-rounded {
|
|
1931
|
-
border-radius: var(--bulma-radius-rounded);
|
|
1932
|
-
}
|
|
1933
|
-
|
|
1934
|
-
a.tag,
|
|
1935
|
-
button.tag,
|
|
1936
|
-
.tag.is-hoverable {
|
|
1937
|
-
cursor: pointer;
|
|
1938
|
-
}
|
|
1939
|
-
a.tag:hover,
|
|
1940
|
-
button.tag:hover,
|
|
1941
|
-
.tag.is-hoverable:hover {
|
|
1942
|
-
--bulma-tag-background-l-delta: var(--bulma-tag-hover-background-l-delta);
|
|
1943
|
-
}
|
|
1944
|
-
a.tag:active,
|
|
1945
|
-
button.tag:active,
|
|
1946
|
-
.tag.is-hoverable:active {
|
|
1947
|
-
--bulma-tag-background-l-delta: var(--bulma-tag-active-background-l-delta);
|
|
1948
|
-
}
|
|
1949
|
-
|
|
1950
1714
|
/* Bulma Utilities */
|
|
1951
1715
|
.icon,
|
|
1952
1716
|
.icon-text {
|
|
@@ -18640,7 +18404,7 @@ Building a better future, one line of code at a time.
|
|
|
18640
18404
|
*/
|
|
18641
18405
|
:root {
|
|
18642
18406
|
--lesli-color-primary: var(--lesli-theme-color-primary, #193d8d);
|
|
18643
|
-
--lesli-color-background: var(--lesli-theme-color-background, #
|
|
18407
|
+
--lesli-color-background: var(--lesli-theme-color-background, #f9f5f3);
|
|
18644
18408
|
--lesli-header-color: var(--lesli-theme-header-color, white);
|
|
18645
18409
|
--lesli-header-height: var(--lesli-theme-header-height, 65px);
|
|
18646
18410
|
--lesli-footer-color: var(--lesli-theme-footer-color, white);
|
|
@@ -1086,7 +1086,7 @@ table th {
|
|
|
1086
1086
|
width: 0.625em;
|
|
1087
1087
|
}
|
|
1088
1088
|
|
|
1089
|
-
.level:not(:last-child), .fixed-grid:not(:last-child), .grid:not(:last-child), .field:not(:last-child), .file:not(:last-child), .pagination:not(:last-child), .tabs:not(:last-child), .notification:not(:last-child), .buttons:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .
|
|
1089
|
+
.level:not(:last-child), .fixed-grid:not(:last-child), .grid:not(:last-child), .field:not(:last-child), .file:not(:last-child), .pagination:not(:last-child), .tabs:not(:last-child), .notification:not(:last-child), .buttons:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .box:not(:last-child) {
|
|
1090
1090
|
margin-bottom: var(--bulma-block-spacing);
|
|
1091
1091
|
}
|
|
1092
1092
|
|
|
@@ -1742,242 +1742,6 @@ a.box:active {
|
|
|
1742
1742
|
box-shadow: var(--bulma-box-link-active-shadow);
|
|
1743
1743
|
}
|
|
1744
1744
|
|
|
1745
|
-
/* Bulma Utilities */
|
|
1746
|
-
.tags {
|
|
1747
|
-
align-items: center;
|
|
1748
|
-
color: hsl(var(--bulma-tag-h), var(--bulma-tag-s), var(--bulma-tag-color-l));
|
|
1749
|
-
display: flex;
|
|
1750
|
-
flex-wrap: wrap;
|
|
1751
|
-
gap: 0.5rem;
|
|
1752
|
-
justify-content: flex-start;
|
|
1753
|
-
}
|
|
1754
|
-
.tags.are-medium .tag:not(.is-normal):not(.is-large) {
|
|
1755
|
-
font-size: var(--bulma-size-normal);
|
|
1756
|
-
}
|
|
1757
|
-
.tags.are-large .tag:not(.is-normal):not(.is-medium) {
|
|
1758
|
-
font-size: var(--bulma-size-medium);
|
|
1759
|
-
}
|
|
1760
|
-
.tags.is-centered {
|
|
1761
|
-
gap: 0.25rem;
|
|
1762
|
-
justify-content: center;
|
|
1763
|
-
}
|
|
1764
|
-
.tags.is-right {
|
|
1765
|
-
justify-content: flex-end;
|
|
1766
|
-
}
|
|
1767
|
-
.tags.has-addons {
|
|
1768
|
-
gap: 0;
|
|
1769
|
-
}
|
|
1770
|
-
.tags.has-addons .tag:not(:first-child) {
|
|
1771
|
-
border-start-start-radius: 0;
|
|
1772
|
-
border-end-start-radius: 0;
|
|
1773
|
-
}
|
|
1774
|
-
.tags.has-addons .tag:not(:last-child) {
|
|
1775
|
-
border-start-end-radius: 0;
|
|
1776
|
-
border-end-end-radius: 0;
|
|
1777
|
-
}
|
|
1778
|
-
|
|
1779
|
-
.tag {
|
|
1780
|
-
--bulma-tag-h: var(--bulma-scheme-h);
|
|
1781
|
-
--bulma-tag-s: var(--bulma-scheme-s);
|
|
1782
|
-
--bulma-tag-background-l: var(--bulma-background-l);
|
|
1783
|
-
--bulma-tag-background-l-delta: 0%;
|
|
1784
|
-
--bulma-tag-hover-background-l-delta: var(--bulma-hover-background-l-delta);
|
|
1785
|
-
--bulma-tag-active-background-l-delta: var(--bulma-active-background-l-delta);
|
|
1786
|
-
--bulma-tag-color-l: var(--bulma-text-l);
|
|
1787
|
-
--bulma-tag-radius: var(--bulma-radius);
|
|
1788
|
-
--bulma-tag-delete-margin: 1px;
|
|
1789
|
-
align-items: center;
|
|
1790
|
-
background-color: hsl(var(--bulma-tag-h), var(--bulma-tag-s), calc(var(--bulma-tag-background-l) + var(--bulma-tag-background-l-delta)));
|
|
1791
|
-
border-radius: var(--bulma-radius);
|
|
1792
|
-
color: hsl(var(--bulma-tag-h), var(--bulma-tag-s), var(--bulma-tag-color-l));
|
|
1793
|
-
display: inline-flex;
|
|
1794
|
-
font-size: var(--bulma-size-small);
|
|
1795
|
-
height: 2em;
|
|
1796
|
-
justify-content: center;
|
|
1797
|
-
line-height: 1.5;
|
|
1798
|
-
padding-left: 0.75em;
|
|
1799
|
-
padding-right: 0.75em;
|
|
1800
|
-
white-space: nowrap;
|
|
1801
|
-
}
|
|
1802
|
-
.tag .delete {
|
|
1803
|
-
margin-inline-start: 0.25rem;
|
|
1804
|
-
margin-inline-end: -0.375rem;
|
|
1805
|
-
}
|
|
1806
|
-
.tag.is-white {
|
|
1807
|
-
--bulma-tag-h: var(--bulma-white-h);
|
|
1808
|
-
--bulma-tag-s: var(--bulma-white-s);
|
|
1809
|
-
--bulma-tag-background-l: var(--bulma-white-l);
|
|
1810
|
-
--bulma-tag-color-l: var(--bulma-white-invert-l);
|
|
1811
|
-
}
|
|
1812
|
-
.tag.is-white.is-light {
|
|
1813
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1814
|
-
--bulma-tag-color-l: var(--bulma-white-light-invert-l);
|
|
1815
|
-
}
|
|
1816
|
-
.tag.is-black {
|
|
1817
|
-
--bulma-tag-h: var(--bulma-black-h);
|
|
1818
|
-
--bulma-tag-s: var(--bulma-black-s);
|
|
1819
|
-
--bulma-tag-background-l: var(--bulma-black-l);
|
|
1820
|
-
--bulma-tag-color-l: var(--bulma-black-invert-l);
|
|
1821
|
-
}
|
|
1822
|
-
.tag.is-black.is-light {
|
|
1823
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1824
|
-
--bulma-tag-color-l: var(--bulma-black-light-invert-l);
|
|
1825
|
-
}
|
|
1826
|
-
.tag.is-light {
|
|
1827
|
-
--bulma-tag-h: var(--bulma-light-h);
|
|
1828
|
-
--bulma-tag-s: var(--bulma-light-s);
|
|
1829
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1830
|
-
--bulma-tag-color-l: var(--bulma-light-invert-l);
|
|
1831
|
-
}
|
|
1832
|
-
.tag.is-light.is-light {
|
|
1833
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1834
|
-
--bulma-tag-color-l: var(--bulma-light-light-invert-l);
|
|
1835
|
-
}
|
|
1836
|
-
.tag.is-dark {
|
|
1837
|
-
--bulma-tag-h: var(--bulma-dark-h);
|
|
1838
|
-
--bulma-tag-s: var(--bulma-dark-s);
|
|
1839
|
-
--bulma-tag-background-l: var(--bulma-dark-l);
|
|
1840
|
-
--bulma-tag-color-l: var(--bulma-dark-invert-l);
|
|
1841
|
-
}
|
|
1842
|
-
.tag.is-dark.is-light {
|
|
1843
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1844
|
-
--bulma-tag-color-l: var(--bulma-dark-light-invert-l);
|
|
1845
|
-
}
|
|
1846
|
-
.tag.is-text {
|
|
1847
|
-
--bulma-tag-h: var(--bulma-text-h);
|
|
1848
|
-
--bulma-tag-s: var(--bulma-text-s);
|
|
1849
|
-
--bulma-tag-background-l: var(--bulma-text-l);
|
|
1850
|
-
--bulma-tag-color-l: var(--bulma-text-invert-l);
|
|
1851
|
-
}
|
|
1852
|
-
.tag.is-text.is-light {
|
|
1853
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1854
|
-
--bulma-tag-color-l: var(--bulma-text-light-invert-l);
|
|
1855
|
-
}
|
|
1856
|
-
.tag.is-primary {
|
|
1857
|
-
--bulma-tag-h: var(--bulma-primary-h);
|
|
1858
|
-
--bulma-tag-s: var(--bulma-primary-s);
|
|
1859
|
-
--bulma-tag-background-l: var(--bulma-primary-l);
|
|
1860
|
-
--bulma-tag-color-l: var(--bulma-primary-invert-l);
|
|
1861
|
-
}
|
|
1862
|
-
.tag.is-primary.is-light {
|
|
1863
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1864
|
-
--bulma-tag-color-l: var(--bulma-primary-light-invert-l);
|
|
1865
|
-
}
|
|
1866
|
-
.tag.is-link {
|
|
1867
|
-
--bulma-tag-h: var(--bulma-link-h);
|
|
1868
|
-
--bulma-tag-s: var(--bulma-link-s);
|
|
1869
|
-
--bulma-tag-background-l: var(--bulma-link-l);
|
|
1870
|
-
--bulma-tag-color-l: var(--bulma-link-invert-l);
|
|
1871
|
-
}
|
|
1872
|
-
.tag.is-link.is-light {
|
|
1873
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1874
|
-
--bulma-tag-color-l: var(--bulma-link-light-invert-l);
|
|
1875
|
-
}
|
|
1876
|
-
.tag.is-info {
|
|
1877
|
-
--bulma-tag-h: var(--bulma-info-h);
|
|
1878
|
-
--bulma-tag-s: var(--bulma-info-s);
|
|
1879
|
-
--bulma-tag-background-l: var(--bulma-info-l);
|
|
1880
|
-
--bulma-tag-color-l: var(--bulma-info-invert-l);
|
|
1881
|
-
}
|
|
1882
|
-
.tag.is-info.is-light {
|
|
1883
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1884
|
-
--bulma-tag-color-l: var(--bulma-info-light-invert-l);
|
|
1885
|
-
}
|
|
1886
|
-
.tag.is-success {
|
|
1887
|
-
--bulma-tag-h: var(--bulma-success-h);
|
|
1888
|
-
--bulma-tag-s: var(--bulma-success-s);
|
|
1889
|
-
--bulma-tag-background-l: var(--bulma-success-l);
|
|
1890
|
-
--bulma-tag-color-l: var(--bulma-success-invert-l);
|
|
1891
|
-
}
|
|
1892
|
-
.tag.is-success.is-light {
|
|
1893
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1894
|
-
--bulma-tag-color-l: var(--bulma-success-light-invert-l);
|
|
1895
|
-
}
|
|
1896
|
-
.tag.is-warning {
|
|
1897
|
-
--bulma-tag-h: var(--bulma-warning-h);
|
|
1898
|
-
--bulma-tag-s: var(--bulma-warning-s);
|
|
1899
|
-
--bulma-tag-background-l: var(--bulma-warning-l);
|
|
1900
|
-
--bulma-tag-color-l: var(--bulma-warning-invert-l);
|
|
1901
|
-
}
|
|
1902
|
-
.tag.is-warning.is-light {
|
|
1903
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1904
|
-
--bulma-tag-color-l: var(--bulma-warning-light-invert-l);
|
|
1905
|
-
}
|
|
1906
|
-
.tag.is-danger {
|
|
1907
|
-
--bulma-tag-h: var(--bulma-danger-h);
|
|
1908
|
-
--bulma-tag-s: var(--bulma-danger-s);
|
|
1909
|
-
--bulma-tag-background-l: var(--bulma-danger-l);
|
|
1910
|
-
--bulma-tag-color-l: var(--bulma-danger-invert-l);
|
|
1911
|
-
}
|
|
1912
|
-
.tag.is-danger.is-light {
|
|
1913
|
-
--bulma-tag-background-l: var(--bulma-light-l);
|
|
1914
|
-
--bulma-tag-color-l: var(--bulma-danger-light-invert-l);
|
|
1915
|
-
}
|
|
1916
|
-
.tag.is-normal {
|
|
1917
|
-
font-size: var(--bulma-size-small);
|
|
1918
|
-
}
|
|
1919
|
-
.tag.is-medium {
|
|
1920
|
-
font-size: var(--bulma-size-normal);
|
|
1921
|
-
}
|
|
1922
|
-
.tag.is-large {
|
|
1923
|
-
font-size: var(--bulma-size-medium);
|
|
1924
|
-
}
|
|
1925
|
-
.tag .icon:first-child:not(:last-child) {
|
|
1926
|
-
margin-inline-start: -0.375em;
|
|
1927
|
-
margin-inline-end: 0.1875em;
|
|
1928
|
-
}
|
|
1929
|
-
.tag .icon:last-child:not(:first-child) {
|
|
1930
|
-
margin-inline-start: 0.1875em;
|
|
1931
|
-
margin-inline-end: -0.375em;
|
|
1932
|
-
}
|
|
1933
|
-
.tag .icon:first-child:last-child {
|
|
1934
|
-
margin-inline-start: -0.375em;
|
|
1935
|
-
margin-inline-end: -0.375em;
|
|
1936
|
-
}
|
|
1937
|
-
.tag.is-delete {
|
|
1938
|
-
margin-inline-start: var(--bulma-tag-delete-margin);
|
|
1939
|
-
padding: 0;
|
|
1940
|
-
position: relative;
|
|
1941
|
-
width: 2em;
|
|
1942
|
-
}
|
|
1943
|
-
.tag.is-delete::before, .tag.is-delete::after {
|
|
1944
|
-
background-color: currentColor;
|
|
1945
|
-
content: "";
|
|
1946
|
-
display: block;
|
|
1947
|
-
left: 50%;
|
|
1948
|
-
position: absolute;
|
|
1949
|
-
top: 50%;
|
|
1950
|
-
transform: translateX(-50%) translateY(-50%) rotate(45deg);
|
|
1951
|
-
transform-origin: center center;
|
|
1952
|
-
}
|
|
1953
|
-
.tag.is-delete::before {
|
|
1954
|
-
height: 1px;
|
|
1955
|
-
width: 50%;
|
|
1956
|
-
}
|
|
1957
|
-
.tag.is-delete::after {
|
|
1958
|
-
height: 50%;
|
|
1959
|
-
width: 1px;
|
|
1960
|
-
}
|
|
1961
|
-
.tag.is-rounded {
|
|
1962
|
-
border-radius: var(--bulma-radius-rounded);
|
|
1963
|
-
}
|
|
1964
|
-
|
|
1965
|
-
a.tag,
|
|
1966
|
-
button.tag,
|
|
1967
|
-
.tag.is-hoverable {
|
|
1968
|
-
cursor: pointer;
|
|
1969
|
-
}
|
|
1970
|
-
a.tag:hover,
|
|
1971
|
-
button.tag:hover,
|
|
1972
|
-
.tag.is-hoverable:hover {
|
|
1973
|
-
--bulma-tag-background-l-delta: var(--bulma-tag-hover-background-l-delta);
|
|
1974
|
-
}
|
|
1975
|
-
a.tag:active,
|
|
1976
|
-
button.tag:active,
|
|
1977
|
-
.tag.is-hoverable:active {
|
|
1978
|
-
--bulma-tag-background-l-delta: var(--bulma-tag-active-background-l-delta);
|
|
1979
|
-
}
|
|
1980
|
-
|
|
1981
1745
|
/* Bulma Utilities */
|
|
1982
1746
|
.icon,
|
|
1983
1747
|
.icon-text {
|
|
@@ -18671,7 +18435,7 @@ Building a better future, one line of code at a time.
|
|
|
18671
18435
|
*/
|
|
18672
18436
|
:root {
|
|
18673
18437
|
--lesli-color-primary: var(--lesli-theme-color-primary, #193d8d);
|
|
18674
|
-
--lesli-color-background: var(--lesli-theme-color-background, #
|
|
18438
|
+
--lesli-color-background: var(--lesli-theme-color-background, #f9f5f3);
|
|
18675
18439
|
--lesli-header-color: var(--lesli-theme-header-color, white);
|
|
18676
18440
|
--lesli-header-height: var(--lesli-theme-header-height, 65px);
|
|
18677
18441
|
--lesli-footer-color: var(--lesli-theme-footer-color, white);
|