@visns-studio/visns-components 4.10.48 → 5.0.1-8.1
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.
- package/package.json +29 -29
- package/src/components/cms/Field.jsx +39 -63
- package/src/components/crm/AsyncSelect.jsx +121 -15
- package/src/components/crm/Breadcrumb.jsx +2 -18
- package/src/components/crm/DataGrid.jsx +51 -424
- package/src/components/crm/Field.jsx +185 -358
- package/src/components/crm/Form.jsx +104 -92
- package/src/components/crm/MultiSelect.jsx +66 -45
- package/src/components/crm/Navigation.jsx +9 -92
- package/src/components/crm/QuickAction.jsx +1 -0
- package/src/components/crm/auth/Login.jsx +9 -1
- package/src/components/crm/auth/Profile.jsx +4 -2
- package/src/components/crm/auth/styles/Login.module.scss +52 -82
- package/src/components/crm/auth/styles/Profile.module.scss +150 -44
- package/src/components/crm/auth/styles/Reset.module.scss +55 -37
- package/src/components/crm/auth/styles/Verify.module.scss +55 -76
- package/src/components/crm/generic/GenericAuth.jsx +12 -5
- package/src/components/crm/generic/GenericDashboard.jsx +30 -340
- package/src/components/crm/generic/GenericDetail.jsx +534 -86
- package/src/components/crm/generic/GenericDynamic.jsx +76 -94
- package/src/components/crm/generic/GenericEditableTable.jsx +407 -0
- package/src/components/crm/generic/GenericFormBuilder.jsx +19 -79
- package/src/components/crm/generic/GenericIndex.jsx +1 -2
- package/src/components/crm/generic/styles/AuditLog.module.scss +4 -37
- package/src/components/crm/generic/styles/AuditLogs.module.scss +0 -51
- package/src/components/crm/generic/styles/GenericDetail.module.scss +263 -244
- package/src/components/crm/generic/styles/GenericDynamic.module.scss +100 -198
- package/src/components/crm/generic/styles/GenericEditableTable.module.scss +178 -0
- package/src/components/crm/generic/styles/GenericFormBuilder.module.scss +63 -101
- package/src/components/crm/generic/styles/GenericIndex.module.scss +46 -66
- package/src/components/crm/generic/styles/GenericMain.module.scss +7 -7
- package/src/components/crm/generic/styles/GenericSort.module.scss +0 -36
- package/src/components/crm/generic/styles/NotificationList.module.scss +1 -32
- package/src/components/crm/styles/Autocomplete.module.scss +12 -20
- package/src/components/crm/styles/DataGrid.module.scss +28 -86
- package/src/components/crm/styles/Field.module.scss +72 -252
- package/src/components/crm/styles/Form.module.scss +141 -450
- package/src/components/crm/styles/Navigation.module.scss +356 -507
- package/src/components/crm/styles/Notification.module.scss +1 -0
- package/src/components/crm/styles/QrCode.module.scss +4 -18
- package/src/components/crm/styles/SwitchAccount.module.scss +0 -1
- package/src/components/crm/styles/TableFilter.module.scss +2 -1
- package/src/components/styles/global.css +164 -34
- package/src/index.js +0 -8
- package/src/components/crm/generic/styles/GenericDashboard.module.scss +0 -325
- package/src/components/crm/sketch/SketchField.jsx +0 -395
- package/src/components/crm/sketch/arrow.jsx +0 -108
- package/src/components/crm/sketch/circle.jsx +0 -75
- package/src/components/crm/sketch/default-tool.jsx +0 -16
- package/src/components/crm/sketch/fabrictool.jsx +0 -22
- package/src/components/crm/sketch/history.jsx +0 -144
- package/src/components/crm/sketch/json/config.json +0 -14
- package/src/components/crm/sketch/line.jsx +0 -64
- package/src/components/crm/sketch/pan.jsx +0 -48
- package/src/components/crm/sketch/pencil.jsx +0 -36
- package/src/components/crm/sketch/rectangle-label-object.jsx +0 -69
- package/src/components/crm/sketch/rectangle-label.jsx +0 -93
- package/src/components/crm/sketch/rectangle.jsx +0 -76
- package/src/components/crm/sketch/select.jsx +0 -16
- package/src/components/crm/sketch/tools.jsx +0 -11
- package/src/components/crm/sketch/utils.jsx +0 -67
|
@@ -1,21 +1,22 @@
|
|
|
1
1
|
.formItem {
|
|
2
2
|
width: 50%;
|
|
3
|
-
padding: 0.5em;
|
|
4
3
|
position: relative;
|
|
5
4
|
box-sizing: border-box;
|
|
6
5
|
|
|
7
6
|
.fi__label {
|
|
8
7
|
position: relative;
|
|
8
|
+
display: flex;
|
|
9
|
+
align-items: center;
|
|
9
10
|
}
|
|
10
11
|
|
|
11
12
|
.fi__span {
|
|
12
13
|
position: absolute;
|
|
13
14
|
transition: all 200ms;
|
|
14
|
-
opacity:
|
|
15
|
+
opacity: 1;
|
|
15
16
|
left: 0;
|
|
16
|
-
padding: 19px 20px;
|
|
17
17
|
transform-origin: top left;
|
|
18
18
|
cursor: text;
|
|
19
|
+
padding: 0 1rem;
|
|
19
20
|
}
|
|
20
21
|
|
|
21
22
|
.fi__div {
|
|
@@ -23,14 +24,14 @@
|
|
|
23
24
|
opacity: 0.8;
|
|
24
25
|
left: 0;
|
|
25
26
|
padding: 19px 13px;
|
|
26
|
-
border-radius: var(--
|
|
27
|
-
border: 1px solid rgba(var(--paragraph-
|
|
27
|
+
border-radius: var(--radius);
|
|
28
|
+
border: 1px solid rgba(var(--paragraph-rgb), 0.15);
|
|
28
29
|
box-shadow: none;
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
.fi__toggle {
|
|
32
33
|
width: max-content;
|
|
33
|
-
padding:
|
|
34
|
+
padding: 0 10px 0 0;
|
|
34
35
|
box-sizing: border-box;
|
|
35
36
|
display: inline;
|
|
36
37
|
}
|
|
@@ -43,45 +44,43 @@
|
|
|
43
44
|
}
|
|
44
45
|
}
|
|
45
46
|
|
|
46
|
-
.fwItem
|
|
47
|
-
|
|
47
|
+
.fwItem,
|
|
48
|
+
.fwBuilderItem {
|
|
49
|
+
grid-column: 1 / -1;
|
|
50
|
+
width: 100%;
|
|
48
51
|
}
|
|
49
52
|
|
|
50
|
-
.lastItem {
|
|
51
|
-
|
|
52
|
-
width: 100%;
|
|
53
|
-
}
|
|
53
|
+
.lastItem .btn {
|
|
54
|
+
width: 100%;
|
|
54
55
|
}
|
|
55
56
|
|
|
56
57
|
.loginlogo {
|
|
57
58
|
display: block;
|
|
58
59
|
width: 100%;
|
|
59
|
-
max-width:
|
|
60
|
+
max-width: 200px;
|
|
60
61
|
height: auto;
|
|
61
62
|
margin: 0 auto;
|
|
62
63
|
padding-bottom: 1rem;
|
|
63
64
|
}
|
|
64
65
|
|
|
65
66
|
.logincontainer {
|
|
67
|
+
width: 100%;
|
|
66
68
|
min-height: 100vh;
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
justify-content: center;
|
|
71
|
-
align-content: center;
|
|
72
|
-
flex-wrap: wrap;
|
|
69
|
+
display: grid;
|
|
70
|
+
place-items: center;
|
|
71
|
+
padding: 1rem;
|
|
73
72
|
}
|
|
74
73
|
|
|
75
74
|
.login {
|
|
76
75
|
width: 35rem;
|
|
77
|
-
height: auto;
|
|
78
76
|
padding: 1rem;
|
|
79
77
|
margin: 0;
|
|
80
|
-
display:
|
|
81
|
-
|
|
78
|
+
display: grid;
|
|
79
|
+
grid-template-columns: 1fr;
|
|
80
|
+
gap: 0.5rem;
|
|
82
81
|
|
|
83
82
|
> .formItem {
|
|
84
|
-
padding: 0
|
|
83
|
+
padding: 0;
|
|
85
84
|
|
|
86
85
|
small {
|
|
87
86
|
position: absolute;
|
|
@@ -94,12 +93,11 @@
|
|
|
94
93
|
}
|
|
95
94
|
|
|
96
95
|
> .loginitem {
|
|
97
|
-
|
|
96
|
+
grid-column: 1 / -1;
|
|
98
97
|
padding: 0.25em 0;
|
|
99
98
|
|
|
100
99
|
label {
|
|
101
100
|
width: 100%;
|
|
102
|
-
padding-bottom: 0.25rem;
|
|
103
101
|
}
|
|
104
102
|
|
|
105
103
|
button {
|
|
@@ -108,27 +106,28 @@
|
|
|
108
106
|
}
|
|
109
107
|
}
|
|
110
108
|
|
|
111
|
-
.forgotten {
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
padding: 1rem 0;
|
|
109
|
+
.forgotten span {
|
|
110
|
+
display: block;
|
|
111
|
+
text-align: center;
|
|
112
|
+
color: var(--paragraph-color);
|
|
113
|
+
padding: 1rem 0;
|
|
117
114
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
}
|
|
115
|
+
a {
|
|
116
|
+
color: var(--secondary-color);
|
|
117
|
+
text-decoration: none;
|
|
122
118
|
}
|
|
123
119
|
}
|
|
124
120
|
|
|
125
121
|
.lcontainer {
|
|
126
|
-
--sidebar-width: 35%;
|
|
127
122
|
min-height: 100vh;
|
|
123
|
+
display: flex;
|
|
124
|
+
align-items: center;
|
|
125
|
+
justify-content: center;
|
|
128
126
|
}
|
|
129
127
|
|
|
130
128
|
.lwrap {
|
|
131
|
-
display:
|
|
129
|
+
display: grid;
|
|
130
|
+
grid-template-columns: var(--sidebar-width) 1fr;
|
|
132
131
|
}
|
|
133
132
|
|
|
134
133
|
.aside {
|
|
@@ -139,14 +138,6 @@
|
|
|
139
138
|
width: var(--sidebar-width);
|
|
140
139
|
}
|
|
141
140
|
|
|
142
|
-
.fwItem {
|
|
143
|
-
flex-basis: 100%;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
.lastItem .btn {
|
|
147
|
-
width: 100%;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
141
|
.btn {
|
|
151
142
|
width: max-content;
|
|
152
143
|
display: inline-block;
|
|
@@ -154,51 +145,30 @@
|
|
|
154
145
|
padding: 0.65rem 1rem;
|
|
155
146
|
cursor: pointer;
|
|
156
147
|
font-size: 1rem;
|
|
157
|
-
color: var(--
|
|
148
|
+
color: var(--third-color);
|
|
158
149
|
text-decoration: none;
|
|
159
150
|
overflow: hidden;
|
|
160
151
|
background: var(--primary-color);
|
|
161
|
-
border: 1px solid rgba(var(--primary-
|
|
162
|
-
border-radius: var(--
|
|
152
|
+
border: 1px solid rgba(var(--primary-rgb), 1.1);
|
|
153
|
+
border-radius: var(--radius);
|
|
163
154
|
outline: none;
|
|
164
|
-
transition: all 0.2s cubic-bezier(0.85, 0, 0.15, 1)
|
|
165
|
-
|
|
155
|
+
transition: all 0.2s cubic-bezier(0.85, 0, 0.15, 1);
|
|
156
|
+
|
|
157
|
+
&:hover {
|
|
158
|
+
color: var(--bg-color);
|
|
159
|
+
background: var(--secondary-color);
|
|
160
|
+
border: 1px solid rgba(var(--secondary-rgb), 1.05);
|
|
161
|
+
}
|
|
166
162
|
}
|
|
167
163
|
|
|
168
164
|
input:not(:placeholder-shown) + .fi__span,
|
|
169
165
|
textarea:not(:placeholder-shown) + .fi__span,
|
|
170
166
|
select:not(:placeholder-shown) + .fi__span {
|
|
171
|
-
transform: translateY(-
|
|
167
|
+
transform: translateY(-135%) translateX(10px) scale(0.9);
|
|
172
168
|
opacity: 1;
|
|
173
|
-
padding: 0
|
|
174
|
-
background: var(--
|
|
175
|
-
font-weight:
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
@media (max-width: 1024px) {
|
|
179
|
-
body {
|
|
180
|
-
font-size: 85%;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
.aside {
|
|
184
|
-
width: 100%;
|
|
185
|
-
transform: translateX(-2000px);
|
|
186
|
-
transition: all 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
187
|
-
will-change: transform;
|
|
188
|
-
z-index: 500;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
.logincontainer {
|
|
192
|
-
min-height: 100vh;
|
|
193
|
-
flex-grow: 1;
|
|
194
|
-
display: flex;
|
|
195
|
-
align-items: center;
|
|
196
|
-
justify-content: center;
|
|
197
|
-
align-content: center;
|
|
198
|
-
flex-wrap: wrap;
|
|
199
|
-
}
|
|
200
|
-
|
|
201
|
-
.login {
|
|
202
|
-
width: 95%;
|
|
203
|
-
}
|
|
169
|
+
padding: 0;
|
|
170
|
+
background: var(--bg-color);
|
|
171
|
+
font-weight: 400;
|
|
172
|
+
transition: all 0.5s cubic-bezier(0.5, 0.5, 0, 1);
|
|
173
|
+
color: rgba(var(--paragraph-rgb), 0.65) !important;
|
|
204
174
|
}
|
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
input:not(:placeholder-shown) + .fi__span,
|
|
4
4
|
textarea:not(:placeholder-shown) + .fi__span,
|
|
5
5
|
select:not(:placeholder-shown) + .fi__span {
|
|
6
|
-
transform: translateY(-40%) translateX(10px) scale(0.
|
|
6
|
+
transform: translateY(-40%) translateX(10px) scale(0.9);
|
|
7
7
|
opacity: 1;
|
|
8
|
-
padding: 0
|
|
8
|
+
padding: 0 0.25rem;
|
|
9
9
|
background: var(--tertiary-color);
|
|
10
|
-
font-weight:
|
|
10
|
+
font-weight: 400;
|
|
11
11
|
border-radius: var(--br);
|
|
12
12
|
}
|
|
13
13
|
|
|
@@ -41,42 +41,12 @@ select:not(:placeholder-shown) + .fi__span {
|
|
|
41
41
|
box-shadow: 0 4px 0 rgba(var(--primary-color-rgb), 0.05);
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
.crmtitle {
|
|
45
|
-
border: none;
|
|
46
|
-
min-height: auto;
|
|
47
|
-
padding: 10px 20px;
|
|
48
|
-
margin: 0;
|
|
49
|
-
background: var(--tertiary-color);
|
|
50
|
-
border-radius: var(--br);
|
|
51
|
-
border: 1px solid rgba(var(--item-color-rgb), 1.15);
|
|
52
|
-
position: relative;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.crmtitle h1 {
|
|
56
|
-
font-weight: 700;
|
|
57
|
-
font-size: 1.45em;
|
|
58
|
-
margin: 0;
|
|
59
|
-
padding: 0.65rem 0;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.crmtitle h1 a {
|
|
63
|
-
text-decoration: none;
|
|
64
|
-
color: rgba(var(--secondary-color-rgb), 1.1);
|
|
65
|
-
font-weight: 300;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.crmtitle h1 svg {
|
|
69
|
-
color: rgba(var(--primary-color-rgb), 0.25);
|
|
70
|
-
position: relative;
|
|
71
|
-
top: 2px;
|
|
72
|
-
margin: 0 0.25rem;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
44
|
.grid__subrow {
|
|
76
45
|
width: 100%;
|
|
77
46
|
display: flex;
|
|
78
47
|
flex-wrap: wrap;
|
|
79
48
|
height: auto;
|
|
49
|
+
gap: 0.35rem;
|
|
80
50
|
}
|
|
81
51
|
|
|
82
52
|
.grid__subnav {
|
|
@@ -86,35 +56,127 @@ select:not(:placeholder-shown) + .fi__span {
|
|
|
86
56
|
border: 1px solid var(--border-color);
|
|
87
57
|
box-sizing: border-box;
|
|
88
58
|
padding: 5px;
|
|
89
|
-
margin:
|
|
59
|
+
margin: 0.5rem 0;
|
|
90
60
|
height: auto;
|
|
91
61
|
}
|
|
92
62
|
|
|
93
|
-
.
|
|
94
|
-
flex:
|
|
63
|
+
.grid__subnav {
|
|
64
|
+
flex: 1;
|
|
95
65
|
background: white;
|
|
96
66
|
border-radius: var(--br);
|
|
97
|
-
border: 1px solid var(--border-color);
|
|
98
67
|
box-sizing: border-box;
|
|
68
|
+
padding: 5px;
|
|
69
|
+
margin: 8px 0;
|
|
70
|
+
height: auto;
|
|
71
|
+
box-shadow: 0 4px 0 rgba(var(--primary-color-rgb), 0.05);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.grid__subnav > ul {
|
|
75
|
+
width: 100%;
|
|
76
|
+
list-style: none;
|
|
99
77
|
padding: 0;
|
|
100
|
-
margin:
|
|
78
|
+
margin: 0;
|
|
79
|
+
display: flex;
|
|
80
|
+
flex-wrap: wrap;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.grid__subnav > ul li {
|
|
84
|
+
width: 100%;
|
|
85
|
+
margin-bottom: 3px;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.grid__subnav > ul li a {
|
|
89
|
+
width: 100%;
|
|
90
|
+
padding: 0.35rem 1rem;
|
|
91
|
+
box-sizing: border-box;
|
|
92
|
+
display: block;
|
|
93
|
+
text-decoration: none;
|
|
94
|
+
background: rgba(var(--primary-rgb), 0.05);
|
|
95
|
+
color: var(--primary-color);
|
|
96
|
+
border-radius: 5px;
|
|
97
|
+
transition: background 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
98
|
+
outline: none;
|
|
99
|
+
cursor: pointer;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.grid__subnav > ul li:hover a {
|
|
103
|
+
background: var(--primary-color);
|
|
104
|
+
color: var(--tertiary-color);
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.grid__subnav > ul li .subactive {
|
|
108
|
+
font-weight: 700;
|
|
109
|
+
background: var(--primary-color);
|
|
110
|
+
color: var(--tertiary-color);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.grid__subcontent {
|
|
114
|
+
flex: 0 1 80%;
|
|
115
|
+
background: var(--tertiary-color);
|
|
116
|
+
border-radius: var(--br);
|
|
117
|
+
border: 1px solid rgba(var(--primary-rgb), 0.05);
|
|
118
|
+
box-sizing: border-box;
|
|
119
|
+
padding: 2px;
|
|
120
|
+
margin: 8px 0;
|
|
101
121
|
height: auto;
|
|
102
122
|
position: relative;
|
|
103
123
|
}
|
|
104
124
|
|
|
125
|
+
.grid__subcontent h2 {
|
|
126
|
+
color: var(--primary-color);
|
|
127
|
+
font-size: 1.35em;
|
|
128
|
+
padding: 0;
|
|
129
|
+
margin: 0 0 30px 0;
|
|
130
|
+
}
|
|
131
|
+
|
|
105
132
|
.gridtxt__header {
|
|
106
133
|
width: 100%;
|
|
107
134
|
display: block;
|
|
108
|
-
background: var(--
|
|
135
|
+
background: rgba(var(--primary-rgb), 0.05);
|
|
109
136
|
box-sizing: border-box;
|
|
110
137
|
padding: 10px 20px;
|
|
111
|
-
border-
|
|
112
|
-
border-top-right-radius: var(--br);
|
|
138
|
+
border-radius: var(--br);
|
|
113
139
|
margin-bottom: 0;
|
|
114
140
|
font-weight: 700;
|
|
115
141
|
text-align: center;
|
|
116
142
|
color: var(--paragraph-color);
|
|
117
|
-
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.gridtxt__header span {
|
|
146
|
+
font-weight: 700;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.gridtxt > ul {
|
|
150
|
+
width: 100%;
|
|
151
|
+
display: flex;
|
|
152
|
+
justify-content: flex-start;
|
|
153
|
+
flex-direction: row;
|
|
154
|
+
flex-wrap: wrap;
|
|
155
|
+
list-style: none;
|
|
156
|
+
box-sizing: border-box;
|
|
157
|
+
padding: 0.85rem;
|
|
158
|
+
margin: 0;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.gridtxt > ul li {
|
|
162
|
+
flex: 0 0 calc(50% - 10px);
|
|
163
|
+
padding: 0.85rem;
|
|
164
|
+
box-sizing: border-box;
|
|
165
|
+
border: 1px solid rgba(var(--primary-rgb), 0.095);
|
|
166
|
+
color: var(--paragraph-color);
|
|
167
|
+
background: rgba(var(--primary-rgb), 0.015);
|
|
168
|
+
margin: 5px;
|
|
169
|
+
border-radius: var(--br);
|
|
170
|
+
line-height: 1.45;
|
|
171
|
+
font-size: 1rem;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.gridtxt > ul .fw-grid-item {
|
|
175
|
+
flex: 0 0 calc(100% - 10px);
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.gridtxt > ul .notecolor {
|
|
179
|
+
border: 1px solid var(--secondary-color);
|
|
118
180
|
}
|
|
119
181
|
|
|
120
182
|
.formcontainer {
|
|
@@ -143,7 +205,7 @@ select:not(:placeholder-shown) + .fi__span {
|
|
|
143
205
|
.fi__span {
|
|
144
206
|
position: absolute;
|
|
145
207
|
transition: all 200ms;
|
|
146
|
-
opacity:
|
|
208
|
+
opacity: 1;
|
|
147
209
|
left: 0;
|
|
148
210
|
padding: 19px 20px;
|
|
149
211
|
transform-origin: top left;
|
|
@@ -233,3 +295,47 @@ select:not(:placeholder-shown) + .fi__span {
|
|
|
233
295
|
.inputError {
|
|
234
296
|
border-color: red !important;
|
|
235
297
|
}
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
.crmtitle {
|
|
301
|
+
min-height: auto;
|
|
302
|
+
padding: 1rem;
|
|
303
|
+
margin: 0;
|
|
304
|
+
background: white;
|
|
305
|
+
border-radius: var(--br);
|
|
306
|
+
border: 1px solid rgba(var(--primary-rgb), 0.15);
|
|
307
|
+
position: relative;
|
|
308
|
+
display: flex;
|
|
309
|
+
align-items: center;
|
|
310
|
+
justify-content: space-between;
|
|
311
|
+
|
|
312
|
+
h1 {
|
|
313
|
+
font-weight: 700;
|
|
314
|
+
font-size: 1.25rem;
|
|
315
|
+
margin: 0;
|
|
316
|
+
padding: 0;
|
|
317
|
+
line-height: 1;
|
|
318
|
+
|
|
319
|
+
a {
|
|
320
|
+
text-decoration: none;
|
|
321
|
+
color: var(--secondary-color);
|
|
322
|
+
font-weight: 400;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
svg {
|
|
326
|
+
color: rgba(var(--primary-color-rgb), 0.5);
|
|
327
|
+
position: relative;
|
|
328
|
+
top: 2px;
|
|
329
|
+
margin: 0 0.25rem;
|
|
330
|
+
}
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.titleInfo {
|
|
334
|
+
width: max-content;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
.titleInfo span {
|
|
338
|
+
font-size: 0.875em;
|
|
339
|
+
color: rgba(var(--paragraph-color-rgb), 0.65);
|
|
340
|
+
}
|
|
341
|
+
}
|
|
@@ -1,11 +1,17 @@
|
|
|
1
1
|
.formItem {
|
|
2
2
|
width: 50%;
|
|
3
|
-
padding: 0.5em;
|
|
4
3
|
position: relative;
|
|
5
4
|
box-sizing: border-box;
|
|
6
5
|
|
|
6
|
+
h1 {
|
|
7
|
+
text-align: center;
|
|
8
|
+
font-size: 1.25rem;
|
|
9
|
+
}
|
|
10
|
+
|
|
7
11
|
.fi__label {
|
|
8
12
|
position: relative;
|
|
13
|
+
display: flex;
|
|
14
|
+
align-items: center;
|
|
9
15
|
}
|
|
10
16
|
|
|
11
17
|
.fi__span {
|
|
@@ -13,9 +19,9 @@
|
|
|
13
19
|
transition: all 200ms;
|
|
14
20
|
opacity: 0.8;
|
|
15
21
|
left: 0;
|
|
16
|
-
padding: 19px 20px;
|
|
17
22
|
transform-origin: top left;
|
|
18
23
|
cursor: text;
|
|
24
|
+
padding: 0 1rem;
|
|
19
25
|
}
|
|
20
26
|
|
|
21
27
|
.fi__div {
|
|
@@ -23,14 +29,14 @@
|
|
|
23
29
|
opacity: 0.8;
|
|
24
30
|
left: 0;
|
|
25
31
|
padding: 19px 13px;
|
|
26
|
-
border-radius: var(--
|
|
27
|
-
border: 1px solid rgba(var(--paragraph-
|
|
32
|
+
border-radius: var(--radius);
|
|
33
|
+
border: 1px solid rgba(var(--paragraph-rgb), 0.15);
|
|
28
34
|
box-shadow: none;
|
|
29
35
|
}
|
|
30
36
|
|
|
31
37
|
.fi__toggle {
|
|
32
38
|
width: max-content;
|
|
33
|
-
padding:
|
|
39
|
+
padding: 0 10px 0 0;
|
|
34
40
|
box-sizing: border-box;
|
|
35
41
|
display: inline;
|
|
36
42
|
}
|
|
@@ -43,8 +49,10 @@
|
|
|
43
49
|
}
|
|
44
50
|
}
|
|
45
51
|
|
|
46
|
-
.fwItem
|
|
47
|
-
|
|
52
|
+
.fwItem,
|
|
53
|
+
.fwBuilderItem {
|
|
54
|
+
grid-column: 1 / -1;
|
|
55
|
+
width: 100%;
|
|
48
56
|
}
|
|
49
57
|
|
|
50
58
|
.lastItem {
|
|
@@ -72,16 +80,33 @@
|
|
|
72
80
|
flex-wrap: wrap;
|
|
73
81
|
}
|
|
74
82
|
|
|
83
|
+
.loginlogo {
|
|
84
|
+
display: block;
|
|
85
|
+
width: 100%;
|
|
86
|
+
max-width: 200px;
|
|
87
|
+
height: auto;
|
|
88
|
+
margin: 0 auto;
|
|
89
|
+
padding-bottom: 1rem;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.logincontainer {
|
|
93
|
+
width: 100%;
|
|
94
|
+
min-height: 100vh;
|
|
95
|
+
display: grid;
|
|
96
|
+
place-items: center;
|
|
97
|
+
padding: 1rem;
|
|
98
|
+
}
|
|
99
|
+
|
|
75
100
|
.login {
|
|
76
101
|
width: 35rem;
|
|
77
|
-
height: auto;
|
|
78
102
|
padding: 1rem;
|
|
79
103
|
margin: 0;
|
|
80
|
-
display:
|
|
81
|
-
|
|
104
|
+
display: grid;
|
|
105
|
+
grid-template-columns: 1fr;
|
|
106
|
+
gap: 0.5rem;
|
|
82
107
|
|
|
83
108
|
> .formItem {
|
|
84
|
-
padding: 0
|
|
109
|
+
padding: 0;
|
|
85
110
|
|
|
86
111
|
small {
|
|
87
112
|
position: absolute;
|
|
@@ -94,12 +119,11 @@
|
|
|
94
119
|
}
|
|
95
120
|
|
|
96
121
|
> .loginitem {
|
|
97
|
-
|
|
122
|
+
grid-column: 1 / -1;
|
|
98
123
|
padding: 0.25em 0;
|
|
99
124
|
|
|
100
125
|
label {
|
|
101
126
|
width: 100%;
|
|
102
|
-
padding-bottom: 0.25rem;
|
|
103
127
|
}
|
|
104
128
|
|
|
105
129
|
button {
|
|
@@ -108,27 +132,28 @@
|
|
|
108
132
|
}
|
|
109
133
|
}
|
|
110
134
|
|
|
111
|
-
.forgotten {
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
padding: 1rem 0;
|
|
135
|
+
.forgotten span {
|
|
136
|
+
display: block;
|
|
137
|
+
text-align: center;
|
|
138
|
+
color: var(--paragraph-color);
|
|
139
|
+
padding: 1rem 0;
|
|
117
140
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
}
|
|
141
|
+
a {
|
|
142
|
+
color: var(--secondary-color);
|
|
143
|
+
text-decoration: none;
|
|
122
144
|
}
|
|
123
145
|
}
|
|
124
146
|
|
|
125
147
|
.lcontainer {
|
|
126
|
-
--sidebar-width: 35%;
|
|
127
148
|
min-height: 100vh;
|
|
149
|
+
display: flex;
|
|
150
|
+
align-items: center;
|
|
151
|
+
justify-content: center;
|
|
128
152
|
}
|
|
129
153
|
|
|
130
154
|
.lwrap {
|
|
131
|
-
display:
|
|
155
|
+
display: grid;
|
|
156
|
+
grid-template-columns: var(--sidebar-width) 1fr;
|
|
132
157
|
}
|
|
133
158
|
|
|
134
159
|
.aside {
|
|
@@ -139,14 +164,6 @@
|
|
|
139
164
|
width: var(--sidebar-width);
|
|
140
165
|
}
|
|
141
166
|
|
|
142
|
-
.fwItem {
|
|
143
|
-
flex-basis: 100%;
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
.lastItem .btn {
|
|
147
|
-
width: 100%;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
167
|
.btn {
|
|
151
168
|
width: max-content;
|
|
152
169
|
display: inline-block;
|
|
@@ -168,9 +185,10 @@
|
|
|
168
185
|
input:not(:placeholder-shown) + .fi__span,
|
|
169
186
|
textarea:not(:placeholder-shown) + .fi__span,
|
|
170
187
|
select:not(:placeholder-shown) + .fi__span {
|
|
171
|
-
transform: translateY(-
|
|
188
|
+
transform: translateY(-110%) translateX(10px) scale(0.75);
|
|
172
189
|
opacity: 1;
|
|
173
|
-
padding: 0
|
|
174
|
-
background: var(--
|
|
190
|
+
padding: 0;
|
|
191
|
+
background: var(--bg-color);
|
|
175
192
|
font-weight: 300;
|
|
176
|
-
|
|
193
|
+
transition: all 0.5s cubic-bezier(0.5, 0.5, 0, 1);
|
|
194
|
+
}
|