@djb25/digit-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 +2 -2
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/SearchForm.scss +903 -22
- package/src/components/WorkflowTimeline.scss +165 -0
- package/src/components/body.scss +1 -3
- package/src/components/card.scss +1 -0
- package/src/components/financeUi.scss +1 -0
- package/src/components/inboxv2/InboxLinks.scss +1 -0
- package/src/components/topbar.scss +10 -9
- package/src/digitv2/components/FormComposerV2.scss +0 -1
- package/src/digitv2/components/appContainerV2.scss +0 -1
- package/src/index.scss +1 -0
- package/src/pages/employee/inbox.scss +1 -0
- package/src/pages/employee/index.scss +0 -1
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
.timeline-container {
|
|
2
|
+
display: flex;
|
|
3
|
+
flex-direction: column;
|
|
4
|
+
position: relative;
|
|
5
|
+
margin: 20px 0;
|
|
6
|
+
padding-left: 20px;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.timeline-item {
|
|
10
|
+
display: flex;
|
|
11
|
+
position: relative;
|
|
12
|
+
padding-bottom: 20px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.timeline-item:last-child {
|
|
16
|
+
padding-bottom: 0;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.timeline-marker {
|
|
20
|
+
display: flex;
|
|
21
|
+
flex-direction: column;
|
|
22
|
+
align-items: center;
|
|
23
|
+
margin-right: 15px;
|
|
24
|
+
position: relative;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.timeline-circle {
|
|
28
|
+
width: 16px;
|
|
29
|
+
height: 16px;
|
|
30
|
+
border-radius: 50%;
|
|
31
|
+
border: 2px solid #ccc;
|
|
32
|
+
background-color: #fff;
|
|
33
|
+
z-index: 10;
|
|
34
|
+
transition: all 0.3s ease;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.timeline-item.completed .timeline-circle {
|
|
38
|
+
background-color: #4caf50;
|
|
39
|
+
border-color: #4caf50;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.timeline-item.current .timeline-circle {
|
|
43
|
+
background-color: #2196f3;
|
|
44
|
+
border-color: #2196f3;
|
|
45
|
+
transform: scale(1.2);
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.timeline-item.pending .timeline-circle {
|
|
49
|
+
background-color: #f5f5f5;
|
|
50
|
+
border-color: #ccc;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.timeline-line {
|
|
54
|
+
position: absolute;
|
|
55
|
+
top: 16px;
|
|
56
|
+
bottom: -20px;
|
|
57
|
+
/* Connect to next item */
|
|
58
|
+
width: 2px;
|
|
59
|
+
background-color: #e0e0e0;
|
|
60
|
+
z-index: 1;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.timeline-item:last-child .timeline-line {
|
|
64
|
+
display: none;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.timeline-content {
|
|
68
|
+
flex: 1;
|
|
69
|
+
background: #e8e8e8;
|
|
70
|
+
padding: 10px 15px;
|
|
71
|
+
border-radius: 8px;
|
|
72
|
+
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
73
|
+
transition: transform 0.2s;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.timeline-content:hover {
|
|
77
|
+
transform: translateX(5px);
|
|
78
|
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.timeline-title {
|
|
82
|
+
font-weight: 600;
|
|
83
|
+
font-size: 14px;
|
|
84
|
+
color: #333;
|
|
85
|
+
margin-bottom: 4px;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.timeline-date {
|
|
89
|
+
font-size: 12px;
|
|
90
|
+
color: #000000;
|
|
91
|
+
margin-bottom: 6px;
|
|
92
|
+
display: block;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.timeline-comment {
|
|
96
|
+
font-size: 13px;
|
|
97
|
+
color: #555;
|
|
98
|
+
line-height: 1.4;
|
|
99
|
+
background-color: #f9f9f9;
|
|
100
|
+
padding: 8px;
|
|
101
|
+
border-radius: 4px;
|
|
102
|
+
margin-top: 5px;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.timeline-status-tag {
|
|
106
|
+
display: inline-block;
|
|
107
|
+
padding: 10px;
|
|
108
|
+
border-radius: 12px;
|
|
109
|
+
font-size: 11px;
|
|
110
|
+
font-weight: bold;
|
|
111
|
+
text-transform: uppercase;
|
|
112
|
+
margin-top: 5px;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.status-completed {
|
|
116
|
+
background-color: #e8f5e9;
|
|
117
|
+
color: #2e7d32;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
.status-current {
|
|
121
|
+
background-color: #e3f2fd;
|
|
122
|
+
color: #1565c0;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.status-pending {
|
|
126
|
+
background-color: #f5f5f5;
|
|
127
|
+
color: #757575;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
/* Animations */
|
|
131
|
+
@keyframes fadeIn {
|
|
132
|
+
from {
|
|
133
|
+
opacity: 0;
|
|
134
|
+
transform: translateY(10px);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
to {
|
|
138
|
+
opacity: 1;
|
|
139
|
+
transform: translateY(0);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.timeline-item {
|
|
144
|
+
animation: fadeIn 0.5s ease-out forwards;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.timeline-item:nth-child(1) {
|
|
148
|
+
animation-delay: 0.1s;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.timeline-item:nth-child(2) {
|
|
152
|
+
animation-delay: 0.2s;
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.timeline-item:nth-child(3) {
|
|
156
|
+
animation-delay: 0.3s;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.timeline-item:nth-child(4) {
|
|
160
|
+
animation-delay: 0.4s;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.timeline-item:nth-child(5) {
|
|
164
|
+
animation-delay: 0.5s;
|
|
165
|
+
}
|
package/src/components/body.scss
CHANGED
package/src/components/card.scss
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
position: fixed;
|
|
3
3
|
top: 0;
|
|
4
4
|
width: 100%;
|
|
5
|
-
padding: 10px 24px;
|
|
6
5
|
background: white;
|
|
7
6
|
box-shadow: rgba(0, 0, 0, 0.24) 0 1px 4px;
|
|
8
7
|
z-index: 9999999;
|
|
@@ -12,13 +11,13 @@
|
|
|
12
11
|
display: inline;
|
|
13
12
|
|
|
14
13
|
&.city {
|
|
15
|
-
|
|
16
|
-
|
|
14
|
+
margin-right: 8px;
|
|
15
|
+
height: 60px;
|
|
17
16
|
}
|
|
18
17
|
|
|
19
18
|
&.state {
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
min-height: 50px;
|
|
20
|
+
width: 80px;
|
|
22
21
|
}
|
|
23
22
|
}
|
|
24
23
|
|
|
@@ -37,10 +36,12 @@
|
|
|
37
36
|
}
|
|
38
37
|
|
|
39
38
|
.user-img-txt {
|
|
40
|
-
background:
|
|
39
|
+
background: #a82227;
|
|
41
40
|
padding: 10px 15px;
|
|
42
|
-
border-radius:
|
|
41
|
+
border-radius: 2px;
|
|
43
42
|
color: white;
|
|
43
|
+
height: 43px;
|
|
44
|
+
width: 43px;
|
|
44
45
|
font-weight: 700;
|
|
45
46
|
}
|
|
46
47
|
}
|
|
@@ -147,5 +148,5 @@ video::-webkit-media-controls-panel {
|
|
|
147
148
|
}
|
|
148
149
|
|
|
149
150
|
.topbarOptionsClassName {
|
|
150
|
-
right: -3rem !important
|
|
151
|
-
}
|
|
151
|
+
right: -3rem !important;
|
|
152
|
+
}
|
package/src/index.scss
CHANGED
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
@import "./components/CitizenHomeCard.scss";
|
|
65
65
|
@import "./components/PropertySearchForm.scss";
|
|
66
66
|
@import "./components/SearchForm.scss";
|
|
67
|
+
@import "./components/WorkflowTimeline.scss";
|
|
67
68
|
@import "./components/cardHeaderWithOptions.scss";
|
|
68
69
|
@import "./components/TimeLine.scss";
|
|
69
70
|
@import "./components/PageBasedInput.scss";
|