@obaidazoqili/skysoftware-styles 1.6.0 → 1.8.0
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/styles/styles.css +52 -119
- package/package.json +1 -1
package/dist/styles/styles.css
CHANGED
|
@@ -438,7 +438,6 @@ h6 {
|
|
|
438
438
|
display: -webkit-box;
|
|
439
439
|
-webkit-box-orient: vertical;
|
|
440
440
|
-webkit-line-clamp: 3;
|
|
441
|
-
line-clamp: 3;
|
|
442
441
|
overflow: hidden;
|
|
443
442
|
text-overflow: ellipsis;
|
|
444
443
|
}
|
|
@@ -447,7 +446,6 @@ h6 {
|
|
|
447
446
|
display: -webkit-box;
|
|
448
447
|
-webkit-box-orient: vertical;
|
|
449
448
|
-webkit-line-clamp: 2;
|
|
450
|
-
line-clamp: 2;
|
|
451
449
|
overflow: hidden;
|
|
452
450
|
text-overflow: ellipsis;
|
|
453
451
|
min-height: 31px !important;
|
|
@@ -457,7 +455,6 @@ h6 {
|
|
|
457
455
|
display: -webkit-box;
|
|
458
456
|
-webkit-box-orient: vertical;
|
|
459
457
|
-webkit-line-clamp: 1;
|
|
460
|
-
line-clamp: 1;
|
|
461
458
|
overflow: hidden;
|
|
462
459
|
text-overflow: ellipsis;
|
|
463
460
|
min-height: 16px !important;
|
|
@@ -466,7 +463,6 @@ h6 {
|
|
|
466
463
|
.warning-description-truncate {
|
|
467
464
|
display: -webkit-box;
|
|
468
465
|
-webkit-line-clamp: 3;
|
|
469
|
-
line-clamp: 3;
|
|
470
466
|
-webkit-box-orient: vertical;
|
|
471
467
|
overflow: hidden;
|
|
472
468
|
}
|
|
@@ -474,7 +470,6 @@ h6 {
|
|
|
474
470
|
.line-clamp-two {
|
|
475
471
|
display: -webkit-box;
|
|
476
472
|
-webkit-line-clamp: 2;
|
|
477
|
-
line-clamp: 2;
|
|
478
473
|
-webkit-box-orient: vertical;
|
|
479
474
|
overflow: hidden;
|
|
480
475
|
text-overflow: ellipsis;
|
|
@@ -605,10 +600,6 @@ h6 {
|
|
|
605
600
|
gap: 38px;
|
|
606
601
|
}
|
|
607
602
|
|
|
608
|
-
.cdk-drop-list {
|
|
609
|
-
gap: .5rem !important
|
|
610
|
-
}
|
|
611
|
-
|
|
612
603
|
.cdk-overlay-container {
|
|
613
604
|
z-index: 3000 !important;
|
|
614
605
|
}
|
|
@@ -661,7 +652,6 @@ h6 {
|
|
|
661
652
|
}
|
|
662
653
|
|
|
663
654
|
/* Buttons */
|
|
664
|
-
|
|
665
655
|
.collapse-btn {
|
|
666
656
|
color: #6B6A6A;
|
|
667
657
|
}
|
|
@@ -678,10 +668,21 @@ h6 {
|
|
|
678
668
|
background: var(--dark-text-color);
|
|
679
669
|
}
|
|
680
670
|
|
|
671
|
+
.btn-h-sm {
|
|
672
|
+
height: 1.875rem;
|
|
673
|
+
display: flex;
|
|
674
|
+
justify-content: center;
|
|
675
|
+
align-items: center;
|
|
676
|
+
}
|
|
677
|
+
|
|
681
678
|
button {
|
|
682
679
|
border-radius: var(--bs-border-radius) !important;
|
|
683
680
|
}
|
|
684
681
|
|
|
682
|
+
.btn-width {
|
|
683
|
+
min-width: 80px;
|
|
684
|
+
}
|
|
685
|
+
|
|
685
686
|
.btn-primary {
|
|
686
687
|
color: var(--bs-white) !important;
|
|
687
688
|
--bs-btn-bg: var(--bs-primary);
|
|
@@ -782,16 +783,7 @@ button {
|
|
|
782
783
|
background-color: var(--bg-light-gray) !important;
|
|
783
784
|
}
|
|
784
785
|
|
|
785
|
-
.btn-h-sm {
|
|
786
|
-
height: 1.875rem;
|
|
787
|
-
display: flex;
|
|
788
|
-
justify-content: center;
|
|
789
|
-
align-items: center;
|
|
790
|
-
}
|
|
791
786
|
|
|
792
|
-
.btn-width {
|
|
793
|
-
min-width: 80px;
|
|
794
|
-
}
|
|
795
787
|
|
|
796
788
|
/* Links */
|
|
797
789
|
a {
|
|
@@ -850,21 +842,11 @@ a.nav-link {
|
|
|
850
842
|
--bs-dropdown-link-hover-bg: rgba(0, 0, 0, .07);
|
|
851
843
|
}
|
|
852
844
|
|
|
853
|
-
.dropdown-item{
|
|
854
|
-
padding: .5rem 1rem;
|
|
855
|
-
}
|
|
856
845
|
|
|
857
846
|
.dropdown-item:focus, .dropdown-item:hover {
|
|
858
847
|
color: var(--bs-dropdown-link-active-color) !important;
|
|
859
848
|
}
|
|
860
849
|
|
|
861
|
-
.dropdown-item:hover {
|
|
862
|
-
color: var(--orange-text-color);
|
|
863
|
-
font-weight: 600;
|
|
864
|
-
font-size: var(--font-size-14) !important;
|
|
865
|
-
background: var(--bs-light-primary-bg);
|
|
866
|
-
border: 1px solid #EBE5FC;
|
|
867
|
-
}
|
|
868
850
|
|
|
869
851
|
.dropdown-menu.user-menu {
|
|
870
852
|
top: 106%;
|
|
@@ -996,8 +978,16 @@ a.alert-link {
|
|
|
996
978
|
|
|
997
979
|
/* Cards */
|
|
998
980
|
|
|
981
|
+
.card-shadow {
|
|
982
|
+
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) !important;
|
|
983
|
+
}
|
|
984
|
+
|
|
985
|
+
.card-radius {
|
|
986
|
+
border-radius: 0.5rem !important;
|
|
987
|
+
}
|
|
988
|
+
|
|
999
989
|
.responsive-cards-container-width {
|
|
1000
|
-
|
|
990
|
+
width: 60%;
|
|
1001
991
|
}
|
|
1002
992
|
|
|
1003
993
|
.card-action svg[role="img"] {
|
|
@@ -1006,21 +996,6 @@ a.alert-link {
|
|
|
1006
996
|
height: 24px;
|
|
1007
997
|
}
|
|
1008
998
|
|
|
1009
|
-
.card.disabled {
|
|
1010
|
-
pointer-events: none;
|
|
1011
|
-
opacity: 0.6;
|
|
1012
|
-
}
|
|
1013
|
-
|
|
1014
|
-
.card.disabled .card-header,
|
|
1015
|
-
.card.disabled .card-body {
|
|
1016
|
-
user-select: none;
|
|
1017
|
-
}
|
|
1018
|
-
|
|
1019
|
-
.card-header {
|
|
1020
|
-
cursor: pointer;
|
|
1021
|
-
background-color: transparent !important;
|
|
1022
|
-
border-bottom:none!important;
|
|
1023
|
-
}
|
|
1024
999
|
|
|
1025
1000
|
.card-min-height {
|
|
1026
1001
|
height: 180px;
|
|
@@ -1030,13 +1005,6 @@ a.alert-link {
|
|
|
1030
1005
|
max-width: 18rem;
|
|
1031
1006
|
}
|
|
1032
1007
|
|
|
1033
|
-
.card-shadow {
|
|
1034
|
-
box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25) !important;
|
|
1035
|
-
}
|
|
1036
|
-
|
|
1037
|
-
.card-radius {
|
|
1038
|
-
border-radius: 0.5rem !important;
|
|
1039
|
-
}
|
|
1040
1008
|
|
|
1041
1009
|
.state-card {
|
|
1042
1010
|
color: var(--bs-white);
|
|
@@ -1204,13 +1172,7 @@ a.alert-link {
|
|
|
1204
1172
|
justify-content: center;
|
|
1205
1173
|
}
|
|
1206
1174
|
|
|
1207
|
-
.badge-width {
|
|
1208
|
-
width: 238px;
|
|
1209
|
-
}
|
|
1210
1175
|
|
|
1211
|
-
.badge-light {
|
|
1212
|
-
background-color: var(--bs-bg-disabled);
|
|
1213
|
-
}
|
|
1214
1176
|
.property-badge {
|
|
1215
1177
|
background-color: #F0E4D5 !important;
|
|
1216
1178
|
font-size: var(--font-size-10) !important;
|
|
@@ -1246,22 +1208,6 @@ a.alert-link {
|
|
|
1246
1208
|
background-color: var(--bs-default-color-light);
|
|
1247
1209
|
}
|
|
1248
1210
|
|
|
1249
|
-
/* Class Tag Item */
|
|
1250
|
-
.class-tag-item {
|
|
1251
|
-
display: flex;
|
|
1252
|
-
padding: 4px 8px;
|
|
1253
|
-
align-items: flex-start;
|
|
1254
|
-
gap: 8px;
|
|
1255
|
-
border-radius: 4px;
|
|
1256
|
-
background: var(--bs-light-primary-bg);
|
|
1257
|
-
color: var(--dark-text-color);
|
|
1258
|
-
text-align: center;
|
|
1259
|
-
font-size: 14px;
|
|
1260
|
-
font-style: normal;
|
|
1261
|
-
font-weight: 600;
|
|
1262
|
-
line-height: normal;
|
|
1263
|
-
}
|
|
1264
|
-
|
|
1265
1211
|
|
|
1266
1212
|
/* Progress */
|
|
1267
1213
|
|
|
@@ -1777,7 +1723,9 @@ mat-divider.mat-divider.mat-divider-vertical {
|
|
|
1777
1723
|
.min-h-100 { min-height: 100px; }
|
|
1778
1724
|
.min-h-150 { min-height: 150px; }
|
|
1779
1725
|
.min-h-800 { min-height: 800px !important; }
|
|
1780
|
-
|
|
1726
|
+
.mh-150 {
|
|
1727
|
+
min-height: 150px
|
|
1728
|
+
}
|
|
1781
1729
|
/* Width Classes */
|
|
1782
1730
|
.w-5 { width: 5%; }
|
|
1783
1731
|
.w-10 { width: 10%; }
|
|
@@ -2089,16 +2037,6 @@ a.quick-action:hover > hr.quick-action-element {
|
|
|
2089
2037
|
color: var(--bs-red-danger) !important;
|
|
2090
2038
|
}
|
|
2091
2039
|
|
|
2092
|
-
.custom-info-icon {
|
|
2093
|
-
display: inline-block;
|
|
2094
|
-
width: 12px;
|
|
2095
|
-
height: 12px;
|
|
2096
|
-
color: var(--light-gray-color);
|
|
2097
|
-
margin-left: 4px;
|
|
2098
|
-
margin-right: 4px;
|
|
2099
|
-
font-size: var(--font-size-12);
|
|
2100
|
-
}
|
|
2101
|
-
|
|
2102
2040
|
.empty-icon {
|
|
2103
2041
|
color: var(--gray-border-color) !important;
|
|
2104
2042
|
}
|
|
@@ -2247,26 +2185,26 @@ a.quick-action:hover > hr.quick-action-element {
|
|
|
2247
2185
|
color: var(--dark-text-color);
|
|
2248
2186
|
font-size: var(--font-size-10) !important;
|
|
2249
2187
|
font-weight: 500 !important;
|
|
2250
|
-
margin-bottom: 0.
|
|
2188
|
+
margin-bottom: 0.25rem;
|
|
2251
2189
|
}
|
|
2252
2190
|
|
|
2253
2191
|
.field-item-custom-label-sm {
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2192
|
+
color: var(--dark-text-color);
|
|
2193
|
+
font-size: var(--font-size-12) !important;
|
|
2194
|
+
font-weight: 500 !important;
|
|
2195
|
+
margin-bottom: 0.25rem;
|
|
2258
2196
|
}
|
|
2259
2197
|
.field-item-custom-label-md {
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2198
|
+
color: var(--dark-text-color);
|
|
2199
|
+
font-size: var(--font-size-14) !important;
|
|
2200
|
+
font-weight: 500 !important;
|
|
2201
|
+
margin-bottom: 0.25rem;
|
|
2264
2202
|
}
|
|
2265
2203
|
.field-item-custom-label-lg {
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2204
|
+
color: var(--dark-text-color);
|
|
2205
|
+
font-size: var(--font-size-16) !important;
|
|
2206
|
+
font-weight: 500 !important;
|
|
2207
|
+
margin-bottom: 0.25rem;
|
|
2270
2208
|
}
|
|
2271
2209
|
|
|
2272
2210
|
|
|
@@ -2291,25 +2229,25 @@ a.quick-action:hover > hr.quick-action-element {
|
|
|
2291
2229
|
|
|
2292
2230
|
/* Currency */
|
|
2293
2231
|
.currency-xs {
|
|
2294
|
-
font-weight:
|
|
2232
|
+
font-weight: 400;
|
|
2295
2233
|
font-size: var(--font-size-10) !important;
|
|
2296
2234
|
color: var(--bs-bg-dark-gray) !important;
|
|
2297
2235
|
}
|
|
2298
2236
|
|
|
2299
2237
|
.currency-sm {
|
|
2300
|
-
font-weight:
|
|
2238
|
+
font-weight: 400;
|
|
2301
2239
|
font-size: var(--font-size-8) !important;
|
|
2302
2240
|
color: var(--bs-bg-dark-gray) !important;
|
|
2303
2241
|
}
|
|
2304
2242
|
|
|
2305
2243
|
.currency-md {
|
|
2306
|
-
font-weight:
|
|
2244
|
+
font-weight: 400;
|
|
2307
2245
|
font-size: var(--font-size-12) !important;
|
|
2308
2246
|
color: var(--bs-bg-dark-gray) !important;
|
|
2309
2247
|
}
|
|
2310
2248
|
|
|
2311
2249
|
.currency-lg {
|
|
2312
|
-
font-weight:
|
|
2250
|
+
font-weight: 400;
|
|
2313
2251
|
font-size: var(--font-size-16) !important;
|
|
2314
2252
|
color: var(--bs-bg-dark-gray) !important;
|
|
2315
2253
|
}
|
|
@@ -2397,11 +2335,6 @@ a.quick-action:hover > hr.quick-action-element {
|
|
|
2397
2335
|
font-weight: 400;
|
|
2398
2336
|
}
|
|
2399
2337
|
|
|
2400
|
-
.divider {
|
|
2401
|
-
display: inline-block;
|
|
2402
|
-
border-right: 1px solid rgba(0, 0, 0, 0.25);
|
|
2403
|
-
}
|
|
2404
|
-
|
|
2405
2338
|
.divider-with-text {
|
|
2406
2339
|
position: relative;
|
|
2407
2340
|
text-align: start;
|
|
@@ -2571,15 +2504,15 @@ a.quick-action:hover > hr.quick-action-element {
|
|
|
2571
2504
|
box-sizing: border-box;
|
|
2572
2505
|
}
|
|
2573
2506
|
|
|
2574
|
-
.
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2507
|
+
.main-container {
|
|
2508
|
+
position: relative;
|
|
2509
|
+
left: 260px;
|
|
2510
|
+
top: 60px;
|
|
2511
|
+
width: calc(100% - 260px);
|
|
2512
|
+
transition: all 0.5s ease;
|
|
2513
|
+
padding-left: 0;
|
|
2514
|
+
padding-right: 0;
|
|
2515
|
+
margin-left: 0;
|
|
2516
|
+
margin-right: 0;
|
|
2517
|
+
}
|
|
2518
|
+
|