@indice/ng-components 0.4.0-beta.2 → 0.4.0-beta.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/fesm2022/indice-ng-components.mjs +7 -3
- package/fesm2022/indice-ng-components.mjs.map +1 -1
- package/index.d.ts +1 -1
- package/package.json +3 -2
- package/src/assets/styles/advanced-search.css +57 -0
- package/src/assets/styles/avatar-initials.css +37 -0
- package/src/assets/styles/base.css +36 -0
- package/src/assets/styles/cards.css +85 -0
- package/src/assets/styles/collapsible-panel.css +24 -0
- package/src/assets/styles/combobox.css +28 -0
- package/src/assets/styles/components.css +36 -0
- package/src/assets/styles/date-picker.component.css +68 -0
- package/src/assets/styles/drop-down-menu.css +49 -0
- package/src/assets/styles/form-layout.css +52 -0
- package/{_styles.scss → src/assets/styles/indice-ng-icons-inline.css} +0 -2038
- package/src/assets/styles/language-selection.component.css +11 -0
- package/src/assets/styles/list-view-empty-state.css +0 -0
- package/src/assets/styles/list-view.css +63 -0
- package/{modal.css → src/assets/styles/modal.css} +0 -2
- package/src/assets/styles/model-view-layout.css +48 -0
- package/src/assets/styles/nav-links.css +66 -0
- package/src/assets/styles/notifications-indicator.component.css +39 -0
- package/src/assets/styles/pager.css +32 -0
- package/src/assets/styles/progress-bar.component.css +15 -0
- package/src/assets/styles/shell-layout.css +252 -0
- package/src/assets/styles/shell-sidebar-header.css +2 -0
- package/src/assets/styles/shell-sidebar-layout.css +125 -0
- package/src/assets/styles/shell-sidebar.css +32 -0
- package/src/assets/styles/side-pane.css +50 -0
- package/src/assets/styles/side-view-layout.css +57 -0
- package/src/assets/styles/stepper.css +170 -0
- package/src/assets/styles/tab-group.css +28 -0
- package/src/assets/styles/toast.css +70 -0
- package/src/assets/styles/toggle-button.component.css +52 -0
- package/src/assets/styles/toggle-buttons-list.component.css +45 -0
- package/src/assets/styles/toggle.css +24 -0
- package/src/assets/styles/view-layout.css +89 -0
- package/src/styles.css +51 -0
- package/src/tailwindcss.css +1 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
.langs-button {
|
|
2
|
+
@apply text-blue-300 hover:text-blue-400;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.langs-menu-expanded {
|
|
6
|
+
@apply transition ease-out duration-200 origin-top-right z-30 absolute right-0 mt-2 w-56 rounded-lg shadow-lg bg-white ring-1 ring-black ring-black/5 focus:outline-none;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.langs-menu-collapsed {
|
|
10
|
+
@apply hidden transition ease-in duration-75 origin-top-right z-30 right-0 mt-2 w-56 rounded-lg shadow-lg bg-white ring-1 ring-black ring-black/5 focus:outline-none;
|
|
11
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
|
|
2
|
+
.list-view-container {
|
|
3
|
+
@apply flex flex-col border border-gray-200 rounded-lg;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.list-view-container-inner {
|
|
7
|
+
@apply overflow-y-hidden overflow-x-auto rounded-lg;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.list-view-table {
|
|
11
|
+
@apply min-w-full divide-y divide-gray-200;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.list-view-thead {
|
|
15
|
+
@apply bg-gray-50;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.list-view-th-details {
|
|
19
|
+
@apply px-2 py-3 w-6 text-left text-xs font-medium text-gray-500 uppercase;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.list-view-th {
|
|
23
|
+
@apply px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.list-view-th-full {
|
|
27
|
+
@apply w-full px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider whitespace-normal break-words;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.list-view-th-half {
|
|
31
|
+
@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;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.list-view-tbody {
|
|
35
|
+
@apply bg-white divide-y divide-gray-200;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.list-view-tr {
|
|
39
|
+
@apply hover:bg-gray-50;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.list-view-td-details {
|
|
43
|
+
@apply px-2 py-2 whitespace-nowrap items-center;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.list-view-td {
|
|
47
|
+
@apply px-4 py-4 whitespace-nowrap;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.list-view-td-full {
|
|
51
|
+
@apply w-full px-4 py-4 break-all;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.list-view-td-half {
|
|
55
|
+
@apply w-full sm:w-1/2 px-4 py-4 whitespace-normal break-words;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.details-button {
|
|
59
|
+
@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;
|
|
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; }
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
|
|
2
|
+
.model-view-container {
|
|
3
|
+
@apply mt-5 min-w-full min-h-screen;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.model-view-container-inner {
|
|
7
|
+
@apply lg:grid lg:grid-cols-12 lg:gap-x-5;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.model-view-aside {
|
|
11
|
+
@apply py-6 px-2 sm:px-6 lg:py-0 lg:px-0 md:col-span-3;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.model-view-aside-header-section {
|
|
15
|
+
@apply min-w-full;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.model-view-aside-header-container {
|
|
19
|
+
@apply bg-white shadow-sm border border-gray-200 rounded-xl;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.model-view-aside-header-container-inner {
|
|
23
|
+
@apply flex flex-col bg-gray-50 justify-self-stretch rounded-t-xl h-24;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.model-view-menu-container {
|
|
27
|
+
@apply bg-white px-4 py-4 flow-root hidden sm:block rounded-b-xl;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.model-view-menu-container-mobile {
|
|
31
|
+
@apply mt-2 px-4 py-2 flow-root sm:hidden;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.model-view-menu-nav {
|
|
35
|
+
@apply h-full flex flex-col;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.model-view-menu-item {
|
|
39
|
+
@apply space-y-1;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.model-view-menu-item-far {
|
|
43
|
+
@apply mt-auto pt-10 space-y-1;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.model-view-details-container {
|
|
47
|
+
@apply sm:px-6 lg:px-2 lg:col-span-9 md:col-span-10;
|
|
48
|
+
}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
.nav-link {
|
|
4
|
+
@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;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.sidebar .nav-link {
|
|
8
|
+
@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;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.nav-link-profile {
|
|
12
|
+
@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;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.nav-link-mobile {
|
|
16
|
+
@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;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.sidebar .nav-link-list-container {
|
|
20
|
+
@apply flex-1 flex flex-col overflow-y-auto;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.sidebar .nav-link-list-container-inner {
|
|
24
|
+
@apply flex-1 px-2 py-4 space-y-2;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.sidebar .nav-link-list-container-inner .icons-only {
|
|
28
|
+
@apply flex-1 px-2 py-4 space-y-4;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.nav-link-active {
|
|
32
|
+
@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;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.sidebar .nav-link-active {
|
|
36
|
+
@apply cursor-default bg-gray-900 text-white flex items-center px-2 py-2 text-sm font-medium rounded-md;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.sidebar .nav-link-active-b {
|
|
40
|
+
@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;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.sidebar .nav-link-active-l {
|
|
44
|
+
@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;
|
|
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
|
+
}
|
|
54
|
+
|
|
55
|
+
.view-nav-link {
|
|
56
|
+
@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;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.view-nav-link-active {
|
|
60
|
+
@apply cursor-default bg-gray-100 border-gray-600 hover:border-gray-600 text-gray-900;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
.min-nav-link-text-width {
|
|
65
|
+
width: 220px;
|
|
66
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
.notifications-nav-link {
|
|
4
|
+
@apply block py-3 pl-3 pr-2 text-xs text-gray-700 hover:bg-gray-50;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.header-notifications {
|
|
8
|
+
@apply flex gap-3 items-center;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.header-notifications-dropdown-button {
|
|
12
|
+
@apply max-w-xs focus:outline-none rounded-full flex items-center text-sm ring-1 ring-blue-300 focus:ring-offset-1
|
|
13
|
+
focus:ring-offset-blue-800 focus:ring-blue-400 transition ease-in duration-100;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
.header-notifications-dropdown {
|
|
17
|
+
@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;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.header-notifications-dropdown-with-username {
|
|
21
|
+
@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;
|
|
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
|
+
}
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
.notification-messages::-webkit-scrollbar {
|
|
34
|
+
width: 7px;
|
|
35
|
+
height: 7px;
|
|
36
|
+
background: transparent;
|
|
37
|
+
cursor: pointer;
|
|
38
|
+
/* or add it to the track */
|
|
39
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
|
|
2
|
+
.pager-container {
|
|
3
|
+
@apply flex flex-col sm:flex-row mb-2 justify-start;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.pager-container-near {
|
|
7
|
+
@apply sm:flex-1 justify-start items-center mb-1 sm:mb-0;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.pager-container-far {
|
|
11
|
+
@apply justify-start flex-nowrap items-center;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.pager-icon-button {
|
|
15
|
+
@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;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.pager-pages-container {
|
|
19
|
+
@apply relative inline-flex rounded-sm;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.pager-button {
|
|
23
|
+
@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;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.pager-arrow-button-left {
|
|
27
|
+
@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;
|
|
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
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
.progress-bar-container {
|
|
2
|
+
@apply flex grid grid-cols-1;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.progress-bar-label {
|
|
6
|
+
@apply text-xs mt-2 truncate text-ellipsis;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.progress-bar-backdrop {
|
|
10
|
+
@apply flex mt-1 h-4 rounded-md backdrop-blur-sm bg-slate-200/25;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.progress-bar-inner {
|
|
14
|
+
@apply h-2 m-1 rounded-md bg-sky-200 transition-[width] ease-in-out duration-300 transform;
|
|
15
|
+
}
|
|
@@ -0,0 +1,252 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
.app-logo {
|
|
4
|
+
@apply h-8 w-8;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.shell-container {
|
|
8
|
+
@apply antialiased font-sans bg-gray-100 h-full;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.shell-header-container {
|
|
12
|
+
@apply bg-gradient-to-r from-gray-900 to-gray-800 pb-24 sm:pb-28 z-50;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.sidebar .shell-header-container {
|
|
16
|
+
@apply bg-gradient-to-r from-gray-900 to-gray-800 z-50 pb-0 sm:pb-0 w-full flex justify-end;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.shell-header-container-inner {
|
|
20
|
+
@apply max-w-7xl mx-auto;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.sidebar .shell-header-container-inner {
|
|
24
|
+
@apply max-w-full mx-auto;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.shell-header-container-inner-fluid {
|
|
28
|
+
@apply w-full mx-auto;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.shell-content-container {
|
|
32
|
+
@apply mx-auto -mt-24;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.sidebar .shell-content-container {
|
|
36
|
+
@apply mx-auto mt-0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.shell-content-container-no-header {
|
|
40
|
+
/* overide this style in your app */
|
|
41
|
+
@apply mx-auto ;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.sidebar .shell-content-container-inner {
|
|
45
|
+
@apply max-w-full px-4 pb-2 min-h-screen;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.shell-content-container-inner {
|
|
49
|
+
@apply max-w-7xl mx-auto px-4 pb-2 sm:px-6 lg:px-8 min-h-screen;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.shell-content-container-inner-fluid {
|
|
53
|
+
@apply w-full mx-auto min-h-screen ;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
.shell-header-paddings {
|
|
58
|
+
@apply mx-auto px-4 sm:px-6 lg:px-8;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
.sidebar .shell-header-paddings {
|
|
63
|
+
@apply mx-auto px-2;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.shell-header-border {
|
|
67
|
+
@apply border-b border-gray-700;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.sidebar .shell-header-border {
|
|
71
|
+
@apply border-0;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.shell-header-menu-container {
|
|
75
|
+
@apply flex items-center justify-between h-16;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.shell-header-md-visible {
|
|
79
|
+
@apply hidden sm:block;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.shell-header-link-container {
|
|
83
|
+
@apply hidden sm:ml-6 sm:block ml-10 flex-grow justify-start flex items-center space-x-4;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.shell-header-link-container-inner {
|
|
87
|
+
@apply flex justify-start;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.shell-header-logo-container {
|
|
91
|
+
@apply flex flex-grow-0 flex-shrink-0 items-center;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.shell-header-links-far-container {
|
|
95
|
+
@apply flex flex-grow-0 flex-shrink-0 items-center ml-2;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.shell-header-menu-rounded-button {
|
|
99
|
+
@apply bg-gray-800 p-1 text-gray-400 rounded-full hover:text-white focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-offset-gray-800 focus:ring-white;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.shell-header-menu-rounded-button-icon-style {
|
|
103
|
+
@apply h-6 w-6;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.shell-header-profile {
|
|
107
|
+
@apply flex items-center;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.shell-header-profile .shell-header-profile-userName {
|
|
111
|
+
@apply cursor-pointer text-white text-xs;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.shell-header-profile-dropdown-button {
|
|
115
|
+
@apply max-w-xs outline-none focus:outline-none rounded-full flex items-center text-sm ring-1 ring-blue-300 focus:ring-offset-1
|
|
116
|
+
focus:ring-offset-blue-800 focus:ring-blue-400 transition ease-in duration-100;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.shell-header-profile-dropdown {
|
|
120
|
+
@apply z-50 origin-top-right absolute right-0 mt-2 w-48 rounded-lg shadow-lg py-1 bg-white ring-1 ring-black ring-black/5 focus:outline-none;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.shell-header-profile-dropdown-with-username {
|
|
124
|
+
@apply z-50 origin-top-right absolute right-0 mt-24 w-48 rounded-lg shadow-lg py-1 bg-white ring-1 ring-black ring-black/5 focus:outline-none;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
.mobile-menu-button-container {
|
|
129
|
+
@apply -mr-2 grid grid-cols-1 sm:hidden;
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
.mobile-menu-button {
|
|
133
|
+
@apply inline-flex items-center justify-center p-2 rounded-lg outline-none text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none focus:ring-1 focus:ring-offset-1 focus:ring-offset-gray-800 focus:ring-white;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.mobile-menu-container {
|
|
137
|
+
@apply border-b h-full w-full sm:opacity-75 border-gray-700 md:hidden z-50;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.mobile-menu-link-container {
|
|
141
|
+
@apply px-2 py-3 grid grid-cols-1 space-y-1;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.mobile-menu-user-info-container {
|
|
145
|
+
@apply pt-4 pb-3 border-t border-gray-700;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.mobile-menu-user-info-container-inner {
|
|
149
|
+
@apply flex items-center px-5;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.mobile-menu-avatar-container {
|
|
153
|
+
@apply inline-flex items-center justify-center h-10 w-10 rounded-full ring-1 ring-blue-300;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.mobile-menu-avatar-name {
|
|
157
|
+
@apply text-sm font-medium leading-none text-white;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.mobile-menu-user-name {
|
|
161
|
+
@apply text-base font-medium leading-none text-white;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.mobile-menu-user-email {
|
|
165
|
+
@apply text-sm font-medium leading-none text-gray-400;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.mobile-menu-rounded-button {
|
|
169
|
+
@apply ml-auto bg-gray-800 flex-shrink-0 p-1 text-gray-400 rounded-full hover:text-white focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-gray-800 focus:ring-white;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.mobile-menu-rounded-button-icon-style {
|
|
173
|
+
@apply h-6 w-6;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.shell-footer-container {
|
|
177
|
+
@apply bg-gradient-to-r from-gray-800 to-gray-900 mt-10 pt-6;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.shell-footer-container-inner {
|
|
181
|
+
@apply max-w-7xl mx-auto;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.shell-footer-container-inner-fluid {
|
|
185
|
+
@apply w-full mx-auto;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
.shell-footer-component-container {
|
|
189
|
+
@apply text-gray-300;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.shell-footer-paddings {
|
|
193
|
+
@apply mx-auto px-4 sm:px-6 lg:px-8;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.shell-footer-component-container-inner {
|
|
197
|
+
@apply w-full mx-auto;
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
.shell-footer-logo-h {
|
|
201
|
+
@apply h-12;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.shell-footer-sections-container {
|
|
205
|
+
@apply grid grid-cols-8 md:grid-cols-9 lg:grid-cols-8 divide-gray-700 divide-y-2 md:divide-x-2 md:divide-y-0 md:-mx-8;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.shell-footer-section {
|
|
209
|
+
@apply col-span-8 md:col-span-3 lg:col-span-2 md:px-8 py-4 md:py-0;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.shell-footer-section nav {
|
|
213
|
+
@apply mt-4;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.shell-footer-section ul {
|
|
217
|
+
@apply space-y-2;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.shell-footer-section-links {
|
|
221
|
+
@apply col-span-8 md:col-span-3 lg:col-span-2 md:px-8 py-4 md:py-0;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
.shell-footer-section-links ul {
|
|
226
|
+
@apply grid lg:grid-cols-2;
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
.shell-footer-section-links li {
|
|
230
|
+
@apply mb-2;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.shell-footer-section-title {
|
|
234
|
+
@apply text-xl font-semibold text-white;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
.shell-footer-social {
|
|
239
|
+
@apply flex space-x-2 font-normal text-base hover:text-gray-100;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
.shell-footer-social-icon {
|
|
243
|
+
@apply h-6 w-6;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.shell-footer-link {
|
|
247
|
+
@apply text-sm text-gray-400 hover:underline transition duration-150 ease-in-out;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.shell-footer-copyright {
|
|
251
|
+
@apply max-w-screen-xl mx-auto flex flex-col md:flex-row justify-between items-center space-y-4 mt-8 lg:mt-12 border-t-2 border-gray-700 py-5;
|
|
252
|
+
}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
@reference tailwindcss;
|
|
2
|
+
|
|
3
|
+
.sidebar-off-canvas-menu-container {
|
|
4
|
+
@apply relative z-40 md:hidden;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
.sidebar-off-canvas-menu-backdrop {
|
|
10
|
+
@apply fixed inset-0 transition-opacity ease-linear opacity-0 duration-300 pointer-events-none bg-gray-600 bg-black/75;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.sidebar-off-canvas-menu-backdrop-opacity-100 {
|
|
14
|
+
@apply fixed inset-0 transition-opacity ease-linear duration-300 pointer-events-none bg-gray-600 bg-black/75 opacity-100;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.sidebar-off-canvas-menu-container-inner {
|
|
18
|
+
@apply fixed inset-0 flex z-40 transition ease-in-out duration-300 transform translate-x-0;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.sidebar-off-canvas-menu-container-inner-active {
|
|
22
|
+
@apply translate-x-0;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.sidebar-off-canvas-menu-container-inner-not-active {
|
|
26
|
+
@apply -translate-x-full;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
.sidebar-off-canvas-menu-container-inner-translate-x-full {
|
|
31
|
+
@apply fixed inset-0 flex z-40 transition ease-in-out duration-300 transform -translate-x-full;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.sidebar-off-canvas-layout-container {
|
|
35
|
+
@apply relative flex-1 flex flex-col max-w-xs w-full pt-5 pb-4 bg-gray-800;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.sidebar-off-canvas-toggle-button-container {
|
|
39
|
+
@apply absolute top-0 right-0 -mr-12 pt-2;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
.sidebar-off-canvas-toggle-button {
|
|
45
|
+
@apply ml-1 flex items-center justify-center h-10 w-10 rounded-full focus:outline-none;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
.sidebar-off-canvas-app-logo-container {
|
|
51
|
+
@apply flex-shrink-0 flex items-center px-4;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.sidebar-dummy-element {
|
|
55
|
+
@apply flex-shrink-0 w-14;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
/* in mobile view the static menu container is always hidden - off-canvas container is visible */
|
|
59
|
+
.sidebar-static-menu-outer-container {
|
|
60
|
+
@apply hidden md:flex;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.sidebar-static-menu-container {
|
|
64
|
+
@apply flex-col w-64 fixed inset-y-0;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.sidebar-static-menu-container-active {
|
|
68
|
+
@apply flex;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.sidebar-static-menu-container-not-active {
|
|
72
|
+
@apply flex w-20;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.sidebar-static-menu-container-inner {
|
|
76
|
+
@apply flex-1 flex items-center flex-col min-h-0 bg-gray-800 shadow-lg;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.sidebar-static-menu-app-logo-container {
|
|
80
|
+
@apply flex items-center h-16 flex-shrink-0;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.sidebar-static-menu-header-app-logo-container {
|
|
84
|
+
@apply flex items-center h-16 flex-shrink-0 ;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.shell-sidebar-logo {
|
|
88
|
+
@apply h-8 w-auto;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/* !!!! malakai onoma !!!! */
|
|
92
|
+
.sidebar-static-menu-wrapper {
|
|
93
|
+
@apply flex flex-col md:pl-20;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.sidebar-static-menu-wrapper-expanded {
|
|
97
|
+
@apply md:pl-64;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.sidebar-static-menu-sticky-header-container {
|
|
101
|
+
@apply sticky top-0 z-20 flex-shrink-0 flex h-16 bg-gray-900 shadow-2xl;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.sidebar-static-menu-toggle-button {
|
|
105
|
+
@apply px-4 text-white focus:outline-none;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.sidebar-static-menu-toggle-button-md {
|
|
109
|
+
@apply px-4 text-white focus:outline-none md:hidden;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.sidebar-static-menu-header-container {
|
|
113
|
+
@apply flex-1 px-4 flex justify-between;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
/* fix names */
|
|
117
|
+
|
|
118
|
+
.sidebar-static-menu-header-near-container {
|
|
119
|
+
@apply flex-1 flex;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.sidebar-static-menu-header-far-container {
|
|
123
|
+
@apply ml-4 flex items-center md:ml-6;
|
|
124
|
+
}
|
|
125
|
+
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
|
|
2
|
+
.shell-sidebar-container-fixed {
|
|
3
|
+
@apply fixed w-0 sm:w-64 flex-col inset-y-0 bg-gray-800;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.shell-sidebar-toggle-button {
|
|
7
|
+
@apply hidden sm:block px-4 border-0 text-white focus:outline-none;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.shell-sidebar-container-hidden {
|
|
11
|
+
@apply hidden w-0 sm:w-64 flex-col inset-y-0 bg-gray-800;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.shell-sidebar-content-container {
|
|
15
|
+
@apply flex flex-col;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.shell-sidebar-content-container-inner {
|
|
19
|
+
@apply sticky top-0 z-10 flex-shrink-0 flex h-16 bg-gray-800;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.shell-sidebar-header-container {
|
|
23
|
+
@apply flex-1;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.shell-sidebar-component-container {
|
|
27
|
+
@apply flex w-full flex-col h-full min-h-0 bg-gray-800;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.shell-sidebar-component-links-container {
|
|
31
|
+
@apply pt-4;
|
|
32
|
+
}
|