@iankibetsh/shframework 0.0.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/dist/dist/library.mjs.css +203 -0
- package/dist/library.js +3395 -0
- package/dist/library.mjs +3386 -0
- package/package.json +33 -0
|
@@ -0,0 +1,203 @@
|
|
|
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
|
+
.nav.nav-tabs .nav-item .nav-link{
|
|
35
|
+
color: unset;
|
|
36
|
+
border: none!important;
|
|
37
|
+
padding: .75rem 1rem;
|
|
38
|
+
margin: 0;
|
|
39
|
+
font-size: 1.25rem;
|
|
40
|
+
}
|
|
41
|
+
.active.nav-link {
|
|
42
|
+
/*color: #8b8f9a !important;*/
|
|
43
|
+
color: var(--s-primary) !important;
|
|
44
|
+
background-color: transparent !important;
|
|
45
|
+
border-color: #dee2e6 #dee2e6 #fff;
|
|
46
|
+
}
|
|
47
|
+
.active.nav-link{
|
|
48
|
+
position: relative;
|
|
49
|
+
}
|
|
50
|
+
.nav.nav-tabs .nav-item .active.nav-link:before {
|
|
51
|
+
content: "";
|
|
52
|
+
width: 100%;
|
|
53
|
+
height: 2px;
|
|
54
|
+
/*background-color: #ffc107;*/
|
|
55
|
+
background-color: var(--s-primary);
|
|
56
|
+
position: absolute;
|
|
57
|
+
bottom: 0;
|
|
58
|
+
left: 50%;
|
|
59
|
+
transform: translateX(-50%);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.single-mobile-req{
|
|
63
|
+
border: 1px solid #eeeeee;
|
|
64
|
+
border-radius: 0.25rem;
|
|
65
|
+
margin: 0.125rem 0;
|
|
66
|
+
box-shadow: 0 2px 8px #00000011;
|
|
67
|
+
background-color: white !important;
|
|
68
|
+
margin-bottom: 1.5rem;
|
|
69
|
+
}
|
|
70
|
+
.hauzisha-search-bar{
|
|
71
|
+
max-width: 25rem;
|
|
72
|
+
}
|
|
73
|
+
.submitted_count{
|
|
74
|
+
position: relative;
|
|
75
|
+
font-size: 1rem !important;
|
|
76
|
+
text-decoration: none;
|
|
77
|
+
background-color: #1e8449;
|
|
78
|
+
padding: 0.5rem 0.75rem;
|
|
79
|
+
font-weight: bold;
|
|
80
|
+
line-height: 1rem;
|
|
81
|
+
display: inline-block;
|
|
82
|
+
color: white;
|
|
83
|
+
text-align: center !important;
|
|
84
|
+
margin: 0.125rem;
|
|
85
|
+
border-radius: 0.25rem;
|
|
86
|
+
}
|
|
87
|
+
/*.submitted_count:before{*/
|
|
88
|
+
/* content: "";*/
|
|
89
|
+
/* position: absolute;*/
|
|
90
|
+
/* inset: -8px;*/
|
|
91
|
+
/* background-color: #1e8449;*/
|
|
92
|
+
/* z-index: -1;*/
|
|
93
|
+
/* border-radius: 50%;*/
|
|
94
|
+
/*}*/
|
|
95
|
+
table.table{
|
|
96
|
+
color: unset !important;
|
|
97
|
+
border-radius: 0.25rem !important;
|
|
98
|
+
text-decoration: none !important;
|
|
99
|
+
transition: 0.5s all ease;
|
|
100
|
+
box-shadow: 0 3px 5px #0002;
|
|
101
|
+
width: 100%;
|
|
102
|
+
font-size: 0.9rem !important;
|
|
103
|
+
}
|
|
104
|
+
thead,tbody{
|
|
105
|
+
border-radius: inherit;
|
|
106
|
+
}
|
|
107
|
+
thead th{
|
|
108
|
+
background-color: var(--s-primary);
|
|
109
|
+
}
|
|
110
|
+
thead th:first-child{
|
|
111
|
+
background-color: var(--s-primary);
|
|
112
|
+
border-radius: 0.25rem 0 0 0 !important;
|
|
113
|
+
}
|
|
114
|
+
thead th:last-child{
|
|
115
|
+
background-color: var(--s-primary);
|
|
116
|
+
border-radius: 0 0.25rem 0 0 !important;
|
|
117
|
+
}
|
|
118
|
+
thead *{
|
|
119
|
+
color: white !important;
|
|
120
|
+
text-decoration: none !important;
|
|
121
|
+
font-weight: 400;
|
|
122
|
+
}
|
|
123
|
+
tr,td,th{
|
|
124
|
+
border-bottom: none !important;
|
|
125
|
+
}
|
|
126
|
+
td:first-child,th:first-child{
|
|
127
|
+
border-left: 1px solid #00000006 !important;
|
|
128
|
+
}
|
|
129
|
+
tr:nth-child(even){
|
|
130
|
+
background-color: #2540a211;
|
|
131
|
+
}
|
|
132
|
+
tr:last-child{
|
|
133
|
+
border-bottom: none !important;
|
|
134
|
+
}
|
|
135
|
+
td:nth-child(even){
|
|
136
|
+
border-left: 1px solid #2540a244;
|
|
137
|
+
border-right: 1px solid #2540a244;
|
|
138
|
+
}
|
|
139
|
+
td:not(:last-child),th:not(:last-child),td:not(:first-child),th:not(:first-child){
|
|
140
|
+
max-width: 25rem !important;
|
|
141
|
+
}
|
|
142
|
+
th:nth-child(even){
|
|
143
|
+
border-left: 1px solid #fff4;
|
|
144
|
+
border-right: 1px solid #fff4;
|
|
145
|
+
}
|
|
146
|
+
th:last-child,td:last-child{
|
|
147
|
+
border-right: 1px solid #00000006 !important;
|
|
148
|
+
}
|
|
149
|
+
.has-response {
|
|
150
|
+
background-color: rgb(252 243 207);
|
|
151
|
+
/*color: green;*/
|
|
152
|
+
}
|
|
153
|
+
.action_icon{
|
|
154
|
+
background-position: center;
|
|
155
|
+
background-size: cover;
|
|
156
|
+
height: 30px;
|
|
157
|
+
width: 30px;
|
|
158
|
+
}
|
|
159
|
+
.action_icon:hover {
|
|
160
|
+
border: 1px solid blue;
|
|
161
|
+
}
|
|
162
|
+
.sh-search-bar{
|
|
163
|
+
position: relative;
|
|
164
|
+
height: 3rem;
|
|
165
|
+
padding: 0;
|
|
166
|
+
display: flex;
|
|
167
|
+
align-items: center;
|
|
168
|
+
}
|
|
169
|
+
.sh-search-bar .sh-search-input{
|
|
170
|
+
padding: 0.5rem 1rem 0.5rem 2.5rem;
|
|
171
|
+
box-shadow: none;
|
|
172
|
+
outline: none;
|
|
173
|
+
border: 1px solid #ced0d4;
|
|
174
|
+
border-radius: 1.5rem;
|
|
175
|
+
max-width: 25rem;
|
|
176
|
+
margin-bottom: 0;
|
|
177
|
+
}
|
|
178
|
+
.sh-search-bar .sh-search-icon{
|
|
179
|
+
position: absolute;
|
|
180
|
+
left: 1rem;
|
|
181
|
+
top: 50%;
|
|
182
|
+
transform: translateY(-50%);
|
|
183
|
+
color: grey;
|
|
184
|
+
font-size: 1rem;
|
|
185
|
+
pointer-events: none;
|
|
186
|
+
padding: 0;
|
|
187
|
+
}
|
|
188
|
+
.sh-search-bar .sh-search-icon i{
|
|
189
|
+
padding: 0;
|
|
190
|
+
margin-bottom: 0;
|
|
191
|
+
}
|
|
192
|
+
.sh-search-bar .sh-search-input:focus{
|
|
193
|
+
border: 1px solid #076dfb;
|
|
194
|
+
}
|
|
195
|
+
.sh-search-bar .sh-search-input:focus + .sh-search-icon{
|
|
196
|
+
color: #076dfb;
|
|
197
|
+
}
|
|
198
|
+
.sh-search-bar .sh-search-input::placeholder{
|
|
199
|
+
font-size: 1.1rem;
|
|
200
|
+
font-weight: 300;
|
|
201
|
+
opacity: 0.8;
|
|
202
|
+
text-transform: capitalize;
|
|
203
|
+
}
|