@iankibetsh/shframework 1.4.4 → 1.4.6
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/dist/dist/library.mjs.css +74 -42
- package/dist/library.js +242 -181
- package/dist/library.mjs +243 -183
- package/package.json +1 -1
|
@@ -1,36 +1,4 @@
|
|
|
1
1
|
|
|
2
|
-
.sh-phone{
|
|
3
|
-
display: flex;
|
|
4
|
-
width: 100%;
|
|
5
|
-
align-items: center;
|
|
6
|
-
padding: 0 0.25rem;
|
|
7
|
-
}
|
|
8
|
-
.phone-country{
|
|
9
|
-
width: 2rem;
|
|
10
|
-
border: none;
|
|
11
|
-
align-self: center;
|
|
12
|
-
outline: none !important;
|
|
13
|
-
padding: 0.4rem;
|
|
14
|
-
border-right: 1px solid #0003;
|
|
15
|
-
}
|
|
16
|
-
.phone-number{
|
|
17
|
-
width: calc(100% - 2.2rem);
|
|
18
|
-
border: none;
|
|
19
|
-
align-self: center;
|
|
20
|
-
outline: none;
|
|
21
|
-
margin-bottom: 0;
|
|
22
|
-
padding: 0.4rem;
|
|
23
|
-
}
|
|
24
|
-
.sh-phone img{
|
|
25
|
-
padding: 0.125rem;
|
|
26
|
-
width: 2rem;
|
|
27
|
-
height: 2rem;
|
|
28
|
-
}
|
|
29
|
-
.phone-number::placeholder{
|
|
30
|
-
font-weight: 300;
|
|
31
|
-
opacity: 0.5;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
2
|
.colored-toast.swal2-icon-success {
|
|
35
3
|
background-color: #a5dc86 !important;
|
|
36
4
|
}
|
|
@@ -63,19 +31,68 @@
|
|
|
63
31
|
color: white;
|
|
64
32
|
}
|
|
65
33
|
|
|
66
|
-
.sh-
|
|
67
|
-
|
|
34
|
+
.sh-phone{
|
|
35
|
+
display: flex;
|
|
36
|
+
width: 100%;
|
|
37
|
+
align-items: center;
|
|
38
|
+
padding: 0 0.25rem;
|
|
68
39
|
}
|
|
69
|
-
.
|
|
70
|
-
|
|
40
|
+
.phone-country{
|
|
41
|
+
width: 2rem;
|
|
42
|
+
border: none;
|
|
43
|
+
align-self: center;
|
|
44
|
+
outline: none !important;
|
|
45
|
+
padding: 0.4rem;
|
|
46
|
+
border-right: 1px solid #0003;
|
|
71
47
|
}
|
|
72
|
-
.
|
|
73
|
-
|
|
48
|
+
.phone-number{
|
|
49
|
+
width: calc(100% - 2.2rem);
|
|
50
|
+
border: none;
|
|
51
|
+
align-self: center;
|
|
52
|
+
outline: none;
|
|
53
|
+
margin-bottom: 0;
|
|
54
|
+
padding: 0.4rem;
|
|
74
55
|
}
|
|
75
|
-
.sh-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
56
|
+
.sh-phone img{
|
|
57
|
+
padding: 0.125rem;
|
|
58
|
+
width: 2rem;
|
|
59
|
+
height: 2rem;
|
|
60
|
+
}
|
|
61
|
+
.phone-number::placeholder{
|
|
62
|
+
font-weight: 300;
|
|
63
|
+
opacity: 0.5;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.permissions-main {
|
|
67
|
+
background: #edeff2;
|
|
68
|
+
}
|
|
69
|
+
.permissions-main div#permissions-nav {
|
|
70
|
+
padding: 0;
|
|
71
|
+
}
|
|
72
|
+
.permissions-main div#permissions-nav ul {
|
|
73
|
+
padding-left: 0;
|
|
74
|
+
max-height: 400px;
|
|
75
|
+
overflow-y: auto;
|
|
76
|
+
}
|
|
77
|
+
.permissions-main div#permissions-nav ul li.active {
|
|
78
|
+
border-right: none !important;
|
|
79
|
+
position: relative;
|
|
80
|
+
top: 0;
|
|
81
|
+
left: 0;
|
|
82
|
+
background: white;
|
|
83
|
+
border-radius: 10px 0 0 10px;
|
|
84
|
+
}
|
|
85
|
+
.permissions-main div#permissions-nav ul li {
|
|
86
|
+
list-style: none;
|
|
87
|
+
padding-inline-start: 10px;
|
|
88
|
+
display: flex;
|
|
89
|
+
gap: 5px;
|
|
90
|
+
}
|
|
91
|
+
.permissions-main div#permissions-nav ul li label {
|
|
92
|
+
padding: 8px 0;
|
|
93
|
+
cursor: pointer;
|
|
94
|
+
height: 100%;
|
|
95
|
+
flex-grow: 1;
|
|
79
96
|
}
|
|
80
97
|
|
|
81
98
|
:root {
|
|
@@ -99,6 +116,21 @@
|
|
|
99
116
|
}
|
|
100
117
|
}
|
|
101
118
|
|
|
119
|
+
.sh-selected-item{
|
|
120
|
+
line-height: unset!important;
|
|
121
|
+
}
|
|
122
|
+
.sh-suggestion-input{
|
|
123
|
+
padding: 0.375rem 0.75rem;
|
|
124
|
+
}
|
|
125
|
+
.sh-suggest{
|
|
126
|
+
margin-bottom: 1rem;
|
|
127
|
+
}
|
|
128
|
+
.sh-suggest-control::after{
|
|
129
|
+
margin-top: auto;
|
|
130
|
+
margin-bottom: auto;
|
|
131
|
+
margin-right: 0.255em;
|
|
132
|
+
}
|
|
133
|
+
|
|
102
134
|
.sh-forgot-link, .sh-register-link{
|
|
103
135
|
cursor: pointer;
|
|
104
136
|
}
|