satis 2.1.31 → 2.1.33
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/components/satis/dropdown/component.css +1 -0
- data/app/components/satis/page/component.css +15 -54
- data/app/components/satis/page/component.html.slim +2 -5
- data/app/components/satis/sidebar/component.css +55 -36
- data/app/components/satis/sidebar/component.html.slim +6 -7
- data/app/components/satis/sidebar_menu_item/component.css +49 -26
- data/lib/satis/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8bed69646db25ebb07b77d770965f6526f069ebf188154224b2810281223bf48
|
4
|
+
data.tar.gz: eb130f1feadb5eb93ce7c37f191fc47e45772b7ad09de958d97161d4c7a1daff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c518b40362fb31cc85f536064b6f496366e656af01b22a1f44fa9129ecb272ca865fb88ea82cf4ca4c66c714476140927d8758ea5e34ae8b511a25f17722786a
|
7
|
+
data.tar.gz: c2cb674c406557ee174dd69f2268db7449c20d6422b649d3aa93a321ea2fc7c99029559df0b3b04fcb50892e6caba055e018a0f9a9d4934ef623c5849f884aee
|
@@ -43,6 +43,7 @@
|
|
43
43
|
@apply dark:border-gray-700 border-b divide-gray-200 divide-opacity-25 hover:bg-gray-200 hover:shadow dark:hover:text-white dark:bg-opacity-75 dark:hover:bg-gray-800 dark:bg-gray-900 dark:divide-gray-100 dark:divide-opacity-5;
|
44
44
|
}
|
45
45
|
|
46
|
+
|
46
47
|
.changelog-menu{
|
47
48
|
@apply dark:bg-gray-900 dark:border-gray-100 dark:shadow-gray-800 divide-y divide-gray-100 dark:divide-gray-800 right-0 z-10 mx-1 w-1/3 rounded-md bg-white text-gray-500 dark:text-gray-100 shadow-lg ring-1 ring-black ring-opacity-5 overflow-y-auto max-h-screen;
|
48
49
|
}
|
@@ -3,34 +3,16 @@
|
|
3
3
|
max-height: 100%;
|
4
4
|
}
|
5
5
|
|
6
|
-
.page_bg {
|
6
|
+
.h-screen.flex .page_bg {
|
7
|
+
@apply bg-gray-50 dark:bg-gray-700;
|
7
8
|
flex-direction: column;
|
8
9
|
width: 0;
|
9
10
|
flex-grow: 1;
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
}
|
14
|
-
|
15
|
-
.sidebar .arrow {
|
16
|
-
margin-top: 20px;
|
17
|
-
font-size: 20px;
|
18
|
-
opacity: 0.5;
|
19
|
-
margin-left: 160px;
|
20
|
-
transform: scaleX(-1);
|
21
|
-
transition: backdrop-filter 0.3s ease-in-out, transform 0.3s ease-in-out;
|
22
|
-
}
|
11
|
+
opacity: 0.99;
|
12
|
+
overflow: auto;
|
13
|
+
z-index: 2;
|
23
14
|
|
24
|
-
.sidebar.close .arrow{
|
25
|
-
margin-right: -20px;
|
26
|
-
transform: scaleX(1);
|
27
|
-
}
|
28
15
|
|
29
|
-
.h-screen.flex .page_bg .topbar .account-icon {
|
30
|
-
display: block;
|
31
|
-
margin-top: -14px;
|
32
|
-
margin-left: -30px;
|
33
|
-
opacity: 100%;
|
34
16
|
}
|
35
17
|
|
36
18
|
.h-screen.flex .page_bg .topbar .account-name {
|
@@ -40,47 +22,26 @@
|
|
40
22
|
opacity: 75%;
|
41
23
|
}
|
42
24
|
|
43
|
-
.
|
44
|
-
display:block;
|
45
|
-
|
46
|
-
|
47
|
-
.arrow:hover {
|
48
|
-
color: #555555;
|
49
|
-
cursor: pointer;
|
25
|
+
.h-screen.flex .page_bg .topbar .account-icon {
|
26
|
+
display: block;
|
27
|
+
visibility: visible;
|
50
28
|
}
|
51
29
|
|
52
|
-
.dark .arrow:hover {
|
53
|
-
color: #c0c0c0;
|
54
|
-
}
|
55
|
-
|
56
|
-
.dark .arrow {
|
57
|
-
color: #ffffff;
|
58
|
-
opacity: 1;
|
59
|
-
margin-top: 20px;
|
60
|
-
}
|
61
|
-
|
62
|
-
.dark .page_bg {
|
63
|
-
background: rgb(17, 24, 39);
|
64
|
-
}
|
65
30
|
|
66
|
-
.page_bg .page_body {
|
31
|
+
.h-screen.flex .page_bg .page_body {
|
32
|
+
@apply bg-gray-50 dark:bg-gray-700;
|
33
|
+
|
67
34
|
margin-left: 260px;
|
68
|
-
|
69
|
-
max-width: 87%;
|
35
|
+
max-width: 100%;
|
70
36
|
transition-delay: 0.1s;
|
71
|
-
|
37
|
+
overflow-y: scroll;
|
72
38
|
height: calc(100vh - 4rem);
|
73
39
|
transition: backdrop-filter 0.3s ease-in-out, transform 0.3s ease-in-out;
|
74
40
|
}
|
75
|
-
.page_bg .page_body.close {
|
41
|
+
.h-screen.flex .page_bg .page_body.close {
|
76
42
|
margin-left: 60px;
|
77
|
-
|
43
|
+
|
78
44
|
|
79
45
|
}
|
80
|
-
|
81
|
-
.dark .page_body {
|
82
|
-
background: rgb(17, 24, 39);
|
83
|
-
}
|
84
|
-
|
85
46
|
|
86
47
|
|
@@ -13,13 +13,10 @@ html lang="en"
|
|
13
13
|
/ NAVBAR
|
14
14
|
.flex-1.px-4.flex.justify-between
|
15
15
|
= navbar
|
16
|
-
|
17
|
-
/ SIDEBAR
|
18
|
-
== sidebar
|
19
|
-
|
20
|
-
/ BODY
|
21
16
|
.page_body
|
22
17
|
main.flex-1.relative.focus:outline-none
|
23
18
|
.mt-4
|
24
19
|
.max-w.mx-auto.px-4.sm:px-4.md:px-4
|
25
20
|
= body
|
21
|
+
.sidebar
|
22
|
+
== sidebar
|
@@ -1,36 +1,41 @@
|
|
1
|
-
.h-screen.flex .
|
1
|
+
.h-screen.flex .sidebar {
|
2
|
+
@apply dark:bg-gray-700 bg-white;
|
2
3
|
width: 260px;
|
3
|
-
height:
|
4
|
+
height: 90%;
|
5
|
+
top: 0;
|
6
|
+
left: 0;
|
7
|
+
margin-top: 5rem;
|
4
8
|
position: absolute;
|
5
|
-
z-index: 1000;
|
6
|
-
margin-top: 16px;
|
7
|
-
background: #ffffff;
|
8
9
|
overflow: visible;
|
9
10
|
overflow-y: scroll;
|
10
11
|
scrollbar-width: none;
|
11
12
|
border-top-right-radius: 8px;
|
12
13
|
border-top-left-radius: 8px;
|
13
14
|
border-bottom-right-radius: 8px;
|
15
|
+
z-index: 999;
|
14
16
|
box-shadow: 5px 0 5px -5px rgba(31, 38, 135, 0.37);
|
15
17
|
transition: backdrop-filter 0.3s ease-in-out, transform 0.3s ease-in-out;
|
18
|
+
|
16
19
|
}
|
17
20
|
|
18
|
-
.h-screen.flex .
|
19
|
-
z-index:
|
21
|
+
.h-screen.flex .sidebar.close .icon-link .sts-sidebar-menu-item{
|
22
|
+
z-index: 1100;
|
20
23
|
position: relative;
|
24
|
+
opacity: 0.99;
|
21
25
|
margin-left: 10px;
|
22
26
|
transition: backdrop-filter 0.3s ease-in-out, transform 0.3s ease-in-out;
|
23
27
|
}
|
24
28
|
|
25
29
|
|
26
|
-
.h-screen.flex .
|
30
|
+
.h-screen.flex .sidebar.close {
|
27
31
|
position: absolute;
|
32
|
+
overflow: visible;
|
28
33
|
top: 0;
|
29
34
|
left: 0;
|
30
|
-
height:
|
35
|
+
height: 90%;
|
31
36
|
margin-top: 5rem;
|
32
37
|
width: 60px;
|
33
|
-
z-index:
|
38
|
+
z-index: 999;
|
34
39
|
scrollbar-width: none;
|
35
40
|
}
|
36
41
|
|
@@ -39,41 +44,26 @@
|
|
39
44
|
}
|
40
45
|
|
41
46
|
|
42
|
-
.h-screen.flex .
|
47
|
+
.h-screen.flex .topbar {
|
48
|
+
@apply bg-white dark:bg-gray-800 drop-shadow-md;
|
43
49
|
height: 4rem;
|
44
|
-
flex-shrink: 0;
|
45
50
|
display: flex;
|
46
51
|
max-width: 100%;
|
52
|
+
left:0;
|
47
53
|
margin-left: 0;
|
48
|
-
|
49
|
-
z-index:
|
54
|
+
position: relative;
|
55
|
+
z-index: 10000;
|
50
56
|
border-bottom-left-radius: 8px;
|
51
57
|
border-bottom-right-radius: 8px;
|
52
|
-
box-shadow: 0 5px 5px -5px rgba(31, 38, 135, 0.37);
|
53
58
|
transition: backdrop-filter 0.3s ease-in-out, transform 0.3s ease-in-out;
|
54
59
|
}
|
55
60
|
|
56
|
-
.h-screen.flex .page_bg .topbar.close {
|
57
|
-
max-width: 100%;
|
58
|
-
margin-left: 0;
|
59
|
-
}
|
60
|
-
|
61
61
|
.page_body.close {
|
62
62
|
margin-left: 50px;
|
63
63
|
max-width: 97%;
|
64
64
|
}
|
65
65
|
|
66
|
-
|
67
|
-
.account-icon {
|
68
|
-
border-radius: 25px;
|
69
|
-
padding: 20px;
|
70
|
-
}
|
71
|
-
|
72
|
-
.sidebar.close .account-icon {
|
73
|
-
opacity: 0;
|
74
|
-
}
|
75
|
-
|
76
|
-
.h-screen.flex .page_bg .sidebar .boxture-logo{
|
66
|
+
.h-screen.flex .sidebar .boxture-logo{
|
77
67
|
margin-top: 30px;
|
78
68
|
}
|
79
69
|
|
@@ -81,7 +71,7 @@
|
|
81
71
|
opacity: 0;
|
82
72
|
}
|
83
73
|
|
84
|
-
.h-screen.flex .
|
74
|
+
.h-screen.flex .sidebar.close .icon-link {
|
85
75
|
margin-top: 0;
|
86
76
|
transition: 0.3s ease;
|
87
77
|
transition-delay: 0.1s;
|
@@ -112,6 +102,38 @@
|
|
112
102
|
display: none;
|
113
103
|
}
|
114
104
|
|
105
|
+
.sidebar .arrow:hover {
|
106
|
+
color: #555555;
|
107
|
+
cursor: pointer;
|
108
|
+
}
|
109
|
+
|
110
|
+
.dark .sidebar .arrow:hover {
|
111
|
+
color: #c0c0c0;
|
112
|
+
}
|
113
|
+
|
114
|
+
.dark .sidebar .arrow {
|
115
|
+
color: #ffffff;
|
116
|
+
opacity: 1;
|
117
|
+
margin-top: 20px;
|
118
|
+
}
|
119
|
+
|
120
|
+
.h-screen.flex .sidebar .arrow {
|
121
|
+
margin-top: 20px;
|
122
|
+
font-size: 20px;
|
123
|
+
opacity: 0.5;
|
124
|
+
left: 0;
|
125
|
+
margin-left: 10px;
|
126
|
+
margin-right: 10px;
|
127
|
+
transform: scaleX(-1);
|
128
|
+
transition: backdrop-filter 0.3s ease-in-out, transform 0.3s ease-in-out;
|
129
|
+
}
|
130
|
+
|
131
|
+
.h-screen.flex .sidebar.close .arrow{
|
132
|
+
margin-left: 15px;
|
133
|
+
left: 0;
|
134
|
+
transform: scaleX(1);
|
135
|
+
}
|
136
|
+
|
115
137
|
.sidebar .logo_name {
|
116
138
|
font-size: 10px;
|
117
139
|
opacity: 0.5;
|
@@ -123,7 +145,7 @@
|
|
123
145
|
display: none;
|
124
146
|
}
|
125
147
|
|
126
|
-
.dark .h-screen.flex .
|
148
|
+
.dark .h-screen.flex .sidebar {
|
127
149
|
@apply bg-gray-800;
|
128
150
|
}
|
129
151
|
|
@@ -131,6 +153,3 @@
|
|
131
153
|
color: #edecec;
|
132
154
|
}
|
133
155
|
|
134
|
-
.dark .h-screen.flex .topbar {
|
135
|
-
@apply bg-gray-800;
|
136
|
-
}
|
@@ -1,10 +1,9 @@
|
|
1
|
-
.
|
2
|
-
.
|
3
|
-
|
4
|
-
|
5
|
-
.arrow
|
6
|
-
|
7
|
-
= footer
|
1
|
+
.icon-link
|
2
|
+
- @menu.items.each do |item|
|
3
|
+
= render Satis::SidebarMenuItem::Component.new(item: item, menu_options: menu_options)
|
4
|
+
.arrow
|
5
|
+
.fa-solid.fa-arrow-right-to-bracket
|
6
|
+
= footer
|
8
7
|
|
9
8
|
|
10
9
|
|
@@ -19,6 +19,7 @@
|
|
19
19
|
&__link {
|
20
20
|
@apply text-gray-800 dark:text-gray-300 hover:bg-gray-50 dark:text-gray-100 dark:hover:bg-gray-700 hover:text-gray-900 w-full flex items-center pl-2 pr-1 py-2 text-left text-sm font-medium rounded-md focus:outline-none focus:ring-2 focus:ring-primary-500
|
21
21
|
}
|
22
|
+
|
22
23
|
&__icon {
|
23
24
|
@apply mr-3 flex-shrink-0 h-6 w-6 text-gray-400 dark:text-gray-200 group-hover:text-gray-500;
|
24
25
|
}
|
@@ -34,22 +35,31 @@
|
|
34
35
|
}
|
35
36
|
|
36
37
|
|
37
|
-
.
|
38
|
+
.sidebar.close .sts-sidebar-menu-item__label {
|
38
39
|
display: none;
|
39
40
|
}
|
40
41
|
|
41
|
-
.
|
42
|
+
.sidebar.close .sts-sidebar-menu-item > [data-satis-sidebar-menu-item-target="submenu"] .sts-sidebar-menu-item{
|
42
43
|
display: none;
|
44
|
+
visibility: hidden;
|
45
|
+
opacity: 0;
|
43
46
|
}
|
44
47
|
|
45
|
-
.
|
48
|
+
.sidebar.close .sts-sidebar-menu-item:hover > [data-satis-sidebar-menu-item-target="submenu"] .sts-sidebar-menu-item > [data-satis-sidebar-menu-item-target="submenu"]{
|
49
|
+
opacity: 0;
|
50
|
+
display: none;
|
51
|
+
visibility: hidden;
|
52
|
+
}
|
53
|
+
|
54
|
+
|
55
|
+
.sidebar.close .sts-sidebar-menu-item .sts-sidebar-menu-item__link .sts-sidebar-menu-item__menu-icon{
|
46
56
|
display: none;
|
47
57
|
visibility: hidden;
|
48
58
|
opacity: 0;
|
49
59
|
}
|
50
60
|
|
51
|
-
.h-screen.flex .
|
52
|
-
@apply rounded-md bg-white dark:bg-gray-900 shadow-md;
|
61
|
+
.h-screen.flex .sidebar.close .icon-link > .sts-sidebar-menu-item:hover:not(:has([data-satis-sidebar-menu-item-target="submenu"])) .sts-sidebar-menu-item__label {
|
62
|
+
@apply rounded-md bg-white dark:bg-gray-900 shadow-md py-2;
|
53
63
|
display: block;
|
54
64
|
position: fixed;
|
55
65
|
padding-right: 20px;
|
@@ -57,53 +67,66 @@
|
|
57
67
|
margin-left: 25px;
|
58
68
|
}
|
59
69
|
|
60
|
-
.h-screen.flex .
|
70
|
+
.h-screen.flex .sidebar.close .icon-link .sts-sidebar-menu-item:hover > [data-satis-sidebar-menu-item-target="submenu"] {
|
61
71
|
@apply rounded-md bg-white dark:bg-gray-900 py-0 px-0 shadow-lg;
|
62
72
|
display: block;
|
63
73
|
visibility: visible;
|
64
74
|
opacity: 1;
|
65
75
|
position: fixed;
|
66
|
-
overflow-y: scroll;
|
67
76
|
padding-right: 20px;
|
68
77
|
margin-left: 35px;
|
69
|
-
margin-top: -
|
70
|
-
|
78
|
+
margin-top: -90px;
|
79
|
+
|
80
|
+
|
71
81
|
}
|
72
82
|
|
73
|
-
.
|
83
|
+
.h-screen.flex .sidebar.close .icon-link .sts-sidebar-menu-item:hover > [data-satis-sidebar-menu-item-target="submenu"] .sts-sidebar-menu-item:only-child {
|
84
|
+
@apply rounded-md bg-white dark:bg-gray-900 py-0 px-0 shadow-lg;
|
85
|
+
display: block;
|
86
|
+
visibility: visible;
|
87
|
+
opacity: 1;
|
88
|
+
position: fixed;
|
89
|
+
padding-right: 20px;
|
90
|
+
margin-top: 45px;
|
91
|
+
|
92
|
+
|
93
|
+
}
|
94
|
+
|
95
|
+
.h-screen.flex .sidebar.close .icon-link .sts-sidebar-menu-item:hover > [data-satis-sidebar-menu-item-target="submenu"] .sts-sidebar-menu-item {
|
96
|
+
@apply py-0 px-0 ;
|
97
|
+
display: block;
|
98
|
+
visibility: visible;
|
99
|
+
opacity: 100;
|
100
|
+
}
|
101
|
+
|
102
|
+
.sidebar.close .sts-sidebar-menu-item:hover > [data-satis-sidebar-menu-item-target="submenu"] .sts-sidebar-menu-item .sts-sidebar-menu-item__label {
|
74
103
|
background: none;
|
75
104
|
display:block;
|
76
105
|
overflow: visible;
|
77
|
-
z-index: 1000;
|
78
106
|
padding: 0;
|
79
107
|
}
|
80
108
|
|
81
|
-
.
|
82
|
-
|
109
|
+
.sidebar.close .sts-sidebar-menu-item:hover > [data-satis-sidebar-menu-item-target="submenu"] .sts-sidebar-menu-item .sts-sidebar-menu-item__label {
|
110
|
+
|
111
|
+
|
83
112
|
}
|
84
113
|
|
85
|
-
.h-screen.flex .
|
114
|
+
.h-screen.flex .sidebar.close .icon-link .sts-sidebar-menu-item:last-child:hover > [data-satis-sidebar-menu-item-target="submenu"] {
|
86
115
|
margin-top: -425px;
|
87
116
|
}
|
88
117
|
|
89
|
-
.h-screen.flex .
|
90
|
-
|
118
|
+
.h-screen.flex .sidebar.close .sts-sidebar-menu-item:hover > [data-satis-sidebar-menu-item-target="submenu"] .sts-sidebar-menu-item:hover > [data-satis-sidebar-menu-item-target="submenu"] {
|
119
|
+
position: fixed;
|
91
120
|
margin-left: 123px;
|
92
|
-
overflow-y: scroll;
|
93
121
|
margin-top: -80px;
|
94
122
|
}
|
95
123
|
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
opacity: 1;
|
100
|
-
position: relative;
|
101
|
-
overflow: visible;
|
102
|
-
overflow-y: scroll;
|
124
|
+
|
125
|
+
.h-screen.flex .sidebar.close .sts-sidebar-menu-item:hover > [data-satis-sidebar-menu-item-target="submenu"] .sts-sidebar-menu-item:hover > [data-satis-sidebar-menu-item-target="submenu"] .sts-sidebar-menu-item:hover > [data-satis-sidebar-menu-item-target="submenu"] {
|
126
|
+
position: fixed;
|
103
127
|
padding-right: 20px;
|
104
|
-
margin-left:
|
128
|
+
margin-left: 80px;
|
105
129
|
margin-top: -80px;
|
106
|
-
z-index: 1020;
|
107
130
|
}
|
108
131
|
|
109
132
|
.sidebar.close .sts-sidebar-menu-item:hover > [data-satis-sidebar-menu-item-target="submenu"]::-webkit-scrollbar {
|
data/lib/satis/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: satis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1.
|
4
|
+
version: 2.1.33
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom de Grunt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: browser
|