@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,63 +1,62 @@
|
|
|
1
|
+
.list-view-container {
|
|
2
|
+
@apply flex flex-col border border-gray-200 rounded-lg;
|
|
3
|
+
}
|
|
1
4
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
+
.list-view-container-inner {
|
|
6
|
+
@apply overflow-y-hidden overflow-x-auto rounded-lg;
|
|
7
|
+
}
|
|
5
8
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
+
.list-view-table {
|
|
10
|
+
@apply min-w-full divide-y divide-gray-200;
|
|
11
|
+
}
|
|
9
12
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
+
.list-view-thead {
|
|
14
|
+
@apply bg-gray-50;
|
|
15
|
+
}
|
|
13
16
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
+
.list-view-th-details {
|
|
18
|
+
@apply px-2 py-3 w-6 text-left text-xs font-medium text-gray-500 uppercase;
|
|
19
|
+
}
|
|
17
20
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
+
.list-view-th {
|
|
22
|
+
@apply px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider;
|
|
23
|
+
}
|
|
21
24
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
+
.list-view-th-full {
|
|
26
|
+
@apply w-full px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider whitespace-normal break-words;
|
|
27
|
+
}
|
|
25
28
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
+
.list-view-th-half {
|
|
30
|
+
@apply w-full sm:w-1/2 px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider whitespace-normal break-words;
|
|
31
|
+
}
|
|
29
32
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
+
.list-view-tbody {
|
|
34
|
+
@apply bg-white divide-y divide-gray-200;
|
|
35
|
+
}
|
|
33
36
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
.list-view-tr {
|
|
38
|
+
@apply hover:bg-gray-50;
|
|
39
|
+
}
|
|
37
40
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
+
.list-view-td-details {
|
|
42
|
+
@apply px-2 py-2 whitespace-nowrap items-center;
|
|
43
|
+
}
|
|
41
44
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
+
.list-view-td {
|
|
46
|
+
@apply px-4 py-4 whitespace-nowrap;
|
|
47
|
+
}
|
|
45
48
|
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
+
.list-view-td-full {
|
|
50
|
+
@apply w-full px-4 py-4 break-all;
|
|
51
|
+
}
|
|
49
52
|
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
+
.list-view-td-half {
|
|
54
|
+
@apply w-full sm:w-1/2 px-4 py-4 whitespace-normal break-words;
|
|
55
|
+
}
|
|
53
56
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
+
.details-button {
|
|
58
|
+
@apply inline-flex items-center px-3 py-2 border border-transparent shadow-sm text-sm leading-4 font-medium rounded-md bg-gray-100 hover:bg-gray-200 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-gray-100;
|
|
59
|
+
}
|
|
57
60
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
.expand-collapse-button {
|
|
63
|
-
@apply inline-flex items-center px-3 py-2 border border-transparent shadow-sm text-sm leading-4 font-medium rounded-md bg-gray-100 hover:bg-gray-200 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-gray-100; }
|
|
61
|
+
.expand-collapse-button {
|
|
62
|
+
@apply inline-flex items-center px-3 py-2 border border-transparent shadow-sm text-sm leading-4 font-medium rounded-md bg-gray-100 hover:bg-gray-200 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-gray-100; }
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
.modal-open {
|
|
2
2
|
overflow: hidden;
|
|
3
3
|
}
|
|
4
|
+
|
|
4
5
|
.modal-open .modal {
|
|
5
6
|
overflow-x: hidden;
|
|
6
7
|
overflow-y: auto;
|
|
7
8
|
}
|
|
9
|
+
|
|
8
10
|
.modal {
|
|
9
11
|
position: fixed;
|
|
10
12
|
top: 0;
|
|
@@ -16,12 +18,14 @@
|
|
|
16
18
|
overflow: hidden;
|
|
17
19
|
outline: 0;
|
|
18
20
|
}
|
|
21
|
+
|
|
19
22
|
.modal-dialog {
|
|
20
23
|
position: relative;
|
|
21
24
|
width: auto;
|
|
22
25
|
margin: 0.5rem;
|
|
23
26
|
pointer-events: none;
|
|
24
27
|
}
|
|
28
|
+
|
|
25
29
|
.modal.fade .modal-dialog {
|
|
26
30
|
transition: transform 0.3s ease-out;
|
|
27
31
|
transform: translate(0, -50px);
|
|
@@ -30,58 +34,72 @@
|
|
|
30
34
|
.fade {
|
|
31
35
|
transition: opacity 0.15s linear;
|
|
32
36
|
}
|
|
37
|
+
|
|
33
38
|
.fade:not(.show) {
|
|
34
39
|
opacity: 0;
|
|
35
40
|
}
|
|
41
|
+
|
|
36
42
|
@media (prefers-reduced-motion: reduce) {
|
|
37
43
|
.modal.fade .modal-dialog {
|
|
38
44
|
transition: none;
|
|
39
45
|
}
|
|
40
46
|
}
|
|
47
|
+
|
|
41
48
|
.modal.show .modal-dialog {
|
|
42
49
|
transform: none;
|
|
43
50
|
}
|
|
51
|
+
|
|
44
52
|
.modal.modal-static .modal-dialog {
|
|
45
53
|
transform: scale(1.02);
|
|
46
54
|
}
|
|
55
|
+
|
|
47
56
|
.modal-dialog-scrollable {
|
|
48
57
|
display: flex;
|
|
49
|
-
max-height:
|
|
58
|
+
max-height: calc(100% - 1rem);
|
|
50
59
|
}
|
|
60
|
+
|
|
51
61
|
.modal-dialog-scrollable .modal-content {
|
|
52
|
-
max-height:
|
|
62
|
+
max-height: calc(100vh - 1rem);
|
|
53
63
|
overflow: hidden;
|
|
54
64
|
}
|
|
65
|
+
|
|
55
66
|
.modal-dialog-scrollable .modal-header,
|
|
56
67
|
.modal-dialog-scrollable .modal-footer {
|
|
57
68
|
flex-shrink: 0;
|
|
58
69
|
}
|
|
70
|
+
|
|
59
71
|
.modal-dialog-scrollable .modal-body {
|
|
60
72
|
overflow-y: auto;
|
|
61
73
|
}
|
|
74
|
+
|
|
62
75
|
.modal-dialog-centered {
|
|
63
76
|
display: flex;
|
|
64
77
|
align-items: center;
|
|
65
|
-
min-height:
|
|
78
|
+
min-height: calc(100% - 1rem);
|
|
66
79
|
}
|
|
80
|
+
|
|
67
81
|
.modal-dialog-centered::before {
|
|
68
82
|
display: block;
|
|
69
|
-
height:
|
|
83
|
+
height: calc(100vh - 1rem);
|
|
70
84
|
height: -webkit-min-content;
|
|
71
85
|
height: min-content;
|
|
72
86
|
content: "";
|
|
73
87
|
}
|
|
88
|
+
|
|
74
89
|
.modal-dialog-centered.modal-dialog-scrollable {
|
|
75
90
|
flex-direction: column;
|
|
76
91
|
justify-content: center;
|
|
77
92
|
height: 100%;
|
|
78
93
|
}
|
|
94
|
+
|
|
79
95
|
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
|
|
80
96
|
max-height: none;
|
|
81
97
|
}
|
|
98
|
+
|
|
82
99
|
.modal-dialog-centered.modal-dialog-scrollable::before {
|
|
83
100
|
content: none;
|
|
84
101
|
}
|
|
102
|
+
|
|
85
103
|
.modal-content {
|
|
86
104
|
position: relative;
|
|
87
105
|
display: flex;
|
|
@@ -94,6 +112,7 @@
|
|
|
94
112
|
border-radius: 0.3rem;
|
|
95
113
|
outline: 0;
|
|
96
114
|
}
|
|
115
|
+
|
|
97
116
|
.modal-backdrop {
|
|
98
117
|
position: fixed;
|
|
99
118
|
top: 0;
|
|
@@ -103,12 +122,15 @@
|
|
|
103
122
|
height: 100vh;
|
|
104
123
|
background-color: #000;
|
|
105
124
|
}
|
|
125
|
+
|
|
106
126
|
.modal-backdrop.fade {
|
|
107
127
|
opacity: 0;
|
|
108
128
|
}
|
|
129
|
+
|
|
109
130
|
.modal-backdrop.show {
|
|
110
131
|
opacity: 0.5;
|
|
111
132
|
}
|
|
133
|
+
|
|
112
134
|
.modal-scrollbar-measure {
|
|
113
135
|
position: absolute;
|
|
114
136
|
top: -9999px;
|
|
@@ -116,6 +138,7 @@
|
|
|
116
138
|
height: 50px;
|
|
117
139
|
overflow: scroll;
|
|
118
140
|
}
|
|
141
|
+
|
|
119
142
|
@media (min-width: 576px) {
|
|
120
143
|
.modal-dialog {
|
|
121
144
|
max-width: 500px;
|
|
@@ -123,17 +146,19 @@
|
|
|
123
146
|
}
|
|
124
147
|
|
|
125
148
|
.modal-dialog-scrollable {
|
|
126
|
-
max-height:
|
|
149
|
+
max-height: calc(100% - 3.5rem);
|
|
127
150
|
}
|
|
151
|
+
|
|
128
152
|
.modal-dialog-scrollable .modal-content {
|
|
129
|
-
max-height:
|
|
153
|
+
max-height: calc(100vh - 3.5rem);
|
|
130
154
|
}
|
|
131
155
|
|
|
132
156
|
.modal-dialog-centered {
|
|
133
|
-
min-height:
|
|
157
|
+
min-height: calc(100% - 3.5rem);
|
|
134
158
|
}
|
|
159
|
+
|
|
135
160
|
.modal-dialog-centered::before {
|
|
136
|
-
height:
|
|
161
|
+
height: calc(100vh - 3.5rem);
|
|
137
162
|
height: -webkit-min-content;
|
|
138
163
|
height: min-content;
|
|
139
164
|
}
|
|
@@ -142,12 +167,14 @@
|
|
|
142
167
|
max-width: 300px;
|
|
143
168
|
}
|
|
144
169
|
}
|
|
170
|
+
|
|
145
171
|
@media (min-width: 992px) {
|
|
146
172
|
.modal-lg,
|
|
147
173
|
.modal-xl {
|
|
148
174
|
max-width: 800px;
|
|
149
175
|
}
|
|
150
176
|
}
|
|
177
|
+
|
|
151
178
|
@media (min-width: 1200px) {
|
|
152
179
|
.modal-xl {
|
|
153
180
|
max-width: 1140px;
|
|
@@ -1,48 +1,47 @@
|
|
|
1
|
+
.model-view-container {
|
|
2
|
+
@apply mt-5 min-w-full min-h-screen;
|
|
3
|
+
}
|
|
1
4
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
+
.model-view-container-inner {
|
|
6
|
+
@apply lg:grid lg:grid-cols-12 lg:gap-x-5;
|
|
7
|
+
}
|
|
5
8
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
+
.model-view-aside {
|
|
10
|
+
@apply py-6 px-2 sm:px-6 lg:py-0 lg:px-0 md:col-span-3;
|
|
11
|
+
}
|
|
9
12
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
+
.model-view-aside-header-section {
|
|
14
|
+
@apply min-w-full;
|
|
15
|
+
}
|
|
13
16
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
+
.model-view-aside-header-container {
|
|
18
|
+
@apply bg-white shadow-sm border border-gray-200 rounded-xl;
|
|
19
|
+
}
|
|
17
20
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
+
.model-view-aside-header-container-inner {
|
|
22
|
+
@apply flex flex-col bg-gray-50 justify-self-stretch rounded-t-xl h-24;
|
|
23
|
+
}
|
|
21
24
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
+
.model-view-menu-container {
|
|
26
|
+
@apply bg-white px-4 py-4 flow-root hidden sm:block rounded-b-xl;
|
|
27
|
+
}
|
|
25
28
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
+
.model-view-menu-container-mobile {
|
|
30
|
+
@apply mt-2 px-4 py-2 flow-root sm:hidden;
|
|
31
|
+
}
|
|
29
32
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
+
.model-view-menu-nav {
|
|
34
|
+
@apply h-full flex flex-col;
|
|
35
|
+
}
|
|
33
36
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
+
.model-view-menu-item {
|
|
38
|
+
@apply space-y-1;
|
|
39
|
+
}
|
|
37
40
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
+
.model-view-menu-item-far {
|
|
42
|
+
@apply mt-auto pt-10 space-y-1;
|
|
43
|
+
}
|
|
41
44
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
.model-view-details-container {
|
|
47
|
-
@apply sm:px-6 lg:px-2 lg:col-span-9 md:col-span-10;
|
|
48
|
-
}
|
|
45
|
+
.model-view-details-container {
|
|
46
|
+
@apply sm:px-6 lg:px-2 lg:col-span-9 md:col-span-10;
|
|
47
|
+
}
|
|
@@ -1,66 +1,64 @@
|
|
|
1
|
+
.nav-link {
|
|
2
|
+
@apply cursor-pointer text-white hover:bg-gray-700 hover:text-white hover:shadow-sm px-3 py-2 rounded-lg text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
3
|
+
}
|
|
1
4
|
|
|
5
|
+
.sidebar .nav-link {
|
|
6
|
+
@apply cursor-pointer text-gray-300 hover:bg-gray-700 hover:text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
|
|
7
|
+
}
|
|
2
8
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
9
|
+
.nav-link-profile {
|
|
10
|
+
@apply flex items-center cursor-pointer px-4 py-2 rounded-md text-xs text-gray-700 hover:bg-gray-100 whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
11
|
+
}
|
|
6
12
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
13
|
+
.nav-link-mobile {
|
|
14
|
+
@apply cursor-pointer text-gray-300 hover:bg-gray-700 hover:text-white block px-3 py-2 rounded-md text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
15
|
+
}
|
|
10
16
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
17
|
+
.sidebar .nav-link-list-container {
|
|
18
|
+
@apply flex-1 flex flex-col overflow-y-auto;
|
|
19
|
+
}
|
|
14
20
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
21
|
+
.sidebar .nav-link-list-container-inner {
|
|
22
|
+
@apply flex-1 px-2 py-4 space-y-2;
|
|
23
|
+
}
|
|
18
24
|
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
25
|
+
.sidebar .nav-link-list-container-inner .icons-only {
|
|
26
|
+
@apply flex-1 px-2 py-4 space-y-4;
|
|
27
|
+
}
|
|
22
28
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
29
|
+
.nav-link-active {
|
|
30
|
+
@apply cursor-default text-sky-600 bg-gray-900 hover:bg-gray-900 px-3 py-2 rounded-lg text-xs shadow-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
31
|
+
}
|
|
26
32
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
33
|
+
.sidebar .nav-link-active {
|
|
34
|
+
@apply cursor-default bg-gray-900 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
|
|
35
|
+
}
|
|
30
36
|
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
37
|
+
.sidebar .nav-link-active-b {
|
|
38
|
+
@apply cursor-default bg-gray-900 border-b border-sky-400 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
|
|
39
|
+
}
|
|
34
40
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
41
|
+
.sidebar .nav-link-active-l {
|
|
42
|
+
@apply cursor-default bg-gray-900 border-l border-sky-400 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
|
|
43
|
+
}
|
|
38
44
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
45
|
+
.nav-link-profile-active {
|
|
46
|
+
@apply cursor-default rounded-md block px-4 py-2 text-xs text-sky-900 shadow-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
47
|
+
}
|
|
42
48
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
.nav-link-profile-active {
|
|
48
|
-
@apply cursor-default rounded-md block px-4 py-2 text-xs text-sky-900 shadow-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.nav-link-mobile-active {
|
|
52
|
-
@apply cursor-default bg-gray-900 text-sky-300 block px-3 py-2 rounded-lg text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
53
|
-
}
|
|
49
|
+
.nav-link-mobile-active {
|
|
50
|
+
@apply cursor-default bg-gray-900 text-sky-300 block px-3 py-2 rounded-lg text-xs whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
51
|
+
}
|
|
54
52
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
53
|
+
.view-nav-link {
|
|
54
|
+
@apply cursor-pointer rounded-md text-gray-600 hover:border-gray-50 border-transparent border-l-2 hover:bg-gray-50 hover:text-gray-900 py-2 px-4 flex items-center text-sm whitespace-nowrap overflow-ellipsis overflow-hidden;
|
|
55
|
+
}
|
|
58
56
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
57
|
+
.view-nav-link-active {
|
|
58
|
+
@apply cursor-default bg-gray-100 border-gray-600 hover:border-gray-600 text-gray-900;
|
|
59
|
+
}
|
|
62
60
|
|
|
63
61
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
62
|
+
.min-nav-link-text-width {
|
|
63
|
+
width: 220px;
|
|
64
|
+
}
|
|
@@ -1,33 +1,31 @@
|
|
|
1
|
+
.notifications-nav-link {
|
|
2
|
+
@apply block py-3 pl-3 pr-2 text-xs text-gray-700 hover:bg-gray-50;
|
|
3
|
+
}
|
|
1
4
|
|
|
5
|
+
.header-notifications {
|
|
6
|
+
@apply flex gap-3 items-center;
|
|
7
|
+
}
|
|
2
8
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
9
|
+
.header-notifications-dropdown-button {
|
|
10
|
+
@apply max-w-xs focus:outline-none rounded-full flex items-center text-sm ring-1 ring-blue-300 focus:ring-offset-1
|
|
11
|
+
focus:ring-offset-blue-800 focus:ring-blue-400 transition ease-in duration-100;
|
|
12
|
+
}
|
|
6
13
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
14
|
+
.header-notifications-dropdown {
|
|
15
|
+
@apply z-50 origin-top-right absolute right-0 pt-3 pl-2 mt-2 w-80 rounded-lg shadow-lg bg-white ring-1 ring-black ring-black/5 focus:outline-none;
|
|
16
|
+
}
|
|
10
17
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
}
|
|
18
|
+
.header-notifications-dropdown-with-username {
|
|
19
|
+
@apply z-50 origin-top-right absolute right-0 pt-3 pl-1.5 mt-1 w-80 rounded-lg shadow-lg bg-white ring-1 ring-black ring-black/5 focus:outline-none;
|
|
20
|
+
}
|
|
15
21
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
22
|
+
.header-notifications-dropdown-view-all-button{
|
|
23
|
+
@apply items-center align-text-bottom font-medium w-full px-2.5 py-2.5 text-xs text-gray-600 focus:outline-none;
|
|
24
|
+
}
|
|
19
25
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
.header-notifications-dropdown-view-all-button{
|
|
25
|
-
@apply items-center align-text-bottom font-medium w-full px-2.5 py-2.5 text-xs text-gray-600 focus:outline-none;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.notification-messages::-webkit-scrollbar-thumb {
|
|
29
|
-
@apply bg-gray-600 hover:bg-gray-700;
|
|
30
|
-
}
|
|
26
|
+
.notification-messages::-webkit-scrollbar-thumb {
|
|
27
|
+
@apply bg-gray-600 hover:bg-gray-700;
|
|
28
|
+
}
|
|
31
29
|
|
|
32
30
|
|
|
33
31
|
.notification-messages::-webkit-scrollbar {
|
|
@@ -36,4 +34,4 @@
|
|
|
36
34
|
background: transparent;
|
|
37
35
|
cursor: pointer;
|
|
38
36
|
/* or add it to the track */
|
|
39
|
-
}
|
|
37
|
+
}
|
|
@@ -1,32 +1,31 @@
|
|
|
1
|
+
.pager-container {
|
|
2
|
+
@apply flex flex-col sm:flex-row mb-2 justify-start;
|
|
3
|
+
}
|
|
1
4
|
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
+
.pager-container-near {
|
|
6
|
+
@apply sm:flex-1 justify-start items-center mb-1 sm:mb-0;
|
|
7
|
+
}
|
|
5
8
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
+
.pager-container-far {
|
|
10
|
+
@apply justify-start flex-nowrap items-center;
|
|
11
|
+
}
|
|
9
12
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
+
.pager-icon-button {
|
|
14
|
+
@apply inline-flex relative ml-1 mr-2 items-center px-2 py-2 rounded-l-sm text-sm font-medium text-gray-500 hover:bg-gray-50;
|
|
15
|
+
}
|
|
13
16
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
+
.pager-pages-container {
|
|
18
|
+
@apply relative inline-flex rounded-sm;
|
|
19
|
+
}
|
|
17
20
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
+
.pager-button {
|
|
22
|
+
@apply relative ml-1 inline-flex items-center px-1 py-2 rounded-l-sm text-sm font-medium text-gray-500 hover:bg-gray-50;
|
|
23
|
+
}
|
|
21
24
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
+
.pager-arrow-button-left {
|
|
26
|
+
@apply inline-flex relative ml-1 items-center px-1 py-2 rounded-l-sm text-sm font-medium text-gray-500 disabled:text-gray-300 disabled:hover:bg-none hover:bg-gray-50;
|
|
27
|
+
}
|
|
25
28
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
.pager-arrow-button-right {
|
|
31
|
-
@apply inline-flex relative mr-1 items-center px-1 py-2 rounded-l-sm text-sm font-medium text-gray-500 disabled:text-gray-300 disabled:hover:bg-none hover:bg-gray-50;
|
|
32
|
-
}
|
|
29
|
+
.pager-arrow-button-right {
|
|
30
|
+
@apply inline-flex relative mr-1 items-center px-1 py-2 rounded-l-sm text-sm font-medium text-gray-500 disabled:text-gray-300 disabled:hover:bg-none hover:bg-gray-50;
|
|
31
|
+
}
|