@indice/ng-components 0.4.0 → 0.4.2
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/package.json +2 -2
- package/src/assets/styles/advanced-search.css +30 -48
- package/src/assets/styles/avatar-initials.css +22 -24
- package/src/assets/styles/cards.css +63 -64
- package/src/assets/styles/collapsible-panel.css +18 -19
- package/src/assets/styles/combobox.css +21 -22
- package/src/assets/styles/components.css +24 -26
- package/src/assets/styles/drop-down-menu.css +48 -49
- package/src/assets/styles/form-layout.css +39 -40
- package/src/assets/styles/list-view.css +47 -48
- package/src/assets/styles/modal.css +35 -8
- package/src/assets/styles/model-view-layout.css +36 -37
- package/src/assets/styles/nav-links.css +48 -50
- package/src/assets/styles/notifications-indicator.component.css +23 -25
- package/src/assets/styles/pager.css +24 -25
- package/src/assets/styles/shell-layout.css +185 -187
- package/src/assets/styles/shell-sidebar-layout.css +86 -89
- package/src/assets/styles/shell-sidebar.css +24 -25
- package/src/assets/styles/side-pane.css +36 -38
- package/src/assets/styles/side-view-layout.css +42 -43
- package/src/assets/styles/stepper.css +166 -167
- package/src/assets/styles/tab-group.css +21 -22
- package/src/assets/styles/toast.css +54 -54
- package/src/assets/styles/toggle-button.component.css +39 -40
- package/src/assets/styles/toggle-buttons-list.component.css +44 -45
- package/src/assets/styles/toggle.css +18 -19
- package/src/assets/styles/view-layout.css +66 -66
- package/src/styles.css +0 -2
- package/src/assets/styles/list-view-empty-state.css +0 -0
- package/src/assets/styles/shell-sidebar-header.css +0 -2
|
@@ -1,32 +1,31 @@
|
|
|
1
|
+
.shell-sidebar-container-fixed {
|
|
2
|
+
@apply fixed w-0 sm:w-64 flex-col inset-y-0 bg-gray-800;
|
|
3
|
+
}
|
|
1
4
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
+
.shell-sidebar-toggle-button {
|
|
6
|
+
@apply hidden sm:block px-4 border-0 text-white focus:outline-none;
|
|
7
|
+
}
|
|
5
8
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
+
.shell-sidebar-container-hidden {
|
|
10
|
+
@apply hidden w-0 sm:w-64 flex-col inset-y-0 bg-gray-800;
|
|
11
|
+
}
|
|
9
12
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
+
.shell-sidebar-content-container {
|
|
14
|
+
@apply flex flex-col;
|
|
15
|
+
}
|
|
13
16
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
+
.shell-sidebar-content-container-inner {
|
|
18
|
+
@apply sticky top-0 z-10 flex-shrink-0 flex h-16 bg-gray-800;
|
|
19
|
+
}
|
|
17
20
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
+
.shell-sidebar-header-container {
|
|
22
|
+
@apply flex-1;
|
|
23
|
+
}
|
|
21
24
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
.shell-sidebar-component-container {
|
|
27
|
-
@apply flex w-full flex-col h-full min-h-0 bg-gray-800;
|
|
28
|
-
}
|
|
25
|
+
.shell-sidebar-component-container {
|
|
26
|
+
@apply flex w-full flex-col h-full min-h-0 bg-gray-800;
|
|
27
|
+
}
|
|
29
28
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
29
|
+
.shell-sidebar-component-links-container {
|
|
30
|
+
@apply pt-4;
|
|
31
|
+
}
|
|
@@ -1,50 +1,48 @@
|
|
|
1
|
+
.side-pane-outer-container {
|
|
2
|
+
@apply fixed inset-0 overflow-hidden z-40;
|
|
3
|
+
}
|
|
1
4
|
|
|
5
|
+
.side-pane-overlay {
|
|
6
|
+
@apply absolute bg-black opacity-25 inset-0;
|
|
7
|
+
}
|
|
2
8
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
9
|
+
.side-pane-overlay-opacity-0 {
|
|
10
|
+
@apply absolute bg-black opacity-0 inset-0;
|
|
11
|
+
}
|
|
6
12
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
13
|
+
.side-pane-overlay-opacity-50 {
|
|
14
|
+
@apply absolute bg-black opacity-50 inset-0;
|
|
15
|
+
}
|
|
10
16
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
17
|
+
.side-pane-container {
|
|
18
|
+
@apply fixed inset-y-0 right-0 max-w-full flex transition-all duration-200 ease-in-out;
|
|
19
|
+
}
|
|
14
20
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
21
|
+
.side-pane-container-inner {
|
|
22
|
+
@apply w-screen max-w-md;
|
|
23
|
+
}
|
|
18
24
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
25
|
+
.side-pane-box-size {
|
|
26
|
+
@apply w-screen max-w-2xl;
|
|
27
|
+
}
|
|
22
28
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
29
|
+
.side-pane-box-size-25 {
|
|
30
|
+
@apply w-screen max-w-2xl;
|
|
31
|
+
}
|
|
26
32
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
33
|
+
.side-pane-box-size-50 {
|
|
34
|
+
@apply w-screen max-w-3xl;
|
|
35
|
+
}
|
|
30
36
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
.side-pane-box-size-50 {
|
|
36
|
-
@apply w-screen max-w-3xl;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.side-pane-box-size-75 {
|
|
40
|
-
@apply w-screen max-w-4xl;
|
|
41
|
-
}
|
|
37
|
+
.side-pane-box-size-75 {
|
|
38
|
+
@apply w-screen max-w-4xl;
|
|
39
|
+
}
|
|
42
40
|
|
|
43
41
|
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
42
|
+
.side-pane-box-size-100 {
|
|
43
|
+
@apply w-screen max-w-full;
|
|
44
|
+
}
|
|
47
45
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
46
|
+
.side-pane {
|
|
47
|
+
@apply flex flex-col bg-white shadow-xl overflow-y-hidden;
|
|
48
|
+
}
|
|
@@ -1,57 +1,56 @@
|
|
|
1
|
+
.side-view-layout-size-box {
|
|
2
|
+
@apply h-screen;
|
|
3
|
+
}
|
|
1
4
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
+
.side-view-layout-container {
|
|
6
|
+
@apply h-full flex flex-col shadow-xl bg-gray-900;
|
|
7
|
+
}
|
|
5
8
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
+
.side-view-layout-container-inner {
|
|
10
|
+
@apply min-h-0 flex-1 flex flex-col pt-6 overflow-y-hidden;
|
|
11
|
+
}
|
|
9
12
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
+
.side-view-layout-header-margins {
|
|
14
|
+
@apply px-4 sm:px-6;
|
|
15
|
+
}
|
|
13
16
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
+
.side-view-layout-header-container {
|
|
18
|
+
@apply flex items-start justify-between;
|
|
19
|
+
}
|
|
17
20
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
+
.side-view-layout-header-title {
|
|
22
|
+
@apply text-lg font-medium text-white;
|
|
23
|
+
}
|
|
21
24
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
+
.side-view-layout-close-button-container {
|
|
26
|
+
@apply ml-3 h-7 flex items-center;
|
|
27
|
+
}
|
|
25
28
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
+
.side-view-layout-close-button {
|
|
30
|
+
@apply rounded-sm text-white hover:text-gray-200 focus:outline-none focus:ring-1 focus:ring-gray-300;
|
|
31
|
+
}
|
|
29
32
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
+
.side-view-layout-close-button-icon {
|
|
34
|
+
@apply h-6 w-6;
|
|
35
|
+
}
|
|
33
36
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
.side-view-layout-content-container {
|
|
38
|
+
@apply bg-white mt-6 relative flex-1 px-6 overflow-y-auto;
|
|
39
|
+
}
|
|
37
40
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
+
.side-view-layout-actions-container {
|
|
42
|
+
@apply flex-shrink-0 px-4 py-4 flex bg-gray-100 justify-end;
|
|
43
|
+
}
|
|
41
44
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
+
.side-view-layout-action-button-cancel {
|
|
46
|
+
@apply bg-white py-2 px-4 border border-gray-300 rounded-md shadow-sm text-sm font-medium text-gray-700 hover:bg-gray-50 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-gray-500;
|
|
47
|
+
}
|
|
45
48
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
+
.side-view-layout-action-button-submit {
|
|
50
|
+
@apply ml-4 inline-flex justify-center py-2 px-4 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-gray-600 hover:bg-gray-700 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-gray-500;
|
|
51
|
+
}
|
|
49
52
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
.side-view-layout-action-button-submit:disabled {
|
|
55
|
-
@apply ml-4 inline-flex justify-center py-2 px-4 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-gray-300 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-gray-500 cursor-not-allowed;
|
|
56
|
-
}
|
|
53
|
+
.side-view-layout-action-button-submit:disabled {
|
|
54
|
+
@apply ml-4 inline-flex justify-center py-2 px-4 border border-transparent shadow-sm text-sm font-medium rounded-md text-white bg-gray-300 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-gray-500 cursor-not-allowed;
|
|
55
|
+
}
|
|
57
56
|
|
|
@@ -1,170 +1,169 @@
|
|
|
1
|
+
/* Bullets */
|
|
2
|
+
.stepper-bullets-container {
|
|
3
|
+
@apply flex items-center justify-center;
|
|
4
|
+
}
|
|
5
|
+
.stepper-bullets-counter {
|
|
6
|
+
@apply text-sm font-medium;
|
|
7
|
+
}
|
|
8
|
+
.stepper-bullets-ol {
|
|
9
|
+
@apply ml-8 flex items-center space-x-5;
|
|
10
|
+
}
|
|
11
|
+
.stepper-bullets-completed-step {
|
|
12
|
+
@apply block w-2.5 h-2.5 bg-blue-600 rounded-full hover:bg-blue-900;
|
|
13
|
+
}
|
|
14
|
+
.stepper-bullets-active-step {
|
|
15
|
+
@apply relative flex items-center justify-center;
|
|
16
|
+
}
|
|
17
|
+
.stepper-bullets-active-step-level1 {
|
|
18
|
+
@apply absolute w-5 h-5 p-px flex;
|
|
19
|
+
}
|
|
20
|
+
.stepper-bullets-active-step-level11 {
|
|
21
|
+
@apply w-full h-full rounded-full bg-blue-200;
|
|
22
|
+
}
|
|
23
|
+
.stepper-bullets-active-step-bullet {
|
|
24
|
+
@apply relative block w-2.5 h-2.5 bg-blue-600 rounded-full;
|
|
25
|
+
}
|
|
26
|
+
.stepper-bullets-upcoming-step {
|
|
27
|
+
@apply block w-2.5 h-2.5 bg-gray-200 rounded-full hover:bg-gray-400;
|
|
28
|
+
}
|
|
1
29
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
+
/* Bullets & Text */
|
|
31
|
+
.stepper-bullets-and-text-container {
|
|
32
|
+
@apply flex items-center justify-center;
|
|
33
|
+
}
|
|
34
|
+
.stepper-bullets-and-text-ol {
|
|
35
|
+
@apply space-y-6;
|
|
36
|
+
}
|
|
37
|
+
.stepper-bullets-and-text-completed-step {
|
|
38
|
+
@apply flex items-start;
|
|
39
|
+
}
|
|
40
|
+
.stepper-bullets-and-text-completed-step-level1 {
|
|
41
|
+
@apply flex-shrink-0 relative h-5 w-5 flex items-center justify-center;
|
|
42
|
+
}
|
|
43
|
+
.stepper-bullets-and-text-completed-step-container {
|
|
44
|
+
@apply ml-3 text-sm font-medium text-gray-500 group-hover:text-gray-900;
|
|
45
|
+
}
|
|
46
|
+
.stepper-bullets-and-text-active-step {
|
|
47
|
+
@apply flex items-start;
|
|
48
|
+
}
|
|
49
|
+
.stepper-bullets-and-text-active-step-level1 {
|
|
50
|
+
@apply flex-shrink-0 h-5 w-5 relative flex items-center justify-center;
|
|
51
|
+
}
|
|
52
|
+
.stepper-bullets-and-text-active-step-level11 {
|
|
53
|
+
@apply absolute h-4 w-4 rounded-full bg-blue-200;
|
|
54
|
+
}
|
|
55
|
+
.stepper-bullets-and-text-active-step-level12 {
|
|
56
|
+
@apply relative block w-2 h-2 bg-blue-600 rounded-full;
|
|
57
|
+
}
|
|
58
|
+
.stepper-bullets-and-text-active-step-container {
|
|
59
|
+
@apply ml-3 text-sm font-medium text-blue-600;
|
|
60
|
+
}
|
|
61
|
+
.stepper-bullets-and-text-upcoming-step {
|
|
62
|
+
@apply flex items-start;
|
|
63
|
+
}
|
|
64
|
+
.stepper-bullets-and-text-upcoming-step-level1 {
|
|
65
|
+
@apply flex-shrink-0 h-5 w-5 relative flex items-center justify-center;
|
|
66
|
+
}
|
|
67
|
+
.stepper-bullets-and-text-upcoming-step-level2 {
|
|
68
|
+
@apply h-2 w-2 bg-gray-300 rounded-full group-hover:bg-gray-400;
|
|
69
|
+
}
|
|
70
|
+
.stepper-bullets-and-text-upcoming-step-container {
|
|
71
|
+
@apply ml-3 text-sm font-medium text-gray-500 group-hover:text-gray-900;
|
|
72
|
+
}
|
|
30
73
|
|
|
31
|
-
|
|
32
|
-
.stepper-bullets-and-text-container {
|
|
33
|
-
@apply flex items-center justify-center;
|
|
34
|
-
}
|
|
35
|
-
.stepper-bullets-and-text-ol {
|
|
36
|
-
@apply space-y-6;
|
|
37
|
-
}
|
|
38
|
-
.stepper-bullets-and-text-completed-step {
|
|
39
|
-
@apply flex items-start;
|
|
40
|
-
}
|
|
41
|
-
.stepper-bullets-and-text-completed-step-level1 {
|
|
42
|
-
@apply flex-shrink-0 relative h-5 w-5 flex items-center justify-center;
|
|
43
|
-
}
|
|
44
|
-
.stepper-bullets-and-text-completed-step-container {
|
|
45
|
-
@apply ml-3 text-sm font-medium text-gray-500 group-hover:text-gray-900;
|
|
46
|
-
}
|
|
47
|
-
.stepper-bullets-and-text-active-step {
|
|
48
|
-
@apply flex items-start;
|
|
49
|
-
}
|
|
50
|
-
.stepper-bullets-and-text-active-step-level1 {
|
|
51
|
-
@apply flex-shrink-0 h-5 w-5 relative flex items-center justify-center;
|
|
52
|
-
}
|
|
53
|
-
.stepper-bullets-and-text-active-step-level11 {
|
|
54
|
-
@apply absolute h-4 w-4 rounded-full bg-blue-200;
|
|
55
|
-
}
|
|
56
|
-
.stepper-bullets-and-text-active-step-level12 {
|
|
57
|
-
@apply relative block w-2 h-2 bg-blue-600 rounded-full;
|
|
58
|
-
}
|
|
59
|
-
.stepper-bullets-and-text-active-step-container {
|
|
60
|
-
@apply ml-3 text-sm font-medium text-blue-600;
|
|
61
|
-
}
|
|
62
|
-
.stepper-bullets-and-text-upcoming-step {
|
|
63
|
-
@apply flex items-start;
|
|
64
|
-
}
|
|
65
|
-
.stepper-bullets-and-text-upcoming-step-level1 {
|
|
66
|
-
@apply flex-shrink-0 h-5 w-5 relative flex items-center justify-center;
|
|
67
|
-
}
|
|
68
|
-
.stepper-bullets-and-text-upcoming-step-level2 {
|
|
69
|
-
@apply h-2 w-2 bg-gray-300 rounded-full group-hover:bg-gray-400;
|
|
70
|
-
}
|
|
71
|
-
.stepper-bullets-and-text-upcoming-step-container {
|
|
72
|
-
@apply ml-3 text-sm font-medium text-gray-500 group-hover:text-gray-900;
|
|
73
|
-
}
|
|
74
|
+
/* Circles */
|
|
74
75
|
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
@apply text-sm font-medium text-gray-500;
|
|
170
|
-
}
|
|
76
|
+
/* Panels With Border */
|
|
77
|
+
.panels-with-border-container {
|
|
78
|
+
@apply border-t border-b border-gray-200;
|
|
79
|
+
}
|
|
80
|
+
.panels-with-border-nav {
|
|
81
|
+
@apply mx-auto max-w-7xl px-4 sm:px-6 lg:px-8;
|
|
82
|
+
}
|
|
83
|
+
.panels-with-border-ol {
|
|
84
|
+
@apply rounded-md overflow-hidden lg:flex lg:border-l lg:border-r lg:border-gray-200 lg:rounded-none;
|
|
85
|
+
}
|
|
86
|
+
.panels-with-border-li {
|
|
87
|
+
@apply relative overflow-hidden lg:flex-1 cursor-pointer;
|
|
88
|
+
}
|
|
89
|
+
.panels-with-border-completed-step {
|
|
90
|
+
@apply border border-gray-200 overflow-hidden border-b-0 rounded-t-md lg:border-0;
|
|
91
|
+
}
|
|
92
|
+
.panels-with-border-completed-step-level1 {
|
|
93
|
+
@apply absolute top-0 left-0 w-1 h-full bg-transparent group-hover:bg-gray-200 lg:w-full lg:h-1 lg:bottom-0 lg:top-auto;
|
|
94
|
+
}
|
|
95
|
+
.panels-with-border-completed-step-level2 {
|
|
96
|
+
@apply px-6 py-5 flex items-start text-sm font-medium;
|
|
97
|
+
}
|
|
98
|
+
.panels-with-border-completed-step-level21 {
|
|
99
|
+
@apply flex-shrink-0;
|
|
100
|
+
}
|
|
101
|
+
.panels-with-border-completed-step-level211 {
|
|
102
|
+
@apply w-10 h-10 flex items-center justify-center bg-blue-600 rounded-full;
|
|
103
|
+
}
|
|
104
|
+
.panels-with-border-completed-step-level22 {
|
|
105
|
+
@apply mt-0.5 ml-4 min-w-0 flex flex-col;
|
|
106
|
+
}
|
|
107
|
+
.panels-with-border-completed-step-level221 {
|
|
108
|
+
@apply text-xs font-semibold tracking-wide uppercase;
|
|
109
|
+
}
|
|
110
|
+
.panels-with-border-completed-step-level222 {
|
|
111
|
+
@apply text-sm font-medium text-gray-500;
|
|
112
|
+
}
|
|
113
|
+
.panels-with-border-active-step {
|
|
114
|
+
@apply border border-gray-200 overflow-hidden lg:border-0;
|
|
115
|
+
}
|
|
116
|
+
.panels-with-border-active-step-level1 {
|
|
117
|
+
@apply absolute top-0 left-0 w-1 h-full bg-blue-600 lg:w-full lg:h-1 lg:bottom-0 lg:top-auto;
|
|
118
|
+
}
|
|
119
|
+
.panels-with-border-active-step-level2 {
|
|
120
|
+
@apply px-6 py-5 flex items-start text-sm font-medium lg:pl-9;
|
|
121
|
+
}
|
|
122
|
+
.panels-with-border-active-step-level21 {
|
|
123
|
+
@apply flex-shrink-0;
|
|
124
|
+
}
|
|
125
|
+
.panels-with-border-active-step-level211 {
|
|
126
|
+
@apply w-10 h-10 flex items-center justify-center border-2 border-blue-600 rounded-full;
|
|
127
|
+
}
|
|
128
|
+
.panels-with-border-active-step-level211-text {
|
|
129
|
+
@apply text-blue-600;
|
|
130
|
+
}
|
|
131
|
+
.panels-with-border-active-step-level22 {
|
|
132
|
+
@apply mt-0.5 ml-4 min-w-0 flex flex-col;
|
|
133
|
+
}
|
|
134
|
+
.panels-with-border-active-step-level221 {
|
|
135
|
+
@apply text-xs font-semibold text-blue-600 tracking-wide uppercase;
|
|
136
|
+
}
|
|
137
|
+
.panels-with-border-active-step-level222 {
|
|
138
|
+
@apply text-sm font-medium text-gray-500;
|
|
139
|
+
}
|
|
140
|
+
.panels-with-border-step-separator {
|
|
141
|
+
@apply hidden absolute top-0 left-0 w-3 inset-0 lg:block;
|
|
142
|
+
}
|
|
143
|
+
.panels-with-border-upcoming-step {
|
|
144
|
+
@apply border border-gray-200 overflow-hidden border-t-0 rounded-b-md lg:border-0;
|
|
145
|
+
}
|
|
146
|
+
.panels-with-border-upcoming-step-level1 {
|
|
147
|
+
@apply absolute top-0 left-0 w-1 h-full bg-transparent group-hover:bg-gray-200 lg:w-full lg:h-1 lg:bottom-0 lg:top-auto;
|
|
148
|
+
}
|
|
149
|
+
.panels-with-border-upcoming-step-level2 {
|
|
150
|
+
@apply px-6 py-5 flex items-start text-sm font-medium lg:pl-9;
|
|
151
|
+
}
|
|
152
|
+
.panels-with-border-upcoming-step-level21 {
|
|
153
|
+
@apply flex-shrink-0;
|
|
154
|
+
}
|
|
155
|
+
.panels-with-border-upcoming-step-level211 {
|
|
156
|
+
@apply w-10 h-10 flex items-center justify-center border-2 border-gray-300 rounded-full;
|
|
157
|
+
}
|
|
158
|
+
.panels-with-border-upcoming-step-level211-text {
|
|
159
|
+
@apply text-gray-500;
|
|
160
|
+
}
|
|
161
|
+
.panels-with-border-upcoming-step-level22 {
|
|
162
|
+
@apply mt-0.5 ml-4 min-w-0 flex flex-col;
|
|
163
|
+
}
|
|
164
|
+
.panels-with-border-upcoming-step-level221 {
|
|
165
|
+
@apply text-xs font-semibold text-gray-500 tracking-wide uppercase;
|
|
166
|
+
}
|
|
167
|
+
.panels-with-border-upcoming-step-level222 {
|
|
168
|
+
@apply text-sm font-medium text-gray-500;
|
|
169
|
+
}
|
|
@@ -1,28 +1,27 @@
|
|
|
1
|
+
.tab-group-select-hidden {
|
|
2
|
+
@apply sm:hidden;
|
|
3
|
+
}
|
|
1
4
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
+
.tab-group-select {
|
|
6
|
+
@apply block w-full pl-3 pr-10 py-2 text-base border-gray-300 focus:outline-none focus:ring-blue-500 focus:border-blue-500 sm:text-sm rounded-md;
|
|
7
|
+
}
|
|
5
8
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
+
.tab-active {
|
|
10
|
+
@apply border-gray-500 text-gray-900 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm;
|
|
11
|
+
}
|
|
9
12
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
+
.tab {
|
|
14
|
+
@apply border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-4 px-1 border-b-2 font-medium text-sm;
|
|
15
|
+
}
|
|
13
16
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
+
.tab-group-container-nav {
|
|
18
|
+
@apply -mb-px flex space-x-8;
|
|
19
|
+
}
|
|
17
20
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
+
.tab-group-container-hidden {
|
|
22
|
+
@apply hidden sm:block;
|
|
23
|
+
}
|
|
21
24
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
.tab-group-container {
|
|
27
|
-
@apply border-b border-gray-200;
|
|
28
|
-
}
|
|
25
|
+
.tab-group-container {
|
|
26
|
+
@apply border-b border-gray-200;
|
|
27
|
+
}
|