@selco/installation-ui-css 1.0.3 → 1.0.5
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/index.css +182 -23
- package/dist/index.min.css +2 -2
- package/package.json +1 -1
- package/src/digitv2/index.scss +6 -1
- package/src/index.scss +17 -14
- package/src/pages/employee/projectdetailstable.scss +203 -0
- package/src/pages/employee/reverseactionbar.scss +18 -0
package/dist/index.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* @selco/installation-ui-css - 1.0.
|
|
2
|
+
* @selco/installation-ui-css - 1.0.5
|
|
3
3
|
*
|
|
4
4
|
* Copyright (c) 2025 Adithya Katuku
|
|
5
5
|
*
|
|
@@ -10878,6 +10878,9 @@ body {
|
|
|
10878
10878
|
-webkit-box-align: center;
|
|
10879
10879
|
-ms-flex-align: center;
|
|
10880
10880
|
align-items: center; }
|
|
10881
|
+
.reverse-actionbar .previous-button {
|
|
10882
|
+
margin-left: 0;
|
|
10883
|
+
width: 100%; }
|
|
10881
10884
|
|
|
10882
10885
|
@media (min-width: 640px) {
|
|
10883
10886
|
.reverse-actionbar {
|
|
@@ -10904,7 +10907,160 @@ body {
|
|
|
10904
10907
|
gap: 10px;
|
|
10905
10908
|
-webkit-box-align: center;
|
|
10906
10909
|
-ms-flex-align: center;
|
|
10907
|
-
align-items: center; }
|
|
10910
|
+
align-items: center; }
|
|
10911
|
+
.reverse-actionbar .previous-button {
|
|
10912
|
+
width: 240px; } }
|
|
10913
|
+
|
|
10914
|
+
@media (min-width: 48rem) {
|
|
10915
|
+
.reverse-actionbar .previous-button {
|
|
10916
|
+
margin-left: 4rem;
|
|
10917
|
+
width: 240px; } }
|
|
10918
|
+
|
|
10919
|
+
.project-details-table {
|
|
10920
|
+
display: -webkit-box;
|
|
10921
|
+
display: -ms-flexbox;
|
|
10922
|
+
display: flex;
|
|
10923
|
+
overflow-x: auto;
|
|
10924
|
+
overflow-y: visible;
|
|
10925
|
+
-webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
|
|
10926
|
+
box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
|
|
10927
|
+
width: 100%; }
|
|
10928
|
+
.project-details-table .table {
|
|
10929
|
+
width: 100%;
|
|
10930
|
+
min-width: -webkit-fit-content;
|
|
10931
|
+
min-width: -moz-fit-content;
|
|
10932
|
+
min-width: fit-content;
|
|
10933
|
+
border-collapse: collapse;
|
|
10934
|
+
font-family: Roboto;
|
|
10935
|
+
font-size: 14px;
|
|
10936
|
+
background-color: #fff;
|
|
10937
|
+
border: 1px solid #e0e0e0; }
|
|
10938
|
+
.project-details-table .table thead th {
|
|
10939
|
+
background-color: #eee;
|
|
10940
|
+
color: #0b4b66;
|
|
10941
|
+
font-weight: 600;
|
|
10942
|
+
text-align: left;
|
|
10943
|
+
padding: 16px 18px;
|
|
10944
|
+
font-size: 16px;
|
|
10945
|
+
line-height: 18px;
|
|
10946
|
+
position: relative; }
|
|
10947
|
+
.project-details-table .table thead th:not(:last-child):after {
|
|
10948
|
+
content: "";
|
|
10949
|
+
position: absolute;
|
|
10950
|
+
right: 0;
|
|
10951
|
+
top: 8px;
|
|
10952
|
+
bottom: 8px;
|
|
10953
|
+
width: 1px;
|
|
10954
|
+
background-color: #787878; }
|
|
10955
|
+
.project-details-table .table thead th[style*="min-width: 100px"] {
|
|
10956
|
+
text-align: center;
|
|
10957
|
+
width: 60px;
|
|
10958
|
+
min-width: 60px;
|
|
10959
|
+
padding: 12px; }
|
|
10960
|
+
.project-details-table .table tbody td {
|
|
10961
|
+
padding: 16px 18px;
|
|
10962
|
+
border-right: 1px solid #e0e0e0;
|
|
10963
|
+
border-bottom: 1px solid #e0e0e0;
|
|
10964
|
+
color: #666;
|
|
10965
|
+
font-size: 14px;
|
|
10966
|
+
line-height: 1.4; }
|
|
10967
|
+
.project-details-table .table tbody td:last-child {
|
|
10968
|
+
border-right: none; }
|
|
10969
|
+
.project-details-table .table tbody td[\:has\(input\[type\%3D\%22checkbox\%22\]\)] {
|
|
10970
|
+
text-align: center;
|
|
10971
|
+
width: 60px;
|
|
10972
|
+
min-width: 60px;
|
|
10973
|
+
padding: 12px; }
|
|
10974
|
+
.project-details-table .table tbody td:has(input[type=checkbox], .checkbox-wrap .input-emp[type=checkbox], .digit-checkbox-wrap .input-emp[type=checkbox]) {
|
|
10975
|
+
text-align: center;
|
|
10976
|
+
width: 60px;
|
|
10977
|
+
min-width: 60px;
|
|
10978
|
+
padding: 12px; }
|
|
10979
|
+
.project-details-table .table tbody tr:nth-child(2n) {
|
|
10980
|
+
background-color: #f8f9fa; }
|
|
10981
|
+
.project-details-table .table tbody tr:nth-child(odd) {
|
|
10982
|
+
background-color: #fff; }
|
|
10983
|
+
.project-details-table .table tbody tr:hover {
|
|
10984
|
+
background-color: #f0f7ff;
|
|
10985
|
+
cursor: pointer; }
|
|
10986
|
+
.project-details-table .table tbody tr td:first-child {
|
|
10987
|
+
font-weight: 500;
|
|
10988
|
+
color: #333; }
|
|
10989
|
+
.project-details-table .pagination {
|
|
10990
|
+
display: -webkit-box;
|
|
10991
|
+
display: -ms-flexbox;
|
|
10992
|
+
display: flex;
|
|
10993
|
+
-webkit-box-align: center;
|
|
10994
|
+
-ms-flex-align: center;
|
|
10995
|
+
align-items: center;
|
|
10996
|
+
-webkit-box-pack: end;
|
|
10997
|
+
-ms-flex-pack: end;
|
|
10998
|
+
justify-content: flex-end;
|
|
10999
|
+
padding: 16px 0;
|
|
11000
|
+
grid-gap: 12px;
|
|
11001
|
+
gap: 12px;
|
|
11002
|
+
color: #666;
|
|
11003
|
+
background-color: #fafafa;
|
|
11004
|
+
border-top: 1px solid #e0e0e0;
|
|
11005
|
+
margin-top: 0; }
|
|
11006
|
+
.project-details-table .pagination select {
|
|
11007
|
+
padding: 6px 12px;
|
|
11008
|
+
border: 1px solid #e0e0e0;
|
|
11009
|
+
border-radius: 10px;
|
|
11010
|
+
background-color: #fff;
|
|
11011
|
+
margin: 0 8px; }
|
|
11012
|
+
.project-details-table .pagination select:focus {
|
|
11013
|
+
outline: 2px solid #1976d2;
|
|
11014
|
+
outline-offset: -1px; }
|
|
11015
|
+
.project-details-table .pagination .cp {
|
|
11016
|
+
padding: 8px;
|
|
11017
|
+
cursor: pointer;
|
|
11018
|
+
border-radius: 10px;
|
|
11019
|
+
-webkit-transition: background-color .2s ease;
|
|
11020
|
+
transition: background-color .2s ease; }
|
|
11021
|
+
.project-details-table .pagination .cp:hover {
|
|
11022
|
+
background-color: #f0f7ff; }
|
|
11023
|
+
.project-details-table .pagination .cp:hover {
|
|
11024
|
+
background-color: #f0f0f0; }
|
|
11025
|
+
.project-details-table .actionBarWrapper {
|
|
11026
|
+
background-color: #e3f2fd;
|
|
11027
|
+
border: 1px solid #1976d2;
|
|
11028
|
+
border-radius: 10px;
|
|
11029
|
+
padding: 12px 16px;
|
|
11030
|
+
margin-top: 16px;
|
|
11031
|
+
display: -webkit-box;
|
|
11032
|
+
display: -ms-flexbox;
|
|
11033
|
+
display: flex;
|
|
11034
|
+
-webkit-box-align: center;
|
|
11035
|
+
-ms-flex-align: center;
|
|
11036
|
+
align-items: center;
|
|
11037
|
+
-webkit-box-pack: justify;
|
|
11038
|
+
-ms-flex-pack: justify;
|
|
11039
|
+
justify-content: space-between; }
|
|
11040
|
+
.project-details-table .actionBarWrapper .search-instruction-header {
|
|
11041
|
+
color: #333;
|
|
11042
|
+
font-weight: 500; }
|
|
11043
|
+
.project-details-table .toast {
|
|
11044
|
+
position: fixed;
|
|
11045
|
+
top: 20px;
|
|
11046
|
+
right: 20px;
|
|
11047
|
+
z-index: 1000;
|
|
11048
|
+
padding: 12px 16px;
|
|
11049
|
+
border-radius: 10px;
|
|
11050
|
+
background-color: #fff;
|
|
11051
|
+
-webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
|
|
11052
|
+
box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.2);
|
|
11053
|
+
border-left: 4px solid #1976d2; }
|
|
11054
|
+
.project-details-table .toast.error {
|
|
11055
|
+
border-left-color: #d32f2f; }
|
|
11056
|
+
@media (max-width: 768px) {
|
|
11057
|
+
.project-details-table .table {
|
|
11058
|
+
min-width: 800px;
|
|
11059
|
+
white-space: nowrap; }
|
|
11060
|
+
.project-details-table .table td, .project-details-table .table th {
|
|
11061
|
+
min-width: 120px; }
|
|
11062
|
+
.project-details-table .table td:first-child, .project-details-table .table th:first-child {
|
|
11063
|
+
min-width: 150px; } }
|
|
10908
11064
|
|
|
10909
11065
|
.wbh-header .header-icon-container {
|
|
10910
11066
|
cursor: pointer;
|
|
@@ -11161,6 +11317,13 @@ body {
|
|
|
11161
11317
|
.workbench-localization-add-popup .digit-popup-children-wrap {
|
|
11162
11318
|
overflow: visible !important; }
|
|
11163
11319
|
|
|
11320
|
+
.digit-bread-crumb--item .digit-bread-crumb-seperator {
|
|
11321
|
+
color: #0b0c0c; }
|
|
11322
|
+
|
|
11323
|
+
.digit-multiselectdropdown-wrap .digit-multiselectdropodwn-menuitem .digit-label.selectAll {
|
|
11324
|
+
font-size: 16px;
|
|
11325
|
+
text-decoration: underline; }
|
|
11326
|
+
|
|
11164
11327
|
.typography.text-heading-xl {
|
|
11165
11328
|
font-family: Roboto Condensed;
|
|
11166
11329
|
font-style: normal;
|
|
@@ -13665,6 +13828,10 @@ button:hover {
|
|
|
13665
13828
|
.chart-item-5 {
|
|
13666
13829
|
color: #0babde !important; }
|
|
13667
13830
|
|
|
13831
|
+
@media (max-width: 30rem) {
|
|
13832
|
+
.digit-topbar {
|
|
13833
|
+
height: 4.5rem; } }
|
|
13834
|
+
|
|
13668
13835
|
.wbh-header, .wbh-header-container {
|
|
13669
13836
|
display: -webkit-box !important;
|
|
13670
13837
|
display: -ms-flexbox !important;
|
|
@@ -14232,7 +14399,8 @@ input[type=number], .checkbox-wrap .input-emp[type=number], .digit-checkbox-wrap
|
|
|
14232
14399
|
height: 75vh; } }
|
|
14233
14400
|
|
|
14234
14401
|
.employee-app-wrapper {
|
|
14235
|
-
min-height: calc(100vh - 8em);
|
|
14402
|
+
min-height: calc(100vh - 8em);
|
|
14403
|
+
margin: 0; }
|
|
14236
14404
|
|
|
14237
14405
|
.ws-custom-wrapper .submit {
|
|
14238
14406
|
display: -webkit-box !important;
|
|
@@ -14343,36 +14511,20 @@ input[type=number], .checkbox-wrap .input-emp[type=number], .digit-checkbox-wrap
|
|
|
14343
14511
|
width: calc(100% - 5rem); }
|
|
14344
14512
|
|
|
14345
14513
|
.actionBarClass {
|
|
14346
|
-
display: -webkit-box;
|
|
14347
|
-
display: -ms-flexbox;
|
|
14348
|
-
display: flex;
|
|
14349
|
-
-webkit-box-pack: justify;
|
|
14350
|
-
-ms-flex-pack: justify;
|
|
14351
|
-
justify-content: space-between;
|
|
14352
14514
|
-webkit-box-orient: horizontal;
|
|
14353
14515
|
-webkit-box-direction: reverse;
|
|
14354
14516
|
-ms-flex-direction: row-reverse;
|
|
14355
14517
|
flex-direction: row-reverse; }
|
|
14356
14518
|
|
|
14357
|
-
.
|
|
14358
|
-
width: 100%; }
|
|
14359
|
-
|
|
14360
|
-
@media (min-width: 640px) {
|
|
14361
|
-
.previous-button {
|
|
14362
|
-
width: 240px; } }
|
|
14363
|
-
|
|
14364
|
-
@media (min-width: 48rem) {
|
|
14365
|
-
.previous-button {
|
|
14366
|
-
margin-left: 4rem;
|
|
14367
|
-
width: 240px; } }
|
|
14368
|
-
|
|
14369
|
-
.view-composer-header-section {
|
|
14519
|
+
.actionBarClass, .view-composer-header-section {
|
|
14370
14520
|
display: -webkit-box;
|
|
14371
14521
|
display: -ms-flexbox;
|
|
14372
14522
|
display: flex;
|
|
14373
14523
|
-webkit-box-pack: justify;
|
|
14374
14524
|
-ms-flex-pack: justify;
|
|
14375
|
-
justify-content: space-between;
|
|
14525
|
+
justify-content: space-between; }
|
|
14526
|
+
|
|
14527
|
+
.view-composer-header-section {
|
|
14376
14528
|
-webkit-box-align: center;
|
|
14377
14529
|
-ms-flex-align: center;
|
|
14378
14530
|
align-items: center; }
|
|
@@ -14406,3 +14558,10 @@ input[type=number], .checkbox-wrap .input-emp[type=number], .digit-checkbox-wrap
|
|
|
14406
14558
|
|
|
14407
14559
|
.workbench-localization-add-popup .digit-popup-children-wrap {
|
|
14408
14560
|
overflow: visible !important; }
|
|
14561
|
+
|
|
14562
|
+
.digit-bread-crumb--item .digit-bread-crumb-seperator {
|
|
14563
|
+
color: #0b0c0c; }
|
|
14564
|
+
|
|
14565
|
+
.digit-multiselectdropdown-wrap .digit-multiselectdropodwn-menuitem .digit-label.selectAll {
|
|
14566
|
+
font-size: 16px;
|
|
14567
|
+
text-decoration: underline; }
|