funuicss 1.9.2 → 1.9.3

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.
Files changed (2) hide show
  1. package/css/fun.css +132 -9
  2. package/package.json +1 -1
package/css/fun.css CHANGED
@@ -4,17 +4,25 @@
4
4
  font-family: "MavenPro";
5
5
  src: url(./Maven_Pro/MavenPro.ttf);
6
6
  }
7
+
8
+
9
+
7
10
  :root {
8
- --primaryColor: #0d6efd;
11
+ --primaryColor: #0d6dfc;
9
12
  --white: #fff;
10
13
  --dark: #1e1e1e;
11
14
  --lightDark: #4e4e4e66;
12
15
  --secondaryColor: #6d767e;
13
16
  --success: #48c78e;
17
+ --successLight:#edf7ed;
14
18
  --warning: #dc8001cc;
19
+ --warningLight:#fff4e5 ;
15
20
  --danger: #dc1101cc;
21
+ --dangerLight:#fdeded;
16
22
  --info: #5fbbe2;
17
- --light: #e0f3f5;
23
+ --infoLight:#e5f6fd;
24
+ --light: #ecf5f8;
25
+ --deepLight: #2fa2b1;
18
26
  --bd-font-weight: 400;
19
27
  --bdfontSize: 1rem;
20
28
  --db-line-height: 1;
@@ -31,7 +39,10 @@
31
39
  --sideBarZindex:10;
32
40
  --navBarZindex:9;
33
41
  --modalZIndex:15;
34
- --snackBarZindex:15;
42
+ --loaderZindex:100;
43
+ --snackBarZindex:20;
44
+ --inputHeight:2.1rem;
45
+ --inputPadding:0.5rem 0;
35
46
 
36
47
 
37
48
  }
@@ -86,6 +97,7 @@ input {
86
97
  }
87
98
 
88
99
  /* Background Color */
100
+
89
101
  .gradient,
90
102
  .hover-gradient:hover {
91
103
  background: var(--gradient) !important;
@@ -113,6 +125,7 @@ input {
113
125
  .light,
114
126
  .hover-light:hover {
115
127
  background-color: var(--light) !important;
128
+ color: var(--deepLight);
116
129
  }
117
130
  .secondary,
118
131
  .hover-secondary:hover {
@@ -124,27 +137,50 @@ input {
124
137
  background-color: var(--success) !important;
125
138
  color: white;
126
139
  }
140
+ .light-success,
141
+ .hover-light-success:hover {
142
+ background-color: var(--successLight) !important;
143
+ color: var(--success);
144
+ }
127
145
  .info,
128
146
  .hover-info:hover {
129
147
  background-color: var(--info) !important;
130
148
  color: white;
131
149
  }
150
+ .light-info,
151
+ .hover-light-info:hover {
152
+ background-color: var(--infoLight) !important;
153
+ color: var(--info);
154
+ }
132
155
  .warning,
133
156
  .hover-warning:hover {
134
157
  background-color: var(--warning) !important;
135
158
  color: white;
136
159
  }
160
+ .light-warning,
161
+ .hover-light-warning:hover {
162
+ background-color: var(--warningLight) !important;
163
+ color: var(--warning);
164
+ }
137
165
  .danger,
138
166
  .error,
139
167
  .hover-danger:hover {
140
168
  background-color: var(--danger) !important;
141
169
  color: white;
142
170
  }
171
+ .light-danger,
172
+ .hover-lightdanger:hover {
173
+ background-color: var(--dangerLight) !important;
174
+ color:var(--danger);
175
+ }
143
176
 
144
177
  /* outlines */
145
178
  .success-outline {
146
179
  border: 1px solid var(--success) !important;
147
180
  }
181
+ .light-success-outline {
182
+ border: 1px solid var(--successLight) !important;
183
+ }
148
184
  .primary-outline {
149
185
  border: 1px solid var(--primaryColor) !important;
150
186
  }
@@ -166,12 +202,21 @@ input {
166
202
  .info-outline {
167
203
  border: 1px solid var(--info) !important;
168
204
  }
205
+ .light-info-outline {
206
+ border: 1px solid var(--infoLight) !important;
207
+ }
169
208
  .warning-outline {
170
209
  border: 1px solid var(--warning) !important;
171
210
  }
211
+ .light-warning-outline {
212
+ border: 1px solid var(--warningLight) !important;
213
+ }
172
214
  .danger-outline {
173
215
  border: 1px solid var(--danger) !important;
174
216
  }
217
+ .light-danger-outline {
218
+ border: 1px solid var(--dangerLight) !important;
219
+ }
175
220
 
176
221
  /* text color */
177
222
  .text-light,
@@ -202,17 +247,32 @@ input {
202
247
  .hover-text-success:hover {
203
248
  color: var(--success) !important;
204
249
  }
250
+ .text-light-success,
251
+ .hover-text-light-success:hover {
252
+ color: var(--successLight) !important;
253
+ }
205
254
  .text-info , .hover-text-info:hover {
206
255
  color: var(--info);
207
256
  }
257
+ .text-light-info , .hover-text-light-info:hover {
258
+ color: var(--infoLight);
259
+ }
208
260
  .text-warning,
209
261
  .hover-text-warning:hover {
210
262
  color: var(--warning);
211
263
  }
264
+ .text-light-warning,
265
+ .hover-text-light-warning:hover {
266
+ color: var(--warningLight);
267
+ }
212
268
  .text-danger,
213
269
  .hover-text-danger:hover {
214
270
  color: var(--danger);
215
271
  }
272
+ .text-light-danger,
273
+ .hover-text-light-danger:hover {
274
+ color: var(--dangerLight);
275
+ }
216
276
  .text-gradient,
217
277
  .hover-text-gradient:hover {
218
278
  background: -webkit-linear-gradient(var(--gradientColors));
@@ -742,7 +802,8 @@ input {
742
802
  font-size: var(--smallFont);
743
803
  }
744
804
  .article{
745
- line-height: 1.2rem;
805
+ line-height: 1.3rem;
806
+ letter-spacing: 0.02rem;
746
807
  }
747
808
  .text-bigger {
748
809
  font-size: calc(1.375rem + 2.5vw);
@@ -1440,6 +1501,14 @@ h6,
1440
1501
  bottom: 0;
1441
1502
  left: 0;
1442
1503
  width: 100%;
1504
+ z-index: var(--navBarZindex);
1505
+ }
1506
+ .fixedTop {
1507
+ position: fixed;
1508
+ bottom: 0;
1509
+ top: 0;
1510
+ width: 100%;
1511
+ z-index: var(--navBarZindex);
1443
1512
  }
1444
1513
  .row-flex.center {
1445
1514
  justify-content: center;
@@ -1456,6 +1525,18 @@ h6,
1456
1525
  filter: brightness(90%);
1457
1526
 
1458
1527
  }
1528
+ .rightRounded{
1529
+ border-top-right-radius: 300rem !important;
1530
+ border-bottom-right-radius: 300rem !important;
1531
+ border-bottom-left-radius: 0 !important;
1532
+ border-top-left-radius: 0 !important;
1533
+ }
1534
+ .leftRounded{
1535
+ border-top-left-radius: 300rem !important;
1536
+ border-bottom-left-radius: 300rem !important;
1537
+ border-top-right-radius: 0 !important;
1538
+ border-bottom-right-radius: 0 !important;
1539
+ }
1459
1540
  /* avatar */
1460
1541
  .avatar {
1461
1542
  display: flex;
@@ -2043,14 +2124,15 @@ h6,
2043
2124
 
2044
2125
  /*inputs*/
2045
2126
  .input {
2046
- padding: 0.5rem 0;
2127
+ padding: var(--inputPadding);
2047
2128
  outline: none;
2048
2129
  border: 0.1rem transparent;
2049
2130
  border-bottom: var(--border);
2050
2131
  transition: 0.2s linear;
2051
2132
  font-weight: 500;
2052
2133
  }
2053
- .input.flat{border-radius: 0 !important;}
2134
+ input , select{height: var(--inputHeight);}
2135
+ .input.flat{border-radius: 0;}
2054
2136
  .input:focus {
2055
2137
  border-bottom: 0.1rem solid var(--primaryColor);
2056
2138
  }
@@ -2672,7 +2754,8 @@ th {
2672
2754
  border: var(--border);
2673
2755
  }
2674
2756
  .table.stripped tr:nth-child(even) {
2675
- background-color: #e3e6e8;
2757
+ background-color: var(--light);
2758
+ color: var(--deepLight);
2676
2759
  }
2677
2760
  .table tr,
2678
2761
  th,
@@ -2680,11 +2763,11 @@ td {
2680
2763
  padding: 0.4rem;
2681
2764
  margin: 0;
2682
2765
  }
2683
- .table.hoverable > tr,
2766
+ .table.hoverableTr > tr,
2684
2767
  th {
2685
2768
  transition: 0.3s;
2686
2769
  }
2687
- .table.hoverable > tr:hover {
2770
+ .table.hoverableTr > tr:hover {
2688
2771
  filter: var(--hoverable);
2689
2772
  }
2690
2773
  .table.light {
@@ -3131,6 +3214,7 @@ Button,
3131
3214
  .tooltip .tip {
3132
3215
  display: none;
3133
3216
  width: 100%;
3217
+ min-width: 100px;
3134
3218
  max-width: 400px;
3135
3219
  background-color: #555;
3136
3220
  color: #fff;
@@ -3308,3 +3392,42 @@ Button,
3308
3392
  margin-right: 0%;
3309
3393
  }
3310
3394
  }
3395
+
3396
+
3397
+ /* Loader */
3398
+ .funLoading {
3399
+ width:50px;
3400
+ height:50px;
3401
+ display:inline-block;
3402
+ padding:0px;
3403
+ border-radius:100%;
3404
+ border:5px solid;
3405
+ border-top-color:var(--primaryColor);
3406
+ border-bottom-color:var(--light);
3407
+ border-left-color:var(--primaryColor);
3408
+ border-right-color:var(--light);
3409
+ -webkit-animation: loader4 1s linear infinite;
3410
+ animation: loader4 1s linear infinite;
3411
+ }
3412
+ .fixedLoader{
3413
+ position: fixed;
3414
+ z-index: var(--loaderZindex);
3415
+ height: 100%;
3416
+ width: 100%;
3417
+ top: 0;
3418
+ left: 0;
3419
+ display: flex;
3420
+ align-items: center;
3421
+ justify-content: center;
3422
+ }
3423
+ .fixedLoader.backdropLoader{
3424
+ background-color: rgba(0, 0, 0, 0.2);
3425
+ }
3426
+ @keyframes loader4 {
3427
+ from {transform: rotate(0deg);}
3428
+ to {transform: rotate(360deg);}
3429
+ }
3430
+ @-webkit-keyframes loader4 {
3431
+ from {-webkit-transform: rotate(0deg);}
3432
+ to {-webkit-transform: rotate(360deg);}
3433
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "funuicss",
3
- "version": "1.9.2",
3
+ "version": "1.9.3",
4
4
  "description": "React/Next.js component UI Library for creating Easy and good looking websites with fewer lines of code.",
5
5
  "main": "index.js",
6
6
  "scripts": {