dristi-ui-css 0.0.5-dristi-kerala.0 → 0.0.5-dristi-kerala.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/index.css +298 -5
- package/dist/index.min.css +2 -2
- package/package.json +1 -1
- package/src/orders/orders.scss +337 -4
package/dist/index.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/*!
|
|
3
|
-
* dristi-ui-css - 0.0.5-dristi-kerala.
|
|
3
|
+
* dristi-ui-css - 0.0.5-dristi-kerala.1
|
|
4
4
|
*
|
|
5
5
|
* Copyright (c) 2025 Akshay Kumar <akshay.kumar@beehyv.com>
|
|
6
6
|
*
|
|
@@ -15136,14 +15136,14 @@ body {
|
|
|
15136
15136
|
border: 1px solid #bbbbbd;
|
|
15137
15137
|
border-radius: 0 !important; }
|
|
15138
15138
|
.review-order-modal.popup-module .popup-module-main .review-order-body-main .review-order-modal-document-div {
|
|
15139
|
-
width:
|
|
15139
|
+
width: 100%;
|
|
15140
15140
|
padding: 24px; }
|
|
15141
15141
|
.review-order-modal.popup-module .popup-module-main .review-order-body-main .review-order-modal-document-div .docviewer-wrapper {
|
|
15142
|
-
|
|
15142
|
+
width: 100%;
|
|
15143
|
+
margin-top: 0 !important;
|
|
15143
15144
|
margin-bottom: auto; }
|
|
15144
15145
|
.review-order-modal.popup-module .popup-module-main .review-order-body-main .review-order-modal-document-div .docviewer-wrapper .employeeCard {
|
|
15145
|
-
margin
|
|
15146
|
-
margin-right: 5px;
|
|
15146
|
+
margin: 20px 10px 20px 20px;
|
|
15147
15147
|
border: 1px solid #bbbbbd;
|
|
15148
15148
|
border-radius: 0 !important; }
|
|
15149
15149
|
.review-order-modal.popup-module .popup-module-main .popup-module-action-bar {
|
|
@@ -15845,6 +15845,299 @@ body {
|
|
|
15845
15845
|
font-weight: 700;
|
|
15846
15846
|
color: #007e7e; }
|
|
15847
15847
|
|
|
15848
|
+
.generate-orders-v2-header {
|
|
15849
|
+
padding: 10px 24px;
|
|
15850
|
+
margin-bottom: 0 !important;
|
|
15851
|
+
border-bottom: 1px solid #e8e8e8;
|
|
15852
|
+
display: -webkit-box;
|
|
15853
|
+
display: -ms-flexbox;
|
|
15854
|
+
display: flex;
|
|
15855
|
+
-webkit-box-pack: justify;
|
|
15856
|
+
-ms-flex-pack: justify;
|
|
15857
|
+
justify-content: space-between; }
|
|
15858
|
+
.generate-orders-v2-header header {
|
|
15859
|
+
margin-bottom: 0 !important;
|
|
15860
|
+
font-size: 24px !important; }
|
|
15861
|
+
|
|
15862
|
+
.generate-orders-v2-content {
|
|
15863
|
+
display: -webkit-box;
|
|
15864
|
+
display: -ms-flexbox;
|
|
15865
|
+
display: flex;
|
|
15866
|
+
-webkit-box-orient: vertical;
|
|
15867
|
+
-webkit-box-direction: normal;
|
|
15868
|
+
-ms-flex-direction: column;
|
|
15869
|
+
flex-direction: column;
|
|
15870
|
+
height: calc(100vh - 210px);
|
|
15871
|
+
overflow-y: auto; }
|
|
15872
|
+
|
|
15873
|
+
.generate-orders-v2-columns {
|
|
15874
|
+
grid-gap: 12px;
|
|
15875
|
+
gap: 12px;
|
|
15876
|
+
background-color: #f7f5f3; }
|
|
15877
|
+
|
|
15878
|
+
.generate-orders-v2-column, .generate-orders-v2-columns {
|
|
15879
|
+
display: -webkit-box;
|
|
15880
|
+
display: -ms-flexbox;
|
|
15881
|
+
display: flex;
|
|
15882
|
+
-webkit-box-flex: 1;
|
|
15883
|
+
-ms-flex: 1;
|
|
15884
|
+
flex: 1; }
|
|
15885
|
+
|
|
15886
|
+
.generate-orders-v2-column {
|
|
15887
|
+
-webkit-box-orient: vertical;
|
|
15888
|
+
-webkit-box-direction: normal;
|
|
15889
|
+
-ms-flex-direction: column;
|
|
15890
|
+
flex-direction: column;
|
|
15891
|
+
grid-gap: 10px;
|
|
15892
|
+
gap: 10px;
|
|
15893
|
+
padding: 24px;
|
|
15894
|
+
background-color: #fff; }
|
|
15895
|
+
.generate-orders-v2-column textarea:disabled {
|
|
15896
|
+
background-color: #eee;
|
|
15897
|
+
border: 1px solid #505a5f; }
|
|
15898
|
+
.generate-orders-v2-column .order-type-dropdown {
|
|
15899
|
+
-webkit-box-align: start;
|
|
15900
|
+
-ms-flex-align: start;
|
|
15901
|
+
align-items: flex-start;
|
|
15902
|
+
font-size: 16px;
|
|
15903
|
+
font-weight: 400; }
|
|
15904
|
+
.generate-orders-v2-column .order-type-dropdown .order-type-dropdown-label {
|
|
15905
|
+
font-size: 16px !important;
|
|
15906
|
+
font-weight: 400 !important;
|
|
15907
|
+
margin-bottom: 5px; }
|
|
15908
|
+
.generate-orders-v2-column .order-type-dropdown .select-wrap {
|
|
15909
|
+
margin-bottom: 0; }
|
|
15910
|
+
.generate-orders-v2-column .order-type-dropdown .edit-button {
|
|
15911
|
+
color: #007e7e; }
|
|
15912
|
+
.generate-orders-v2-column .order-type-dropdown .delete-button, .generate-orders-v2-column .order-type-dropdown .edit-button {
|
|
15913
|
+
border: none;
|
|
15914
|
+
font-size: 16px;
|
|
15915
|
+
font-weight: 700; }
|
|
15916
|
+
.generate-orders-v2-column .order-type-dropdown .delete-button {
|
|
15917
|
+
color: #bb2c2f; }
|
|
15918
|
+
.generate-orders-v2-column .purpose-hearing-dropdown {
|
|
15919
|
+
-webkit-box-align: start;
|
|
15920
|
+
-ms-flex-align: start;
|
|
15921
|
+
align-items: flex-start;
|
|
15922
|
+
font-size: 16px;
|
|
15923
|
+
font-weight: 400;
|
|
15924
|
+
width: 75%; }
|
|
15925
|
+
.generate-orders-v2-column .purpose-hearing-dropdown .purpose-hearing-dropdown-label {
|
|
15926
|
+
font-size: 16px !important;
|
|
15927
|
+
font-weight: 400 !important;
|
|
15928
|
+
margin-bottom: 5px; }
|
|
15929
|
+
.generate-orders-v2-column .purpose-hearing-dropdown .purpose-hearing-dropdown-label.disabled {
|
|
15930
|
+
color: #bbbbbd; }
|
|
15931
|
+
.generate-orders-v2-column .case-label-field-pair .case-input-label.disabled {
|
|
15932
|
+
color: #bbbbbd; }
|
|
15933
|
+
.generate-orders-v2-column .add-new-form {
|
|
15934
|
+
font-weight: 700;
|
|
15935
|
+
font-size: 16px;
|
|
15936
|
+
padding: 12px 0; }
|
|
15937
|
+
|
|
15938
|
+
.section-header {
|
|
15939
|
+
font-size: 20px;
|
|
15940
|
+
font-weight: 700;
|
|
15941
|
+
color: #231f20; }
|
|
15942
|
+
|
|
15943
|
+
.checkbox-group {
|
|
15944
|
+
-webkit-box-orient: horizontal;
|
|
15945
|
+
-webkit-box-direction: normal;
|
|
15946
|
+
-ms-flex-direction: row;
|
|
15947
|
+
flex-direction: row;
|
|
15948
|
+
grid-gap: 34px;
|
|
15949
|
+
gap: 34px;
|
|
15950
|
+
margin-top: 16px; }
|
|
15951
|
+
|
|
15952
|
+
.checkbox-group, .checkbox-item {
|
|
15953
|
+
display: -webkit-box;
|
|
15954
|
+
display: -ms-flexbox;
|
|
15955
|
+
display: flex; }
|
|
15956
|
+
|
|
15957
|
+
.checkbox-item {
|
|
15958
|
+
-webkit-box-align: center;
|
|
15959
|
+
-ms-flex-align: center;
|
|
15960
|
+
align-items: center;
|
|
15961
|
+
grid-gap: 8px;
|
|
15962
|
+
gap: 8px; }
|
|
15963
|
+
.checkbox-item .custom-checkbox, .checkbox-item .checkbox-wrap .custom-checkbox-emp, .checkbox-wrap .checkbox-item .custom-checkbox-emp {
|
|
15964
|
+
background-color: #fff;
|
|
15965
|
+
border: 1px solid #000; }
|
|
15966
|
+
.checkbox-item .custom-checkbox:checked, .checkbox-item .checkbox-wrap .custom-checkbox-emp:checked, .checkbox-wrap .checkbox-item .custom-checkbox-emp:checked {
|
|
15967
|
+
background-color: #fff;
|
|
15968
|
+
border: 2px solid #007e7e; }
|
|
15969
|
+
.checkbox-item .custom-checkbox:checked:after, .checkbox-item .checkbox-wrap .custom-checkbox-emp:checked:after, .checkbox-wrap .checkbox-item .custom-checkbox-emp:checked:after {
|
|
15970
|
+
content: "✔";
|
|
15971
|
+
font-size: 16px;
|
|
15972
|
+
color: #007e7e;
|
|
15973
|
+
position: absolute;
|
|
15974
|
+
top: 50%;
|
|
15975
|
+
left: 50%;
|
|
15976
|
+
-webkit-transform: translate(-50%, -50%);
|
|
15977
|
+
transform: translate(-50%, -50%);
|
|
15978
|
+
font-weight: 400; }
|
|
15979
|
+
.checkbox-item .custom-checkbox:disabled, .checkbox-item .checkbox-wrap .custom-checkbox-emp:disabled, .checkbox-wrap .checkbox-item .custom-checkbox-emp:disabled {
|
|
15980
|
+
border: 1px solid #bbbbbd;
|
|
15981
|
+
cursor: not-allowed; }
|
|
15982
|
+
.checkbox-item .custom-checkbox:disabled:checked:after, .checkbox-item .checkbox-wrap .custom-checkbox-emp:disabled:checked:after, .checkbox-wrap .checkbox-item .custom-checkbox-emp:disabled:checked:after {
|
|
15983
|
+
color: #bbbbbd; }
|
|
15984
|
+
|
|
15985
|
+
.checkbox-item input[type=checkbox], .checkbox-item .checkbox-wrap .input-emp[type=checkbox], .checkbox-wrap .checkbox-item .input-emp[type=checkbox], .checkbox-item .digit-checkbox-wrap .input-emp[type=checkbox], .digit-checkbox-wrap .checkbox-item .input-emp[type=checkbox] {
|
|
15986
|
+
width: 20px;
|
|
15987
|
+
height: 20px; }
|
|
15988
|
+
|
|
15989
|
+
.custom-checkbox:disabled, .checkbox-wrap .custom-checkbox-emp:disabled {
|
|
15990
|
+
border-color: #bbbbbd;
|
|
15991
|
+
cursor: not-allowed; }
|
|
15992
|
+
|
|
15993
|
+
.custom-checkbox:disabled + label, .checkbox-wrap .custom-checkbox-emp:disabled + label {
|
|
15994
|
+
color: #bbbbbd;
|
|
15995
|
+
cursor: not-allowed; }
|
|
15996
|
+
|
|
15997
|
+
.checkbox-item label {
|
|
15998
|
+
font-size: 16px;
|
|
15999
|
+
font-weight: 400; }
|
|
16000
|
+
|
|
16001
|
+
.add-item-button {
|
|
16002
|
+
background: none;
|
|
16003
|
+
border: none;
|
|
16004
|
+
color: #0b58d6;
|
|
16005
|
+
font-size: 14px;
|
|
16006
|
+
font-weight: 500;
|
|
16007
|
+
cursor: pointer;
|
|
16008
|
+
padding: 0;
|
|
16009
|
+
text-align: left; }
|
|
16010
|
+
|
|
16011
|
+
.edit-send-back-modal {
|
|
16012
|
+
width: 550px;
|
|
16013
|
+
border-radius: 4px; }
|
|
16014
|
+
.edit-send-back-modal .header-wrap {
|
|
16015
|
+
height: 55px; }
|
|
16016
|
+
.edit-send-back-modal .popup-module-main {
|
|
16017
|
+
padding: 0 !important; }
|
|
16018
|
+
.edit-send-back-modal .popup-module-main .popup-module-content {
|
|
16019
|
+
margin: 0 !important;
|
|
16020
|
+
padding: 24px !important;
|
|
16021
|
+
border-bottom: 1px solid #d3d3d3;
|
|
16022
|
+
color: #3d3c3c;
|
|
16023
|
+
font-size: 16px; }
|
|
16024
|
+
.edit-send-back-modal .popup-module-main .popup-module-action-bar {
|
|
16025
|
+
padding: 16px; }
|
|
16026
|
+
.edit-send-back-modal .popup-module-main .popup-module-action-bar .selector-button-border, .edit-send-back-modal .popup-module-main .popup-module-action-bar .selector-button-primary {
|
|
16027
|
+
height: 2.3rem; }
|
|
16028
|
+
|
|
16029
|
+
.add-order-type-modal {
|
|
16030
|
+
width: 70%;
|
|
16031
|
+
max-height: 90vh;
|
|
16032
|
+
border-radius: 6px;
|
|
16033
|
+
background: #fff;
|
|
16034
|
+
display: -webkit-box;
|
|
16035
|
+
display: -ms-flexbox;
|
|
16036
|
+
display: flex;
|
|
16037
|
+
-webkit-box-orient: vertical;
|
|
16038
|
+
-webkit-box-direction: normal;
|
|
16039
|
+
-ms-flex-direction: column;
|
|
16040
|
+
flex-direction: column; }
|
|
16041
|
+
.add-order-type-modal .popup-module-main {
|
|
16042
|
+
padding: 0 !important;
|
|
16043
|
+
overflow-y: auto;
|
|
16044
|
+
max-height: calc(90vh - 120px); }
|
|
16045
|
+
.add-order-type-modal .action-bar-wrap.order-type-action, .add-order-type-modal .workbench .workbench-create-form div.order-type-action.action-bar-wrap, .workbench .workbench-create-form .add-order-type-modal div.order-type-action.action-bar-wrap {
|
|
16046
|
+
display: -webkit-box;
|
|
16047
|
+
display: -ms-flexbox;
|
|
16048
|
+
display: flex;
|
|
16049
|
+
grid-gap: 16px;
|
|
16050
|
+
gap: 16px;
|
|
16051
|
+
border-top: 1px solid #e8e8e8;
|
|
16052
|
+
background: #fff;
|
|
16053
|
+
position: sticky;
|
|
16054
|
+
bottom: 0;
|
|
16055
|
+
padding: 16px 24px !important;
|
|
16056
|
+
margin-top: auto;
|
|
16057
|
+
z-index: 10;
|
|
16058
|
+
border-radius: 4px; }
|
|
16059
|
+
|
|
16060
|
+
.order-type-modal {
|
|
16061
|
+
-webkit-box-orient: vertical !important;
|
|
16062
|
+
-webkit-box-direction: normal !important;
|
|
16063
|
+
-ms-flex-direction: column !important;
|
|
16064
|
+
flex-direction: column !important;
|
|
16065
|
+
grid-gap: 0 !important;
|
|
16066
|
+
gap: 0 !important;
|
|
16067
|
+
position: relative;
|
|
16068
|
+
height: 100%; }
|
|
16069
|
+
.order-type-modal .new-order {
|
|
16070
|
+
padding: 24px !important; }
|
|
16071
|
+
|
|
16072
|
+
.order-type-form-modal {
|
|
16073
|
+
width: 100% !important;
|
|
16074
|
+
margin-bottom: 0 !important;
|
|
16075
|
+
padding: 0 !important; }
|
|
16076
|
+
.order-type-form-modal .label-field-pair .field .field-container .component-in-front {
|
|
16077
|
+
border-top: 1px solid #000 !important;
|
|
16078
|
+
border-bottom: 1px solid #000 !important;
|
|
16079
|
+
border-left: 1px solid #000 !important;
|
|
16080
|
+
margin-top: 0 !important; }
|
|
16081
|
+
.order-type-form-modal .label-field-pair .field .options-card {
|
|
16082
|
+
z-index: 100;
|
|
16083
|
+
max-height: 300px;
|
|
16084
|
+
overflow-y: auto; }
|
|
16085
|
+
|
|
16086
|
+
.order-task-container {
|
|
16087
|
+
max-height: 172px;
|
|
16088
|
+
overflow-y: auto;
|
|
16089
|
+
padding-right: 5px;
|
|
16090
|
+
margin-bottom: 20px; }
|
|
16091
|
+
.order-task-container::-webkit-scrollbar {
|
|
16092
|
+
width: 6px; }
|
|
16093
|
+
.order-task-container::-webkit-scrollbar-thumb {
|
|
16094
|
+
background: #ccc;
|
|
16095
|
+
border-radius: 3px; }
|
|
16096
|
+
|
|
16097
|
+
.order-task-row {
|
|
16098
|
+
display: -webkit-box;
|
|
16099
|
+
display: -ms-flexbox;
|
|
16100
|
+
display: flex;
|
|
16101
|
+
-webkit-box-pack: justify;
|
|
16102
|
+
-ms-flex-pack: justify;
|
|
16103
|
+
justify-content: space-between;
|
|
16104
|
+
-webkit-box-align: center;
|
|
16105
|
+
-ms-flex-align: center;
|
|
16106
|
+
align-items: center;
|
|
16107
|
+
padding: 12px;
|
|
16108
|
+
min-height: 50px;
|
|
16109
|
+
background-color: #fff6e8;
|
|
16110
|
+
border-bottom: 1px solid #eee; }
|
|
16111
|
+
.order-task-row:last-child {
|
|
16112
|
+
border-bottom: none; }
|
|
16113
|
+
|
|
16114
|
+
.order-task-title {
|
|
16115
|
+
font-weight: 500;
|
|
16116
|
+
font-size: 16px; }
|
|
16117
|
+
|
|
16118
|
+
.order-task-actions {
|
|
16119
|
+
display: -webkit-box;
|
|
16120
|
+
display: -ms-flexbox;
|
|
16121
|
+
display: flex;
|
|
16122
|
+
grid-gap: 10px;
|
|
16123
|
+
gap: 10px; }
|
|
16124
|
+
.order-task-actions button {
|
|
16125
|
+
border: none;
|
|
16126
|
+
cursor: pointer;
|
|
16127
|
+
padding: 8px 16px;
|
|
16128
|
+
height: 30px;
|
|
16129
|
+
font-weight: 700;
|
|
16130
|
+
font-size: 14px; }
|
|
16131
|
+
.order-task-actions button.btn-view {
|
|
16132
|
+
background: transparent;
|
|
16133
|
+
color: #4c410b; }
|
|
16134
|
+
.order-task-actions button.btn-reject {
|
|
16135
|
+
background: #d32f2f;
|
|
16136
|
+
color: #fff; }
|
|
16137
|
+
.order-task-actions button.btn-accept {
|
|
16138
|
+
background: #00796b;
|
|
16139
|
+
color: #fff; }
|
|
16140
|
+
|
|
15848
16141
|
.review-submission-appl-body-main .application-details {
|
|
15849
16142
|
width: 100%; }
|
|
15850
16143
|
|