tango-app-ui-manage-tickets 3.7.0-beta.58 → 3.7.0-beta.60
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/.eslintrc.json +37 -0
- package/ng-package.json +7 -0
- package/package.json +12 -25
- package/src/lib/components/add-csm-modal/add-csm-modal.component.html +32 -0
- package/src/lib/components/add-csm-modal/add-csm-modal.component.scss +14 -0
- package/src/lib/components/add-csm-modal/add-csm-modal.component.spec.ts +23 -0
- package/src/lib/components/add-csm-modal/add-csm-modal.component.ts +94 -0
- package/src/lib/components/audit-log/audit-log.component.html +1 -0
- package/src/lib/components/audit-log/audit-log.component.scss +0 -0
- package/src/lib/components/audit-log/audit-log.component.spec.ts +23 -0
- package/src/lib/components/audit-log/audit-log.component.ts +10 -0
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.html +234 -0
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.scss +186 -0
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.spec.ts +23 -0
- package/src/lib/components/audit-mapping-list/audit-mapping-list.component.ts +520 -0
- package/src/lib/components/audit-metrics/audit-metrics.component.html +345 -0
- package/src/lib/components/audit-metrics/audit-metrics.component.scss +34 -0
- package/src/lib/components/audit-metrics/audit-metrics.component.spec.ts +23 -0
- package/src/lib/components/audit-metrics/audit-metrics.component.ts +292 -0
- package/src/lib/components/audit-report-popup/audit-report-popup.component.html +111 -0
- package/src/lib/components/audit-report-popup/audit-report-popup.component.scss +101 -0
- package/src/lib/components/audit-report-popup/audit-report-popup.component.spec.ts +23 -0
- package/src/lib/components/audit-report-popup/audit-report-popup.component.ts +397 -0
- package/src/lib/components/audit-retag/audit-retag.component.html +129 -0
- package/src/lib/components/audit-retag/audit-retag.component.scss +146 -0
- package/src/lib/components/audit-retag/audit-retag.component.spec.ts +23 -0
- package/src/lib/components/audit-retag/audit-retag.component.ts +489 -0
- package/src/lib/components/comment-model/comment-model.component.html +24 -0
- package/src/lib/components/comment-model/comment-model.component.scss +20 -0
- package/src/lib/components/comment-model/comment-model.component.spec.ts +23 -0
- package/src/lib/components/comment-model/comment-model.component.ts +53 -0
- package/src/lib/components/count/count.component.html +54 -0
- package/src/lib/components/count/count.component.scss +14 -0
- package/src/lib/components/count/count.component.spec.ts +23 -0
- package/src/lib/components/count/count.component.ts +82 -0
- package/src/lib/components/custom-select/custom-select.component.html +134 -0
- package/src/lib/components/custom-select/custom-select.component.scss +204 -0
- package/src/lib/components/custom-select/custom-select.component.spec.ts +23 -0
- package/src/lib/components/custom-select/custom-select.component.ts +189 -0
- package/src/lib/components/filter-options/filter-options.component.html +51 -0
- package/src/lib/components/filter-options/filter-options.component.scss +102 -0
- package/src/lib/components/filter-options/filter-options.component.spec.ts +23 -0
- package/src/lib/components/filter-options/filter-options.component.ts +38 -0
- package/src/lib/components/footfall-dic/footfall-dic.component.html +1275 -0
- package/src/lib/components/footfall-dic/footfall-dic.component.scss +273 -0
- package/src/lib/components/footfall-dic/footfall-dic.component.spec.ts +23 -0
- package/src/lib/components/footfall-dic/footfall-dic.component.ts +1206 -0
- package/src/lib/components/footfall-dicview/footfall-dicview.component.html +1136 -0
- package/src/lib/components/footfall-dicview/footfall-dicview.component.scss +416 -0
- package/src/lib/components/footfall-dicview/footfall-dicview.component.spec.ts +23 -0
- package/src/lib/components/footfall-dicview/footfall-dicview.component.ts +1168 -0
- package/src/lib/components/footfall-popup/footfall-popup.component.html +61 -0
- package/src/lib/components/footfall-popup/footfall-popup.component.scss +20 -0
- package/src/lib/components/footfall-popup/footfall-popup.component.spec.ts +23 -0
- package/src/lib/components/footfall-popup/footfall-popup.component.ts +12 -0
- package/src/lib/components/group-select/group-select.component.html +44 -0
- package/src/lib/components/group-select/group-select.component.scss +144 -0
- package/src/lib/components/group-select/group-select.component.spec.ts +23 -0
- package/src/lib/components/group-select/group-select.component.ts +145 -0
- package/src/lib/components/re-trigger/re-trigger.component.html +53 -0
- package/src/lib/components/re-trigger/re-trigger.component.scss +16 -0
- package/src/lib/components/re-trigger/re-trigger.component.spec.ts +23 -0
- package/src/lib/components/re-trigger/re-trigger.component.ts +96 -0
- package/src/lib/components/reactive-select/reactive-select.component.html +18 -0
- package/src/lib/components/reactive-select/reactive-select.component.scss +52 -0
- package/src/lib/components/reactive-select/reactive-select.component.spec.ts +23 -0
- package/src/lib/components/reactive-select/reactive-select.component.ts +104 -0
- package/src/lib/components/remove-audit/remove-audit.component.html +38 -0
- package/src/lib/components/remove-audit/remove-audit.component.scss +27 -0
- package/src/lib/components/remove-audit/remove-audit.component.spec.ts +23 -0
- package/src/lib/components/remove-audit/remove-audit.component.ts +81 -0
- package/src/lib/components/start-audit/start-audit.component.html +174 -0
- package/src/lib/components/start-audit/start-audit.component.scss +185 -0
- package/src/lib/components/start-audit/start-audit.component.spec.ts +23 -0
- package/src/lib/components/start-audit/start-audit.component.ts +761 -0
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.html +43 -0
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.scss +35 -0
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.spec.ts +23 -0
- package/src/lib/components/tango-manage-tickets/tango-manage-tickets.component.ts +118 -0
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.html +386 -0
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.scss +87 -0
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.spec.ts +23 -0
- package/src/lib/components/ticket-filter-panel/ticket-filter-panel.component.ts +494 -0
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.html +4743 -0
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.scss +1208 -0
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.spec.ts +23 -0
- package/src/lib/components/ticket-footfall-new/ticket-footfall-new.component.ts +3351 -0
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.html +100 -0
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.scss +34 -0
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.spec.ts +23 -0
- package/src/lib/components/ticketclosepopup/ticketclosepopup.component.ts +48 -0
- package/src/lib/components/tickets/tickets.component.html +451 -0
- package/src/lib/components/tickets/tickets.component.scss +131 -0
- package/src/lib/components/tickets/tickets.component.spec.ts +23 -0
- package/src/lib/components/tickets/tickets.component.ts +809 -0
- package/src/lib/components/viewcategory/viewcategory.component.html +38 -0
- package/src/lib/components/viewcategory/viewcategory.component.scss +29 -0
- package/src/lib/components/viewcategory/viewcategory.component.spec.ts +23 -0
- package/src/lib/components/viewcategory/viewcategory.component.ts +79 -0
- package/src/lib/services/audit.service.spec.ts +16 -0
- package/src/lib/services/audit.service.ts +98 -0
- package/src/lib/services/excel.service.ts +48 -0
- package/src/lib/services/ticket.service.spec.ts +16 -0
- package/src/lib/services/ticket.service.ts +501 -0
- package/src/lib/services/timer.service.spec.ts +16 -0
- package/src/lib/services/timer.service.ts +92 -0
- package/src/lib/tango-manage-tickets-routing.module.ts +37 -0
- package/src/lib/tango-manage-tickets.module.ts +68 -0
- package/{public-api.d.ts → src/public-api.ts} +8 -2
- package/tsconfig.lib.json +14 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +14 -0
- package/esm2022/lib/components/add-csm-modal/add-csm-modal.component.mjs +0 -98
- package/esm2022/lib/components/audit-log/audit-log.component.mjs +0 -11
- package/esm2022/lib/components/audit-mapping-list/audit-mapping-list.component.mjs +0 -486
- package/esm2022/lib/components/audit-metrics/audit-metrics.component.mjs +0 -298
- package/esm2022/lib/components/audit-report-popup/audit-report-popup.component.mjs +0 -389
- package/esm2022/lib/components/audit-retag/audit-retag.component.mjs +0 -470
- package/esm2022/lib/components/comment-model/comment-model.component.mjs +0 -58
- package/esm2022/lib/components/count/count.component.mjs +0 -89
- package/esm2022/lib/components/custom-select/custom-select.component.mjs +0 -187
- package/esm2022/lib/components/filter-options/filter-options.component.mjs +0 -41
- package/esm2022/lib/components/footfall-dic/footfall-dic.component.mjs +0 -1061
- package/esm2022/lib/components/footfall-dicview/footfall-dicview.component.mjs +0 -1014
- package/esm2022/lib/components/footfall-popup/footfall-popup.component.mjs +0 -15
- package/esm2022/lib/components/group-select/group-select.component.mjs +0 -155
- package/esm2022/lib/components/re-trigger/re-trigger.component.mjs +0 -96
- package/esm2022/lib/components/reactive-select/reactive-select.component.mjs +0 -108
- package/esm2022/lib/components/remove-audit/remove-audit.component.mjs +0 -81
- package/esm2022/lib/components/start-audit/start-audit.component.mjs +0 -761
- package/esm2022/lib/components/tango-manage-tickets/tango-manage-tickets.component.mjs +0 -131
- package/esm2022/lib/components/ticket-filter-panel/ticket-filter-panel.component.mjs +0 -435
- package/esm2022/lib/components/ticket-footfall-new/ticket-footfall-new.component.mjs +0 -2673
- package/esm2022/lib/components/ticketclosepopup/ticketclosepopup.component.mjs +0 -43
- package/esm2022/lib/components/tickets/tickets.component.mjs +0 -847
- package/esm2022/lib/components/viewcategory/viewcategory.component.mjs +0 -89
- package/esm2022/lib/services/audit.service.mjs +0 -88
- package/esm2022/lib/services/excel.service.mjs +0 -45
- package/esm2022/lib/services/ticket.service.mjs +0 -314
- package/esm2022/lib/services/timer.service.mjs +0 -84
- package/esm2022/lib/tango-manage-tickets-routing.module.mjs +0 -44
- package/esm2022/lib/tango-manage-tickets.module.mjs +0 -109
- package/esm2022/public-api.mjs +0 -6
- package/esm2022/tango-app-ui-manage-tickets.mjs +0 -5
- package/fesm2022/tango-app-ui-manage-tickets.mjs +0 -10083
- package/fesm2022/tango-app-ui-manage-tickets.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/components/add-csm-modal/add-csm-modal.component.d.ts +0 -30
- package/lib/components/audit-log/audit-log.component.d.ts +0 -5
- package/lib/components/audit-mapping-list/audit-mapping-list.component.d.ts +0 -73
- package/lib/components/audit-metrics/audit-metrics.component.d.ts +0 -59
- package/lib/components/audit-report-popup/audit-report-popup.component.d.ts +0 -52
- package/lib/components/audit-retag/audit-retag.component.d.ts +0 -59
- package/lib/components/comment-model/comment-model.component.d.ts +0 -17
- package/lib/components/count/count.component.d.ts +0 -23
- package/lib/components/custom-select/custom-select.component.d.ts +0 -35
- package/lib/components/filter-options/filter-options.component.d.ts +0 -15
- package/lib/components/footfall-dic/footfall-dic.component.d.ts +0 -143
- package/lib/components/footfall-dicview/footfall-dicview.component.d.ts +0 -132
- package/lib/components/footfall-popup/footfall-popup.component.d.ts +0 -8
- package/lib/components/group-select/group-select.component.d.ts +0 -33
- package/lib/components/re-trigger/re-trigger.component.d.ts +0 -32
- package/lib/components/reactive-select/reactive-select.component.d.ts +0 -32
- package/lib/components/remove-audit/remove-audit.component.d.ts +0 -16
- package/lib/components/start-audit/start-audit.component.d.ts +0 -86
- package/lib/components/tango-manage-tickets/tango-manage-tickets.component.d.ts +0 -28
- package/lib/components/ticket-filter-panel/ticket-filter-panel.component.d.ts +0 -79
- package/lib/components/ticket-footfall-new/ticket-footfall-new.component.d.ts +0 -286
- package/lib/components/ticketclosepopup/ticketclosepopup.component.d.ts +0 -15
- package/lib/components/tickets/tickets.component.d.ts +0 -88
- package/lib/components/viewcategory/viewcategory.component.d.ts +0 -16
- package/lib/services/audit.service.d.ts +0 -36
- package/lib/services/excel.service.d.ts +0 -10
- package/lib/services/ticket.service.d.ts +0 -85
- package/lib/services/timer.service.d.ts +0 -22
- package/lib/tango-manage-tickets-routing.module.d.ts +0 -7
- package/lib/tango-manage-tickets.module.d.ts +0 -38
|
@@ -0,0 +1,1208 @@
|
|
|
1
|
+
.card-header,
|
|
2
|
+
.header {
|
|
3
|
+
color: var(--Gray-900, #101828);
|
|
4
|
+
font-size: 20px !important;
|
|
5
|
+
font-style: normal;
|
|
6
|
+
font-weight: 700;
|
|
7
|
+
line-height: 27px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.sub-header {
|
|
11
|
+
color: var(--Gray-700, #344054);
|
|
12
|
+
font-size: 14px !important;
|
|
13
|
+
font-style: normal;
|
|
14
|
+
font-weight: 600;
|
|
15
|
+
line-height: 20px;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.ellipse1 {
|
|
19
|
+
border-radius: 6px;
|
|
20
|
+
border-bottom: 2px solid var(--Gray-200, #EAECF0);
|
|
21
|
+
background: radial-gradient(206.89% 107.47% at 16.16% 32.77%, rgba(255, 255, 255, 0.40) 0%, rgba(69, 187, 254, 0.20) 100%), #F2F4F7;
|
|
22
|
+
box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.card-title-foot {
|
|
26
|
+
color: var(--Gray-800, #1D2939) !important;
|
|
27
|
+
font-size: 18px;
|
|
28
|
+
font-weight: 600;
|
|
29
|
+
line-height: 28px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.card-title-label {
|
|
33
|
+
color: var(--Gray-800, #1D2939) !important;
|
|
34
|
+
font-size: 16px;
|
|
35
|
+
font-weight: 600;
|
|
36
|
+
line-height: 28px;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.card-title-value {
|
|
40
|
+
color: var(--Gray-800, #1D2939) !important;
|
|
41
|
+
font-size: 16px;
|
|
42
|
+
font-weight: 400;
|
|
43
|
+
line-height: 28px;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
input[type='checkbox'] {
|
|
47
|
+
width: 16px !important;
|
|
48
|
+
height: 16px !important;
|
|
49
|
+
margin: -2px 5px -2px;
|
|
50
|
+
border-radius: 4px !important;
|
|
51
|
+
-webkit-appearance: none;
|
|
52
|
+
-moz-appearance: none;
|
|
53
|
+
-o-appearance: none;
|
|
54
|
+
appearance: none;
|
|
55
|
+
outline: 1px solid var(--gray-600, #D0D5DD) !important;
|
|
56
|
+
box-shadow: none;
|
|
57
|
+
font-size: 0.5em;
|
|
58
|
+
text-align: center;
|
|
59
|
+
line-height: 1em;
|
|
60
|
+
background: white;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
input[type='checkbox'] {
|
|
64
|
+
outline: 1px solid var(--primary-600, #00A3FF) !important;
|
|
65
|
+
background-color: var(--primary-50, #EAF8FF);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
input[type='checkbox']:checked:after {
|
|
69
|
+
content: '';
|
|
70
|
+
transform: rotate(45deg);
|
|
71
|
+
border-bottom: 2px solid #00A3FF;
|
|
72
|
+
border-right: 2px solid #00A3FF;
|
|
73
|
+
display: inline-block;
|
|
74
|
+
width: 0.5em;
|
|
75
|
+
padding-left: 3px;
|
|
76
|
+
padding-top: 10px;
|
|
77
|
+
padding-right: 0px;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
.rotate {
|
|
81
|
+
rotate: 180deg;
|
|
82
|
+
transition: 1s;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.border-selectall {
|
|
86
|
+
border-radius: 6px;
|
|
87
|
+
border-bottom: 1px solid var(--Gray-200, #EAECF0);
|
|
88
|
+
background: #F9FAFB;
|
|
89
|
+
padding: 8px 12px;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
.border-selectall1 {
|
|
93
|
+
border-radius: 6px !important;
|
|
94
|
+
background: var(--White, #FFF) !important;
|
|
95
|
+
padding: 8px 2px;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.border-totalfootfall {
|
|
99
|
+
border-radius: 12px;
|
|
100
|
+
padding: 4px;
|
|
101
|
+
border: 1px solid var(--Gray-300, #D0D5DD);
|
|
102
|
+
background: var(--White, #FFF);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.vl {
|
|
106
|
+
border-left: 2px solid #000;
|
|
107
|
+
height: 50px;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.duplicate-head {
|
|
111
|
+
color: var(--Gray-700, #344054);
|
|
112
|
+
font-size: 16px;
|
|
113
|
+
font-weight: 600;
|
|
114
|
+
line-height: 20px;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.img-border {
|
|
118
|
+
border-radius: 5px !important;
|
|
119
|
+
border: 2px solid var(--Gray-300, #D0D5DD);
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.desc-title {
|
|
123
|
+
color: var(--Gray-900, #101828);
|
|
124
|
+
font-size: 12px;
|
|
125
|
+
font-weight: 500;
|
|
126
|
+
line-height: 20px;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.desc-value {
|
|
130
|
+
color: var(--Gray-900, #475467);
|
|
131
|
+
font-size: 10px;
|
|
132
|
+
font-weight: 500;
|
|
133
|
+
line-height: 10px;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.img-border {
|
|
137
|
+
overflow: hidden;
|
|
138
|
+
position: relative;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.btn-resize {
|
|
142
|
+
font-size: 13px !important;
|
|
143
|
+
height: 29px !important;
|
|
144
|
+
line-height: 11px !important;
|
|
145
|
+
padding: 1px !important;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.absolute {
|
|
149
|
+
top: 5px;
|
|
150
|
+
right: 5px;
|
|
151
|
+
z-index: 2;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.absolute1 {
|
|
155
|
+
top: 5px;
|
|
156
|
+
left: 8px;
|
|
157
|
+
z-index: 2;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.img-src {
|
|
161
|
+
width: 25%;
|
|
162
|
+
height: 20%
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.backButtonright {
|
|
166
|
+
border-radius: 1000px !important;
|
|
167
|
+
background: var(--text-primary, #FFF) !important;
|
|
168
|
+
padding: 12px !important;
|
|
169
|
+
box-shadow: 0px 12px 16px -4px rgba(16, 24, 40, 0.08), 0px 4px 6px -2px rgba(16, 24, 40, 0.03) !important;
|
|
170
|
+
box-shadow: 0px 8.727px 11.636px -2.909px rgba(16, 24, 40, 0.08), 0px 2.909px 4.364px -1.455px rgba(16, 24, 40, 0.03) !important;
|
|
171
|
+
position: absolute;
|
|
172
|
+
top: 30px;
|
|
173
|
+
right: -10px;
|
|
174
|
+
z-index: 0;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.backButtonleft {
|
|
178
|
+
border-radius: 1000px !important;
|
|
179
|
+
background: #FFF;
|
|
180
|
+
padding: 14px !important;
|
|
181
|
+
border: var(--Gray-300, #D0D5DD);
|
|
182
|
+
box-shadow: 0px 8.727px 11.636px -2.909px rgba(16, 24, 40, 0.08), 0px 2.909px 4.364px -1.455px rgba(16, 24, 40, 0.03);
|
|
183
|
+
position: absolute;
|
|
184
|
+
top: 30px;
|
|
185
|
+
left: -20px;
|
|
186
|
+
z-index: 5;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
.select-wrapper {
|
|
190
|
+
position: relative;
|
|
191
|
+
display: inline-block;
|
|
192
|
+
width: 100%;
|
|
193
|
+
/* Ensure it takes the same width as select */
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.placeholder-overlay {
|
|
197
|
+
position: absolute;
|
|
198
|
+
color: var(--Gray-500, #667085);
|
|
199
|
+
font-family: "Inter";
|
|
200
|
+
font-size: 16px !important;
|
|
201
|
+
font-style: normal;
|
|
202
|
+
font-weight: 400;
|
|
203
|
+
top: 10px;
|
|
204
|
+
/* Adjust to align text with select component */
|
|
205
|
+
left: 15px;
|
|
206
|
+
/* Adjust for horizontal alignment */
|
|
207
|
+
pointer-events: none;
|
|
208
|
+
/* Allows interaction with select even if overlay is visible */
|
|
209
|
+
font-size: 1.1rem;
|
|
210
|
+
z-index: 1;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.card-title {
|
|
214
|
+
color: var(--Black, #101828) !important;
|
|
215
|
+
font-size: 20px !important;
|
|
216
|
+
font-weight: 700 !important;
|
|
217
|
+
line-height: 30px;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.card-title-sub-header {
|
|
221
|
+
color: var(--Black, #101828);
|
|
222
|
+
font-size: 14px;
|
|
223
|
+
font-weight: 500;
|
|
224
|
+
line-height: 30px;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.separator.separator-dashed {
|
|
228
|
+
border-bottom-style: double !important;
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
.border-1 {
|
|
232
|
+
border-radius: 4px !important;
|
|
233
|
+
border: 1px solid var(--Gray-300, #D0D5DD) !important;
|
|
234
|
+
// box-shadow: 0 0 0 2.291px #475467 !important;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
.store-item {
|
|
238
|
+
display: flex;
|
|
239
|
+
justify-content: space-between;
|
|
240
|
+
align-items: center;
|
|
241
|
+
padding: 8px 12px;
|
|
242
|
+
border-radius: 8px;
|
|
243
|
+
transition: background-color 0.3s ease;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.store-item-active {
|
|
247
|
+
background: #EAF8FF;
|
|
248
|
+
/* Light blue for active */
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.left {
|
|
252
|
+
display: flex;
|
|
253
|
+
align-items: center;
|
|
254
|
+
gap: 8px;
|
|
255
|
+
overflow: hidden;
|
|
256
|
+
color: var(--Gray-700, #344054);
|
|
257
|
+
text-overflow: ellipsis;
|
|
258
|
+
font-size: 14px;
|
|
259
|
+
font-style: normal;
|
|
260
|
+
font-weight: 400;
|
|
261
|
+
line-height: 24px;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.left .active-text {
|
|
265
|
+
overflow: hidden;
|
|
266
|
+
color: var(--Primary-700, #EAF8FF);
|
|
267
|
+
font-size: 14px;
|
|
268
|
+
font-style: normal;
|
|
269
|
+
font-weight: 400;
|
|
270
|
+
line-height: 24px;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
.badge-active {
|
|
275
|
+
border-radius: 16px;
|
|
276
|
+
background: var(--Primary-50, #EAF8FF);
|
|
277
|
+
color: var(--Primary-700, #009BF3);
|
|
278
|
+
text-align: center;
|
|
279
|
+
font-size: 12px;
|
|
280
|
+
font-style: normal;
|
|
281
|
+
font-weight: 500;
|
|
282
|
+
line-height: 20px;
|
|
283
|
+
mix-blend-mode: multiply;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
.badge-normal {
|
|
287
|
+
color: var(--Gray-700, #344054);
|
|
288
|
+
text-align: center;
|
|
289
|
+
font-size: 12px;
|
|
290
|
+
font-style: normal;
|
|
291
|
+
font-weight: 500;
|
|
292
|
+
line-height: 20px;
|
|
293
|
+
|
|
294
|
+
border-radius: 16px;
|
|
295
|
+
background: var(--Gray-100, #F2F4F7);
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.bg-light-primary {
|
|
299
|
+
background: #F6FCFF !important;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
.card-layer {
|
|
303
|
+
gap: 16px !important;
|
|
304
|
+
opacity: 1 !important;
|
|
305
|
+
padding: 16px !important;
|
|
306
|
+
border-radius: 16px !important;
|
|
307
|
+
border-width: 1px !important;
|
|
308
|
+
background: #FFFFFF;
|
|
309
|
+
border: 1px solid #EAECF0 !important;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.ticket-container {
|
|
313
|
+
width: 100%;
|
|
314
|
+
background: #fff;
|
|
315
|
+
border-radius: 12px;
|
|
316
|
+
padding: 0;
|
|
317
|
+
font-family: "Inter", sans-serif;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
.ticket-header {
|
|
321
|
+
display: flex;
|
|
322
|
+
justify-content: space-between;
|
|
323
|
+
align-items: center;
|
|
324
|
+
border-radius: 6px;
|
|
325
|
+
border-bottom: 2px solid var(--Gray-200, #EAECF0);
|
|
326
|
+
background: radial-gradient(206.89% 107.47% at 16.16% 32.77%, rgba(255, 255, 255, 0.4) 0%, rgba(69, 187, 254, 0.2) 100%), #F2F4F7;
|
|
327
|
+
box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
|
|
328
|
+
padding: 16px 20px;
|
|
329
|
+
font-weight: 600;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.footfall-value {
|
|
333
|
+
font-weight: 600;
|
|
334
|
+
font-size: 20px;
|
|
335
|
+
line-height: 30px;
|
|
336
|
+
letter-spacing: 0%;
|
|
337
|
+
vertical-align: middle;
|
|
338
|
+
color: #101828;
|
|
339
|
+
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
|
|
343
|
+
.issue-date {
|
|
344
|
+
font-size: 14px;
|
|
345
|
+
color: #666;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.timeline {
|
|
349
|
+
width: 1.5px;
|
|
350
|
+
height: 15px;
|
|
351
|
+
background: #D0D5DD;
|
|
352
|
+
margin-left: 33px;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.timeline-new {
|
|
356
|
+
width: 1px;
|
|
357
|
+
height: 70px;
|
|
358
|
+
background: #D0D5DD;
|
|
359
|
+
margin-left: 30px;
|
|
360
|
+
font-weight: 600;
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
.revision-card {
|
|
364
|
+
background: #fff;
|
|
365
|
+
border: 1px solid #eaeaea;
|
|
366
|
+
border-radius: 12px;
|
|
367
|
+
padding: 0px 20px;
|
|
368
|
+
// margin: 12px 2px;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.user-info {
|
|
372
|
+
display: flex;
|
|
373
|
+
align-items: center;
|
|
374
|
+
// margin-bottom: 15px;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.avatar {
|
|
378
|
+
width: 42px;
|
|
379
|
+
height: 40px;
|
|
380
|
+
border-radius: 50%;
|
|
381
|
+
margin-right: 15px;
|
|
382
|
+
font-size: 14px;
|
|
383
|
+
color: #1D2939;
|
|
384
|
+
font-weight: 600;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.user-name {
|
|
388
|
+
font-size: 13px;
|
|
389
|
+
color: #555;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
.user-email {
|
|
393
|
+
font-size: 12px;
|
|
394
|
+
color: #888;
|
|
395
|
+
margin-top: 2px;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
.values-row {
|
|
399
|
+
display: flex;
|
|
400
|
+
justify-content: space-between;
|
|
401
|
+
flex-wrap: wrap;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.value-block {
|
|
405
|
+
min-width: 90px;
|
|
406
|
+
margin: 10px 0;
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
.value {
|
|
410
|
+
font-size: 20px;
|
|
411
|
+
font-weight: 700;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.label {
|
|
415
|
+
font-size: 14px;
|
|
416
|
+
color: #1D2939;
|
|
417
|
+
margin-top: 3px;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
/* Accuracy colors + arrows */
|
|
421
|
+
.accuracy {
|
|
422
|
+
font-size: 18px !important;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
.accuracy.up {
|
|
426
|
+
color: #00A3FF;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.accuracy.down {
|
|
430
|
+
color: #00A3FF;
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
.footfall-label {
|
|
434
|
+
font-weight: 700;
|
|
435
|
+
font-size: 14px;
|
|
436
|
+
line-height: 20px;
|
|
437
|
+
letter-spacing: 0%;
|
|
438
|
+
vertical-align: middle;
|
|
439
|
+
color: #344054 !important;
|
|
440
|
+
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
.duplicate-layer {
|
|
444
|
+
gap: 10px;
|
|
445
|
+
opacity: 1;
|
|
446
|
+
padding: 16px;
|
|
447
|
+
border-bottom-width: 1px;
|
|
448
|
+
border-bottom: 1px solid #F2F4F7;
|
|
449
|
+
background: #FFFFFF;
|
|
450
|
+
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
.layer-approved {
|
|
454
|
+
border-color: #A6F4C5 !important;
|
|
455
|
+
/* green border */
|
|
456
|
+
box-shadow: 0px 0px 0px 2.29px #A6F4C5;
|
|
457
|
+
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
/* REJECTED (Red) */
|
|
461
|
+
.layer-rejected {
|
|
462
|
+
border-color: #FDA29B !important;
|
|
463
|
+
/* red border */
|
|
464
|
+
box-shadow: 0px 0px 0px 2.29px #FDA29B;
|
|
465
|
+
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
.layers {
|
|
469
|
+
border-radius: 8px;
|
|
470
|
+
border-width: 1px;
|
|
471
|
+
opacity: 1;
|
|
472
|
+
border: 1px solid #EAECF0;
|
|
473
|
+
background: #FCFCFD;
|
|
474
|
+
margin: 12px;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
// .btn-primary{
|
|
478
|
+
// font-size: 13px !important;
|
|
479
|
+
// padding: 5px 15px !important;
|
|
480
|
+
// }
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
.accordion-header {
|
|
484
|
+
cursor: pointer;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
svg.rotated {
|
|
488
|
+
transform: rotate(180deg);
|
|
489
|
+
transition: transform 0.3s ease;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.accordion-body {
|
|
493
|
+
animation: fadeIn 0.25s ease;
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
@keyframes fadeIn {
|
|
497
|
+
from {
|
|
498
|
+
opacity: 0;
|
|
499
|
+
transform: translateY(-5px);
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
to {
|
|
503
|
+
opacity: 1;
|
|
504
|
+
transform: translateY(0);
|
|
505
|
+
}
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.ellipsis-underline {
|
|
509
|
+
max-width: 120px;
|
|
510
|
+
/* adjust as per design */
|
|
511
|
+
white-space: nowrap;
|
|
512
|
+
overflow: hidden;
|
|
513
|
+
text-overflow: ellipsis;
|
|
514
|
+
text-decoration: underline;
|
|
515
|
+
/* underline full text */
|
|
516
|
+
cursor: pointer;
|
|
517
|
+
display: inline-block;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
table td {
|
|
521
|
+
line-height: 14px !important;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
|
|
525
|
+
.btn-filter {
|
|
526
|
+
font-weight: 600;
|
|
527
|
+
font-size: 14px;
|
|
528
|
+
line-height: 20px;
|
|
529
|
+
letter-spacing: 0%;
|
|
530
|
+
text-transform: capitalize;
|
|
531
|
+
color: #344054;
|
|
532
|
+
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
.overlay {
|
|
536
|
+
position: fixed;
|
|
537
|
+
inset: 0;
|
|
538
|
+
background: rgba(0, 0, 0, .1);
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.filter-card {
|
|
542
|
+
position: absolute; // or fixed on right side
|
|
543
|
+
// top: 70px;
|
|
544
|
+
right: 0px;
|
|
545
|
+
background: #fff;
|
|
546
|
+
border-radius: 8px;
|
|
547
|
+
padding: 16px 20px;
|
|
548
|
+
box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
|
|
549
|
+
font-size: 13px;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
.border-primary-layers {
|
|
553
|
+
opacity: 1;
|
|
554
|
+
gap: 12px;
|
|
555
|
+
padding-bottom: 16px;
|
|
556
|
+
background: #EAF8FF;
|
|
557
|
+
border-radius: 8px !important;
|
|
558
|
+
|
|
559
|
+
.label-title {
|
|
560
|
+
opacity: 1;
|
|
561
|
+
gap: 10px;
|
|
562
|
+
padding: 8px;
|
|
563
|
+
border-bottom-right-radius: 8px !important;
|
|
564
|
+
background: #DAF1FF;
|
|
565
|
+
|
|
566
|
+
font-weight: 500 !important;
|
|
567
|
+
font-size: 18px !important;
|
|
568
|
+
line-height: 28px !important;
|
|
569
|
+
letter-spacing: 0%;
|
|
570
|
+
color: #000000 !important;
|
|
571
|
+
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
.label-desc {
|
|
575
|
+
font-weight: 500;
|
|
576
|
+
font-size: 16px;
|
|
577
|
+
line-height: 28px;
|
|
578
|
+
letter-spacing: 0%;
|
|
579
|
+
color: #008EDF !important;
|
|
580
|
+
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
.comment-thread {
|
|
586
|
+
position: relative;
|
|
587
|
+
display: flex;
|
|
588
|
+
align-items: flex-start;
|
|
589
|
+
padding-left: 0;
|
|
590
|
+
/* no border-left */
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
.comment-thread .avatar {
|
|
594
|
+
width: 40px;
|
|
595
|
+
height: 40px;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
.comment-thread::before {
|
|
599
|
+
left: 20px;
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
/* vertical line */
|
|
603
|
+
.comment-thread::before {
|
|
604
|
+
content: "";
|
|
605
|
+
position: absolute;
|
|
606
|
+
left: 24px;
|
|
607
|
+
/* ~ center of avatar (tweak based on avatar size) */
|
|
608
|
+
top: 50px;
|
|
609
|
+
bottom: 0;
|
|
610
|
+
width: 1.5px;
|
|
611
|
+
background-color: #e5e5e5;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
/* first item: line starts from middle of avatar (no line above) */
|
|
615
|
+
.comment-thread:first-child::before {
|
|
616
|
+
top: 30%;
|
|
617
|
+
}
|
|
618
|
+
|
|
619
|
+
/* last item: line ends at middle of avatar (no line below) */
|
|
620
|
+
.comment-thread:last-child::before {
|
|
621
|
+
bottom: 20%;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
/* make avatar a perfect circle */
|
|
625
|
+
.comment-thread .avatar {
|
|
626
|
+
width: 48px;
|
|
627
|
+
/* adjust to your design */
|
|
628
|
+
height: 48px;
|
|
629
|
+
border-radius: 50%;
|
|
630
|
+
overflow: hidden;
|
|
631
|
+
margin-right: 12px;
|
|
632
|
+
display: flex;
|
|
633
|
+
align-items: center;
|
|
634
|
+
justify-content: center;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
.comment-avatar {
|
|
639
|
+
width: 32px;
|
|
640
|
+
height: 32px;
|
|
641
|
+
border-radius: 50%;
|
|
642
|
+
object-fit: cover;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
.tango-card {
|
|
646
|
+
width: 175px;
|
|
647
|
+
border-radius: 8px;
|
|
648
|
+
border: 1px solid #e5e5e5;
|
|
649
|
+
overflow: hidden;
|
|
650
|
+
background: #fff;
|
|
651
|
+
// cursor: pointer;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.tango-image {
|
|
655
|
+
height: 80px;
|
|
656
|
+
background-size: cover;
|
|
657
|
+
background-position: center;
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
.tango-meta {
|
|
661
|
+
padding: 6px 8px;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
.more-card {
|
|
665
|
+
background: rgba(0, 0, 0, 0.03);
|
|
666
|
+
font-weight: 600;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
.status-dot {
|
|
670
|
+
display: inline-block;
|
|
671
|
+
width: 10px;
|
|
672
|
+
height: 10px;
|
|
673
|
+
border-radius: 50%;
|
|
674
|
+
margin-left: 4px;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
.status-approve {
|
|
678
|
+
background: #22c55e;
|
|
679
|
+
/* green */
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
.status-reject {
|
|
683
|
+
background: #ef4444;
|
|
684
|
+
/* red */
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
/* page content stays as usual */
|
|
688
|
+
.page-content {
|
|
689
|
+
padding: 16px;
|
|
690
|
+
}
|
|
691
|
+
|
|
692
|
+
/* dark-ish transparent background behind card */
|
|
693
|
+
.filter-backdrop {
|
|
694
|
+
position: fixed;
|
|
695
|
+
inset: 0;
|
|
696
|
+
/* top:0 right:0 bottom:0 left:0 */
|
|
697
|
+
background: rgba(15, 23, 42, 0.25);
|
|
698
|
+
z-index: 998;
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
/* container where your filter card (child) is shown */
|
|
702
|
+
.filter-modal {
|
|
703
|
+
position: fixed;
|
|
704
|
+
inset: 0;
|
|
705
|
+
display: flex;
|
|
706
|
+
justify-content: center;
|
|
707
|
+
align-items: center;
|
|
708
|
+
/* centers the card */
|
|
709
|
+
z-index: 999;
|
|
710
|
+
/* above backdrop */
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
/* row */
|
|
714
|
+
.store-item-active {
|
|
715
|
+
background-color: #EAF8FF;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
.store-item {
|
|
719
|
+
padding: 8px 10px;
|
|
720
|
+
border-radius: 6px;
|
|
721
|
+
padding-top: 8px;
|
|
722
|
+
padding-right: 12px;
|
|
723
|
+
padding-bottom: 8px;
|
|
724
|
+
padding-left: 12px;
|
|
725
|
+
gap: 12px;
|
|
726
|
+
opacity: 1;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
/* left text */
|
|
730
|
+
.ticket-id {
|
|
731
|
+
font-weight: 500;
|
|
732
|
+
font-size: 14px;
|
|
733
|
+
line-height: 20px;
|
|
734
|
+
letter-spacing: 0%;
|
|
735
|
+
color: #1D2939;
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
.store-name {
|
|
739
|
+
font-weight: 400;
|
|
740
|
+
font-size: 14px;
|
|
741
|
+
line-height: 20px;
|
|
742
|
+
letter-spacing: 0%;
|
|
743
|
+
color: #667085;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
/* right badge */
|
|
747
|
+
.perc-badge {
|
|
748
|
+
font-size: 12px;
|
|
749
|
+
min-width: 48px;
|
|
750
|
+
text-align: center;
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
.perc-badge-normal {
|
|
754
|
+
background-color: #f3f3f3;
|
|
755
|
+
font-weight: 500;
|
|
756
|
+
font-size: 14px;
|
|
757
|
+
line-height: 20px;
|
|
758
|
+
letter-spacing: 0%;
|
|
759
|
+
text-align: center;
|
|
760
|
+
color: #344054;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.perc-badge-active {
|
|
764
|
+
background-color: #d9ecff;
|
|
765
|
+
font-weight: 500;
|
|
766
|
+
font-size: 14px;
|
|
767
|
+
line-height: 20px;
|
|
768
|
+
letter-spacing: 0%;
|
|
769
|
+
text-align: center;
|
|
770
|
+
color: #009BF3;
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
.border-selectall {
|
|
774
|
+
padding: 8px 10px;
|
|
775
|
+
border-radius: 12px;
|
|
776
|
+
background: #f7f7f7;
|
|
777
|
+
/* or whatever you use */
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
.reviewer-label {
|
|
781
|
+
font-size: 12px;
|
|
782
|
+
color: #808080;
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
.sort-arrow {
|
|
786
|
+
font-size: 10px;
|
|
787
|
+
line-height: 1;
|
|
788
|
+
}
|
|
789
|
+
|
|
790
|
+
.modal-title {
|
|
791
|
+
font-weight: 600;
|
|
792
|
+
font-size: 18px;
|
|
793
|
+
line-height: 28px;
|
|
794
|
+
letter-spacing: 0%;
|
|
795
|
+
color: #1D2939;
|
|
796
|
+
|
|
797
|
+
}
|
|
798
|
+
|
|
799
|
+
.test-appvalue {
|
|
800
|
+
color: #1D2939;
|
|
801
|
+
|
|
802
|
+
font-weight: 400;
|
|
803
|
+
font-size: 16px;
|
|
804
|
+
line-height: 24px;
|
|
805
|
+
letter-spacing: 0%;
|
|
806
|
+
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
|
|
810
|
+
.light-primary {
|
|
811
|
+
background: #eaf8ff !important;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.nav-item .nav-link.active {
|
|
815
|
+
border: none;
|
|
816
|
+
border-radius: 6px;
|
|
817
|
+
background: var(--Primary-50, #EAF8FF);
|
|
818
|
+
padding: 8px 12px;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
.revision-card-approve-closed {
|
|
822
|
+
/* example: remove bottom radius */
|
|
823
|
+
border-bottom-left-radius: 0 !important;
|
|
824
|
+
border-bottom-right-radius: 0 !important;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
.ticket-actions-wrapper {
|
|
828
|
+
position: relative;
|
|
829
|
+
display: inline-block;
|
|
830
|
+
}
|
|
831
|
+
|
|
832
|
+
.icon-btn {
|
|
833
|
+
border: none;
|
|
834
|
+
background: transparent;
|
|
835
|
+
cursor: pointer;
|
|
836
|
+
padding: 4px 6px;
|
|
837
|
+
border-radius: 999px;
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
.ticket-menu {
|
|
841
|
+
position: absolute;
|
|
842
|
+
right: 0;
|
|
843
|
+
top: 100%;
|
|
844
|
+
margin-top: 4px;
|
|
845
|
+
background: #ffffff;
|
|
846
|
+
border-radius: 10px;
|
|
847
|
+
box-shadow: 0 8px 20px rgba(15, 23, 42, 0.15);
|
|
848
|
+
min-width: 160px;
|
|
849
|
+
overflow: hidden;
|
|
850
|
+
/* so rounded corners clip children */
|
|
851
|
+
z-index: 1000;
|
|
852
|
+
}
|
|
853
|
+
|
|
854
|
+
.ticket-menu-item {
|
|
855
|
+
padding: 8px 16px;
|
|
856
|
+
font-size: 13px;
|
|
857
|
+
color: #111827;
|
|
858
|
+
border-bottom: 1px solid #f3f4f6;
|
|
859
|
+
cursor: pointer;
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
.ticket-menu-item:last-child {
|
|
863
|
+
border-bottom: none;
|
|
864
|
+
}
|
|
865
|
+
|
|
866
|
+
|
|
867
|
+
.revision-card-approve {
|
|
868
|
+
/* example: added bottom radius */
|
|
869
|
+
border-top: none !important;
|
|
870
|
+
border: 1px solid #eaeaea !important;
|
|
871
|
+
border-top-left-radius: 0 !important;
|
|
872
|
+
border-top-right-radius: 0 !important;
|
|
873
|
+
border-bottom-left-radius: 12px !important;
|
|
874
|
+
border-bottom-right-radius: 12px !important;
|
|
875
|
+
}
|
|
876
|
+
|
|
877
|
+
input[type="checkbox"]:disabled {
|
|
878
|
+
cursor: not-allowed;
|
|
879
|
+
opacity: 0.6;
|
|
880
|
+
outline: 1px solid var(--primary-600, #dddddd) !important;
|
|
881
|
+
background-color: var(--primary-50, #e9e9ea);
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
.card-title {
|
|
885
|
+
font-weight: 600;
|
|
886
|
+
font-size: 18px;
|
|
887
|
+
line-height: 28px;
|
|
888
|
+
letter-spacing: 0%;
|
|
889
|
+
color: #1D2939;
|
|
890
|
+
}
|
|
891
|
+
|
|
892
|
+
.back-ground {
|
|
893
|
+
background-color: #F9FAFB;
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
.card-title1 {
|
|
897
|
+
font-weight: 600;
|
|
898
|
+
font-size: 14px;
|
|
899
|
+
line-height: 28px;
|
|
900
|
+
letter-spacing: 0%;
|
|
901
|
+
color: #1D2939;
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.card-sub {
|
|
905
|
+
font-weight: 400;
|
|
906
|
+
font-size: 14px;
|
|
907
|
+
line-height: 20px;
|
|
908
|
+
letter-spacing: 0%;
|
|
909
|
+
color: #475467;
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.acc-issue {
|
|
913
|
+
background-color: #EAF8FF;
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
|
|
917
|
+
|
|
918
|
+
.accuracy-panel {
|
|
919
|
+
background: #eaf6ff;
|
|
920
|
+
/* pale-blue background */
|
|
921
|
+
border: 1px solid #d6eefc;
|
|
922
|
+
/* subtle border */
|
|
923
|
+
border-radius: 8px;
|
|
924
|
+
padding: 18px;
|
|
925
|
+
margin-bottom: 3px;
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
.accuracy-header {
|
|
929
|
+
display: flex;
|
|
930
|
+
align-items: center;
|
|
931
|
+
gap: 10px;
|
|
932
|
+
margin-bottom: 10px;
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
.info-line {
|
|
936
|
+
color: #1f6fb3;
|
|
937
|
+
margin-bottom: 14px;
|
|
938
|
+
font-size: 0.95rem;
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
.form-small {
|
|
942
|
+
max-width: 400px;
|
|
943
|
+
}
|
|
944
|
+
|
|
945
|
+
.add-btn {
|
|
946
|
+
margin-top: 8px;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
.panel-footer {
|
|
950
|
+
display: flex;
|
|
951
|
+
justify-content: flex-end;
|
|
952
|
+
align-items: center;
|
|
953
|
+
gap: 12px;
|
|
954
|
+
margin-top: 18px;
|
|
955
|
+
}
|
|
956
|
+
|
|
957
|
+
/* small pill badge look */
|
|
958
|
+
.badge-light-blue {
|
|
959
|
+
background: rgba(255, 255, 255, 0.85);
|
|
960
|
+
color: #0d6efd;
|
|
961
|
+
font-weight: 600;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.daterangepicker {
|
|
965
|
+
display: block !important;
|
|
966
|
+
top: 153.85px !important;
|
|
967
|
+
left: 900px !important;
|
|
968
|
+
right: 0px;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
.form-control {
|
|
972
|
+
color: var(--Gray-700, #344054) !important;
|
|
973
|
+
font-size: 14px !important;
|
|
974
|
+
font-weight: 600;
|
|
975
|
+
line-height: 20px;
|
|
976
|
+
text-transform: capitalize;
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
::ng-deep .applyBtn {
|
|
980
|
+
display: none !important;
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
|
|
984
|
+
|
|
985
|
+
::ng-deep {
|
|
986
|
+
.md-drppicker .btn {
|
|
987
|
+
line-height: 10px !important;
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
.daterangepicker-input+.ngx-daterangepicker-material .applyBtn {
|
|
991
|
+
display: none;
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
.md-drppicker.drops-down-right.ltr.double.show-ranges.shown {
|
|
995
|
+
top: 65px !important;
|
|
996
|
+
left: -470px !important;
|
|
997
|
+
height: 365px !important;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.md-drppicker .btn {
|
|
1001
|
+
border-radius: 8px !important;
|
|
1002
|
+
border: 1px solid var(--Primary-600, #00A3FF) !important;
|
|
1003
|
+
background: var(--Primary-600, #00A3FF) !important;
|
|
1004
|
+
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05) !important;
|
|
1005
|
+
color: var(--White, #FFF) !important;
|
|
1006
|
+
font-size: 14px !important;
|
|
1007
|
+
font-weight: 600 !important;
|
|
1008
|
+
line-height: 20px;
|
|
1009
|
+
text-transform: capitalize;
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.md-drppicker .ranges ul li button {
|
|
1013
|
+
padding: 12px 16px;
|
|
1014
|
+
width: 160px;
|
|
1015
|
+
color: var(--Gray-700, #344054);
|
|
1016
|
+
font-size: 14px;
|
|
1017
|
+
font-weight: 400;
|
|
1018
|
+
line-height: 20px;
|
|
1019
|
+
background: none;
|
|
1020
|
+
border: none;
|
|
1021
|
+
text-align: left;
|
|
1022
|
+
cursor: pointer;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
.md-drppicker td.active,
|
|
1026
|
+
.md-drppicker td.active:hover {
|
|
1027
|
+
background-color: #029cf4 !important;
|
|
1028
|
+
border-radius: 20px !important;
|
|
1029
|
+
color: var(--White, #FFF) !important;
|
|
1030
|
+
text-align: center !important;
|
|
1031
|
+
font-size: 14px !important;
|
|
1032
|
+
font-weight: 500 !important;
|
|
1033
|
+
line-height: 20px;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
.md-drppicker.ltr .ranges {
|
|
1037
|
+
float: left;
|
|
1038
|
+
margin-top: 10px !important;
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
.md-drppicker td.in-range {
|
|
1042
|
+
background: var(--Primary-50, #EAF8FF);
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
.md-drppicker .ranges ul li button.active {
|
|
1046
|
+
background: var(--Primary-50, #EAF8FF) !important;
|
|
1047
|
+
border-radius: 8px !important;
|
|
1048
|
+
color: var(--Primary-700, #009BF3);
|
|
1049
|
+
font-size: 14px !important;
|
|
1050
|
+
font-weight: 500 !important;
|
|
1051
|
+
line-height: 20px !important;
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
.md-drppicker table th,
|
|
1055
|
+
.md-drppicker table td {
|
|
1056
|
+
width: 40px !important;
|
|
1057
|
+
height: 40px !important;
|
|
1058
|
+
padding: 10px 8px !important;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
.md-drppicker td.available.prev,
|
|
1062
|
+
.md-drppicker th.available.prev {
|
|
1063
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMy43IDYiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDMuNyA2IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIGQ9Ik0zLjcsMC43TDEuNCwzbDIuMywyLjNMMyw2TDAsM2wzLTNMMy43LDAuN3oiLz4NCjwvZz4NCjwvc3ZnPg0K) !important;
|
|
1064
|
+
background-repeat: no-repeat !important;
|
|
1065
|
+
background-size: 0.5em !important;
|
|
1066
|
+
background-position: center !important;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
.md-drppicker td.available.next,
|
|
1070
|
+
.md-drppicker th.available.next {
|
|
1071
|
+
background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSIwIDAgMy43IDYiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDMuNyA2IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnPg0KCTxwYXRoIGQ9Ik0zLjcsMC43TDEuNCwzbDIuMywyLjNMMyw2TDAsM2wzLTNMMy43LDAuN3oiLz4NCjwvZz4NCjwvc3ZnPg0K) !important;
|
|
1072
|
+
background-repeat: no-repeat !important;
|
|
1073
|
+
background-size: 0.5em !important;
|
|
1074
|
+
background-position: center !important;
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
.md-drppicker table th {
|
|
1078
|
+
border-bottom: 0px solid var(--Gray-200, #EAECF0) !important;
|
|
1079
|
+
background: transparent;
|
|
1080
|
+
color: var(--Gray-700, #344054) !important;
|
|
1081
|
+
text-align: center;
|
|
1082
|
+
font-size: 16px;
|
|
1083
|
+
font-weight: 500 !important;
|
|
1084
|
+
line-height: 24px;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
.md-drppicker td.available.invalid-date {
|
|
1088
|
+
text-decoration: line-through;
|
|
1089
|
+
pointer-events: none;
|
|
1090
|
+
color: darkgray;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.md-drppicker td.available.today:not(.invalid-date) {
|
|
1094
|
+
text-decoration: unset;
|
|
1095
|
+
pointer-events: unset;
|
|
1096
|
+
color: unset;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
// .md-drppicker td.available.invalid-date {
|
|
1100
|
+
// text-decoration: line-through;
|
|
1101
|
+
// pointer-events: none;
|
|
1102
|
+
// color: darkgray;
|
|
1103
|
+
// }
|
|
1104
|
+
|
|
1105
|
+
// .md-drppicker td.available.today {
|
|
1106
|
+
// /* Styles for today if it's valid */
|
|
1107
|
+
// text-decoration: unset; /* No line-through */
|
|
1108
|
+
// pointer-events: auto; /* Enable pointer events */
|
|
1109
|
+
// color: unset; /* Default color */
|
|
1110
|
+
// }
|
|
1111
|
+
|
|
1112
|
+
// .md-drppicker td.available.today.invalid-date {
|
|
1113
|
+
// /* Styles for today if it's invalid */
|
|
1114
|
+
// text-decoration: line-through; /* Line-through to indicate invalid */
|
|
1115
|
+
// pointer-events: none; /* Disable interaction */
|
|
1116
|
+
// color: darkgray; /* Gray color to indicate invalid */
|
|
1117
|
+
// }
|
|
1118
|
+
.md-drppicker .btn.btn-default {
|
|
1119
|
+
border-radius: 8px !important;
|
|
1120
|
+
border: 1px solid var(--Gray-300, #D0D5DD) !important;
|
|
1121
|
+
background: var(--White, #FFF) !important;
|
|
1122
|
+
box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05) !important;
|
|
1123
|
+
color: var(--Gray-700, #344054) !important;
|
|
1124
|
+
font-size: 14px !important;
|
|
1125
|
+
font-weight: 600 !important;
|
|
1126
|
+
line-height: 20px;
|
|
1127
|
+
text-transform: capitalize;
|
|
1128
|
+
margin-right: 10px !important;
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
.md-drppicker td.available.invalid-date {
|
|
1132
|
+
text-decoration: line-through;
|
|
1133
|
+
pointer-events: none;
|
|
1134
|
+
color: darkgray;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
.md-drppicker td.available.today:not(.invalid-date) {
|
|
1138
|
+
text-decoration: unset;
|
|
1139
|
+
pointer-events: unset;
|
|
1140
|
+
color: unset;
|
|
1141
|
+
}
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
.custom-table thead tr {
|
|
1145
|
+
background: var(--Gray-50, #F9FAFB) !important;
|
|
1146
|
+
font-size: 12px !important;
|
|
1147
|
+
text-align: start !important;
|
|
1148
|
+
}
|
|
1149
|
+
|
|
1150
|
+
.more-overlay {
|
|
1151
|
+
position: absolute;
|
|
1152
|
+
inset: 0;
|
|
1153
|
+
background: rgba(255, 255, 255, 0.75);
|
|
1154
|
+
z-index: 1;
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
.more-wrapper {
|
|
1158
|
+
position: relative;
|
|
1159
|
+
z-index: 2;
|
|
1160
|
+
color: #000;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1163
|
+
.tango-card.more-card {
|
|
1164
|
+
position: relative;
|
|
1165
|
+
background-size: cover;
|
|
1166
|
+
background-position: center;
|
|
1167
|
+
cursor: pointer;
|
|
1168
|
+
overflow: hidden;
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
/* white/blur overlay to make background light */
|
|
1172
|
+
.tango-card.more-card .more-overlay {
|
|
1173
|
+
position: absolute;
|
|
1174
|
+
inset: 0;
|
|
1175
|
+
background: rgba(255, 255, 255, 0.75);
|
|
1176
|
+
/* adjust opacity as you like */
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
/* bring the +N text above overlay */
|
|
1180
|
+
.tango-card.more-card .more-text {
|
|
1181
|
+
position: relative;
|
|
1182
|
+
font-weight: 600;
|
|
1183
|
+
font-size: 14px;
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
|
|
1187
|
+
.images-modal-backdrop {
|
|
1188
|
+
position: fixed;
|
|
1189
|
+
inset: 0;
|
|
1190
|
+
background: rgba(15, 23, 42, 0.35);
|
|
1191
|
+
display: flex;
|
|
1192
|
+
align-items: center;
|
|
1193
|
+
justify-content: center;
|
|
1194
|
+
z-index: 1050;
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
.images-modal {
|
|
1198
|
+
background: #fff;
|
|
1199
|
+
border-radius: 12px;
|
|
1200
|
+
padding: 16px 20px;
|
|
1201
|
+
max-width: 1000px;
|
|
1202
|
+
max-height: 80vh;
|
|
1203
|
+
overflow-y: auto;
|
|
1204
|
+
}
|
|
1205
|
+
|
|
1206
|
+
.text-underline {
|
|
1207
|
+
text-decoration: underline;
|
|
1208
|
+
}
|