@kato-lee/components 1.0.3
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/LICENSE +21 -0
- package/README.md +7 -0
- package/assets/_fade-in.scss +40 -0
- package/assets/_fields.scss +76 -0
- package/assets/_grids.scss +317 -0
- package/assets/components/_buttons.scss +3 -0
- package/assets/components/_cards.scss +26 -0
- package/assets/components/_dialogs.scss +13 -0
- package/assets/components/_fields.scss +110 -0
- package/assets/components/_material.scss +15 -0
- package/assets/components/_pretty-box.scss +41 -0
- package/assets/components/_scroll-bar.scss +23 -0
- package/assets/components/_snack-bar.scss +18 -0
- package/assets/components/_tables.scss +235 -0
- package/assets/components/_tabs.scss +7 -0
- package/assets/components/main.scss +25 -0
- package/assets/fonts/body/Transpass-Bold.ttf +0 -0
- package/assets/fonts/body/Transpass-Light.ttf +0 -0
- package/assets/fonts/body/Transpass-Medium.ttf +0 -0
- package/assets/fonts/body/Transpass-Regular.ttf +0 -0
- package/assets/fonts/body/style-font.scss +40 -0
- package/assets/fonts/main.scss +2 -0
- package/assets/fonts/title/Poppins-Bold.ttf +0 -0
- package/assets/fonts/title/Poppins-Light.ttf +0 -0
- package/assets/fonts/title/Poppins-Medium.ttf +0 -0
- package/assets/fonts/title/Poppins-Regular.ttf +0 -0
- package/assets/fonts/title/Poppins-SemiBold.ttf +0 -0
- package/assets/fonts/title/style-font.scss +39 -0
- package/assets/layouts/_loader.scss +71 -0
- package/assets/layouts/origin.scss +775 -0
- package/assets/main.scss +4 -0
- package/assets/material/icons/icons.woff2 +0 -0
- package/assets/material/icons/local.css +1 -0
- package/assets/material/icons/remote.css +1 -0
- package/assets/material/themes/dark.scss +55 -0
- package/assets/material/themes/default.scss +106 -0
- package/assets/material/themes/main.scss +2907 -0
- package/assets/themes/_dark.scss +15 -0
- package/assets/themes/_default.scss +30 -0
- package/assets/themes/main.scss +2 -0
- package/assets/variables.scss +7 -0
- package/box-form/box-form.component.d.ts +34 -0
- package/box-form/box-form.module.d.ts +13 -0
- package/box-form/common.d.ts +5 -0
- package/box-form/index.d.ts +3 -0
- package/box-form/package.json +3 -0
- package/capsule/capsule.component.d.ts +14 -0
- package/capsule/capsule.module.d.ts +7 -0
- package/capsule/index.d.ts +2 -0
- package/capsule/package.json +3 -0
- package/cards/cards.module.d.ts +7 -0
- package/cards/index.d.ts +2 -0
- package/cards/package.json +3 -0
- package/cards/simple-card.component.d.ts +8 -0
- package/dialogs/dialogs.module.d.ts +11 -0
- package/dialogs/dismiss-dialog-button.component.d.ts +8 -0
- package/dialogs/index.d.ts +2 -0
- package/dialogs/package.json +3 -0
- package/esm2022/box-form/box-form.component.mjs +99 -0
- package/esm2022/box-form/box-form.module.mjs +40 -0
- package/esm2022/box-form/common.mjs +2 -0
- package/esm2022/box-form/index.mjs +7 -0
- package/esm2022/box-form/kato-lee-components-box-form.mjs +5 -0
- package/esm2022/capsule/capsule.component.mjs +78 -0
- package/esm2022/capsule/capsule.module.mjs +16 -0
- package/esm2022/capsule/index.mjs +6 -0
- package/esm2022/capsule/kato-lee-components-capsule.mjs +5 -0
- package/esm2022/cards/cards.module.mjs +17 -0
- package/esm2022/cards/index.mjs +6 -0
- package/esm2022/cards/kato-lee-components-cards.mjs +5 -0
- package/esm2022/cards/simple-card.component.mjs +47 -0
- package/esm2022/dialogs/dialogs.module.mjs +22 -0
- package/esm2022/dialogs/dismiss-dialog-button.component.mjs +44 -0
- package/esm2022/dialogs/index.mjs +6 -0
- package/esm2022/dialogs/kato-lee-components-dialogs.mjs +5 -0
- package/esm2022/fields/autocomplete-field/autocomplete-field.component.mjs +240 -0
- package/esm2022/fields/date-field/date-field.component.mjs +148 -0
- package/esm2022/fields/date-range-field/date-range-field.component.mjs +70 -0
- package/esm2022/fields/error/error-equals.pipe.mjs +19 -0
- package/esm2022/fields/error/error.component.mjs +55 -0
- package/esm2022/fields/error/error.module.mjs +21 -0
- package/esm2022/fields/error/error.msg.pipe.mjs +19 -0
- package/esm2022/fields/error/lang/_en.mjs +12 -0
- package/esm2022/fields/error/lang/_es.mjs +12 -0
- package/esm2022/fields/error/lang/index.mjs +3 -0
- package/esm2022/fields/fields.common.mjs +8 -0
- package/esm2022/fields/fields.module.mjs +118 -0
- package/esm2022/fields/general-field/general-field.component.mjs +188 -0
- package/esm2022/fields/index.mjs +17 -0
- package/esm2022/fields/kato-lee-components-fields.mjs +5 -0
- package/esm2022/fields/money-field/money-field.component.mjs +188 -0
- package/esm2022/fields/number-field/number-field.component.mjs +165 -0
- package/esm2022/fields/select-field/select-field.component.mjs +135 -0
- package/esm2022/fields/text-area/textarea.component.mjs +171 -0
- package/esm2022/index.mjs +2 -0
- package/esm2022/kato-lee-components.mjs +5 -0
- package/esm2022/layouts/origin/breadcrumb/breadcrumb.component.mjs +65 -0
- package/esm2022/layouts/origin/footer/footer.component.mjs +11 -0
- package/esm2022/layouts/origin/header/header.component.mjs +46 -0
- package/esm2022/layouts/origin/index.mjs +12 -0
- package/esm2022/layouts/origin/kato-lee-components-layouts-origin.mjs +5 -0
- package/esm2022/layouts/origin/layout.component.mjs +210 -0
- package/esm2022/layouts/origin/layout.module.mjs +52 -0
- package/esm2022/layouts/origin/layout.navigation.mjs +19 -0
- package/esm2022/layouts/origin/navigation-interfaces.mjs +2 -0
- package/esm2022/layouts/origin/services/index.mjs +4 -0
- package/esm2022/layouts/origin/services/route-parts.service.mjs +28 -0
- package/esm2022/layouts/origin/services/toggle-sidebar.mjs +48 -0
- package/esm2022/layouts/origin/services/validate-access.pipe.mjs +53 -0
- package/esm2022/layouts/origin/sidebar/sidebar.component.mjs +69 -0
- package/esm2022/layouts/origin/sidebar/sidenav/expansion/accordion.component.mjs +74 -0
- package/esm2022/layouts/origin/sidebar/sidenav/expansion/expansion-panel-header.component.mjs +51 -0
- package/esm2022/layouts/origin/sidebar/sidenav/expansion/expansion-panel.component.mjs +63 -0
- package/esm2022/layouts/origin/sidebar/sidenav/sidenav.component.mjs +130 -0
- package/esm2022/modal/config.mjs +2 -0
- package/esm2022/modal/index.mjs +8 -0
- package/esm2022/modal/kato-lee-components-modal.mjs +5 -0
- package/esm2022/modal/modal.component.mjs +63 -0
- package/esm2022/modal/modal.module.mjs +21 -0
- package/esm2022/modal/modal.service.mjs +33 -0
- package/esm2022/pretty-box/index.mjs +5 -0
- package/esm2022/pretty-box/kato-lee-components-pretty-box.mjs +5 -0
- package/esm2022/pretty-box/pretty-box.component.mjs +94 -0
- package/esm2022/tables/index.mjs +6 -0
- package/esm2022/tables/kato-lee-components-tables.mjs +5 -0
- package/esm2022/tables/mat-paginator.translation.mjs +22 -0
- package/esm2022/tables/tables.module.mjs +19 -0
- package/esm2022/toast/index.mjs +5 -0
- package/esm2022/toast/kato-lee-components-toast.mjs +5 -0
- package/esm2022/toast/toast.service.mjs +42 -0
- package/fesm2022/kato-lee-components-box-form.mjs +146 -0
- package/fesm2022/kato-lee-components-box-form.mjs.map +1 -0
- package/fesm2022/kato-lee-components-capsule.mjs +102 -0
- package/fesm2022/kato-lee-components-capsule.mjs.map +1 -0
- package/fesm2022/kato-lee-components-cards.mjs +72 -0
- package/fesm2022/kato-lee-components-cards.mjs.map +1 -0
- package/fesm2022/kato-lee-components-dialogs.mjs +74 -0
- package/fesm2022/kato-lee-components-dialogs.mjs.map +1 -0
- package/fesm2022/kato-lee-components-fields.mjs +1486 -0
- package/fesm2022/kato-lee-components-fields.mjs.map +1 -0
- package/fesm2022/kato-lee-components-layouts-origin.mjs +872 -0
- package/fesm2022/kato-lee-components-layouts-origin.mjs.map +1 -0
- package/fesm2022/kato-lee-components-modal.mjs +121 -0
- package/fesm2022/kato-lee-components-modal.mjs.map +1 -0
- package/fesm2022/kato-lee-components-pretty-box.mjs +105 -0
- package/fesm2022/kato-lee-components-pretty-box.mjs.map +1 -0
- package/fesm2022/kato-lee-components-tables.mjs +51 -0
- package/fesm2022/kato-lee-components-tables.mjs.map +1 -0
- package/fesm2022/kato-lee-components-toast.mjs +53 -0
- package/fesm2022/kato-lee-components-toast.mjs.map +1 -0
- package/fesm2022/kato-lee-components.mjs +4 -0
- package/fesm2022/kato-lee-components.mjs.map +1 -0
- package/fields/autocomplete-field/autocomplete-field.component.d.ts +65 -0
- package/fields/date-field/date-field.component.d.ts +46 -0
- package/fields/date-range-field/date-range-field.component.d.ts +23 -0
- package/fields/error/error-equals.pipe.d.ts +7 -0
- package/fields/error/error.component.d.ts +22 -0
- package/fields/error/error.module.d.ts +11 -0
- package/fields/error/error.msg.pipe.d.ts +7 -0
- package/fields/error/lang/_en.d.ts +1 -0
- package/fields/error/lang/_es.d.ts +1 -0
- package/fields/error/lang/index.d.ts +2 -0
- package/fields/fields.common.d.ts +5 -0
- package/fields/fields.module.d.ts +28 -0
- package/fields/general-field/general-field.component.d.ts +56 -0
- package/fields/index.d.ts +13 -0
- package/fields/money-field/money-field.component.d.ts +53 -0
- package/fields/number-field/number-field.component.d.ts +52 -0
- package/fields/package.json +3 -0
- package/fields/select-field/select-field.component.d.ts +44 -0
- package/fields/text-area/textarea.component.d.ts +55 -0
- package/index.d.ts +1 -0
- package/layouts/origin/breadcrumb/breadcrumb.component.d.ts +24 -0
- package/layouts/origin/footer/footer.component.d.ts +5 -0
- package/layouts/origin/header/header.component.d.ts +15 -0
- package/layouts/origin/index.d.ts +8 -0
- package/layouts/origin/layout.component.d.ts +58 -0
- package/layouts/origin/layout.module.d.ts +18 -0
- package/layouts/origin/layout.navigation.d.ts +10 -0
- package/layouts/origin/navigation-interfaces.d.ts +24 -0
- package/layouts/origin/package.json +3 -0
- package/layouts/origin/services/index.d.ts +3 -0
- package/layouts/origin/services/route-parts.service.d.ts +15 -0
- package/layouts/origin/services/toggle-sidebar.d.ts +10 -0
- package/layouts/origin/services/validate-access.pipe.d.ts +7 -0
- package/layouts/origin/sidebar/sidebar.component.d.ts +27 -0
- package/layouts/origin/sidebar/sidenav/expansion/accordion.component.d.ts +10 -0
- package/layouts/origin/sidebar/sidenav/expansion/expansion-panel-header.component.d.ts +11 -0
- package/layouts/origin/sidebar/sidenav/expansion/expansion-panel.component.d.ts +12 -0
- package/layouts/origin/sidebar/sidenav/sidenav.component.d.ts +23 -0
- package/modal/config.d.ts +9 -0
- package/modal/index.d.ts +4 -0
- package/modal/modal.component.d.ts +35 -0
- package/modal/modal.module.d.ts +11 -0
- package/modal/modal.service.d.ts +13 -0
- package/modal/package.json +3 -0
- package/package.json +82 -0
- package/pretty-box/index.d.ts +1 -0
- package/pretty-box/package.json +3 -0
- package/pretty-box/pretty-box.component.d.ts +24 -0
- package/tables/index.d.ts +2 -0
- package/tables/mat-paginator.translation.d.ts +2 -0
- package/tables/package.json +3 -0
- package/tables/tables.module.d.ts +9 -0
- package/toast/index.d.ts +1 -0
- package/toast/package.json +3 -0
- package/toast/toast.service.d.ts +21 -0
|
@@ -0,0 +1,775 @@
|
|
|
1
|
+
@import 'loader';
|
|
2
|
+
|
|
3
|
+
html {
|
|
4
|
+
--tak-body-color: rgb(0, 0, 0);
|
|
5
|
+
--tak-body-background-color: rgb(241, 244, 246);
|
|
6
|
+
--tak-loader-double-bounce1: #fcc02e;
|
|
7
|
+
--tak-loader-double-bounce2: #03a9f4;
|
|
8
|
+
--tak-loader-overlay-backdrop-background-color: rgba(0, 0, 0, 0.048);
|
|
9
|
+
--tak-layout-hover-scrollbar-thumb-color: rgba(192, 192, 192, 0.562);
|
|
10
|
+
--tak-layout-scrollbar-thumb-background-color: #f1f4f6;
|
|
11
|
+
--tak-layout-container: rgb(241, 244, 246);
|
|
12
|
+
--tak-layout-overlay-backdrop-background-color: rgba(0, 0, 0, 0.32);
|
|
13
|
+
--tak-layout-scrollbar-thumb-background-color: #f1f4f6;
|
|
14
|
+
--tak-layout-light-color: #fff;
|
|
15
|
+
--tak-layout-dark-color: rgba(0, 0, 0, 0.87);
|
|
16
|
+
--tak-layout-opacity-dark-color: rgba(0, 0, 0, 0.12);
|
|
17
|
+
--tak-layout-hover-scrollbar-thumb-color: rgba(192, 192, 192, 0.562);
|
|
18
|
+
--tak-header-background-color: rgb(10, 161, 174);
|
|
19
|
+
--tak-header-container-box-shadow: 0 0.46875rem 2.1875rem rgb(4 9 20 / 3%),
|
|
20
|
+
0 0.9375rem 1.40625rem rgb(4 9 20 / 3%), 0 0.25rem 0.53125rem rgb(4 9 20 / 5%),
|
|
21
|
+
0 0.125rem 0.1875rem rgb(4 9 20 / 3%);
|
|
22
|
+
--tak-footer-background-color: rgb(10, 161, 174);
|
|
23
|
+
--tak-breadcrumb-color: rgb(8, 119, 129, 0.3);
|
|
24
|
+
--tak-breadcrumb-title-color: rgb(10, 161, 174);
|
|
25
|
+
--tak-breadcrumb-active-color: rgb(10, 161, 174);
|
|
26
|
+
--tak-sidebar-slide-button-knobs-background-color: rgb(10, 161, 174);
|
|
27
|
+
--tak-sidebar-slide-button-knobs-opacity-background-color: rgb(10, 161, 174, 0.3);
|
|
28
|
+
--tak-sidebar-slide-toggle-bar-background-color: rgba(0, 0, 0, 0.38);
|
|
29
|
+
--tak-sidebar-after-background-color: rgba(255, 255, 255, 0.95);
|
|
30
|
+
--tak-sidebar-background-color: rgb(255, 255, 255);
|
|
31
|
+
--tak-sidebar-branding-title-color: rgb(10, 161, 174);
|
|
32
|
+
--tak-sidebar-branding-subtitle-color: rgb(120, 203, 211);
|
|
33
|
+
--tak-sidebar-container-border-right: rgba(0, 0, 0, 0.12);
|
|
34
|
+
--tak-sidenav-scrollbar-thumb-hover-color: rgba(192, 192, 192, 0.862);
|
|
35
|
+
--tak-sidenav-hover-scrollbar-thumb-color: rgba(192, 192, 192, 0.562);
|
|
36
|
+
--tak-sidenav-link-active-background-color: rgba(218, 218, 218, 0.15);
|
|
37
|
+
--tak-sidenav-link-hover-background-color: rgba(226, 226, 226, 0.46);
|
|
38
|
+
--tak-sidenav-link-icon-color: rgb(50, 50, 50);
|
|
39
|
+
--tak-divider-border-top-dark-color: rgba(0, 0, 0, 0.12);
|
|
40
|
+
--tak-divider-border-top-light-color: rgba(214, 214, 214, 0.12);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
html.dark-theme {
|
|
44
|
+
--tak-body-color: rgb(255, 255, 255);
|
|
45
|
+
--tak-body-background-color: rgb(13, 17, 23);
|
|
46
|
+
--tak-loader-overlay-backdrop-background-color: rgba(255, 255, 255, 0.048);
|
|
47
|
+
--tak-layout-container: rgb(13, 17, 23);
|
|
48
|
+
--tak-layout-scrollbar-thumb-background-color: #333947af;
|
|
49
|
+
--tak-layout-overlay-backdrop-background-color: rgba(73, 73, 73, 0.32);
|
|
50
|
+
--tak-layout-scrollbar-thumb-background-color: #333947af;
|
|
51
|
+
--tak-layout-light-color: #000;
|
|
52
|
+
--tak-layout-dark-color: #cecece;
|
|
53
|
+
--tak-layout-opacity-dark-color: rgba(255, 255, 255, 0.12);
|
|
54
|
+
--tak-header-background-color: rgb(1, 4, 9);
|
|
55
|
+
--tak-header-container-box-shadow: none;
|
|
56
|
+
--tak-footer-background-color: rgb(54, 57, 76);
|
|
57
|
+
--tak-sidebar-after-background-color: rgba(1, 4, 9, 0.95);
|
|
58
|
+
--tak-sidebar-background-color: rgb(1, 4, 9);
|
|
59
|
+
--tak-sidebar-slide-toggle-bar-background-color: rgba(255, 255, 255, 0.38);
|
|
60
|
+
--tak-sidebar-container-border-right: rgb(95, 95, 95, 0.4);
|
|
61
|
+
--tak-sidenav-scrollbar-thumb-hover-color: rgba(192, 192, 192, 0.862);
|
|
62
|
+
--tak-sidenav-hover-scrollbar-thumb-color: rgba(192, 192, 192, 0.562);
|
|
63
|
+
--tak-sidenav-link-active-background-color: rgba(218, 218, 218, 0.15);
|
|
64
|
+
--tak-sidenav-link-hover-background-color: rgba(226, 226, 226, 0.46);
|
|
65
|
+
--tak-sidenav-link-icon-color: rgb(50, 50, 50);
|
|
66
|
+
--tak-sidenav-link-icon-color: rgb(218, 218, 218);
|
|
67
|
+
--tak-breadcrumb-color: #d1d1d1;
|
|
68
|
+
--tak-breadcrumb-active-color: #ececec;
|
|
69
|
+
--tak-breadcrumb-title-color: #ececec;
|
|
70
|
+
--tak-divider-border-top-light-color: rgba(214, 214, 214, 0.12);
|
|
71
|
+
--tak-divider-border-top-dark-color: rgb(95, 95, 95, 0.4);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
html {
|
|
75
|
+
--tak-header-height: 50px;
|
|
76
|
+
--tak-footer-height: 30px;
|
|
77
|
+
--tak-sidebar-compact-width: 50px;
|
|
78
|
+
--tak-sidebar-full-width: 240px;
|
|
79
|
+
--tak-layout-outlet-padding: 20px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
html {
|
|
83
|
+
background-color: var(--tak-body-background-color);
|
|
84
|
+
color: var(--tak-body-color);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.tak-layout {
|
|
88
|
+
* {
|
|
89
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
|
|
90
|
+
}
|
|
91
|
+
margin: 0;
|
|
92
|
+
overflow: auto;
|
|
93
|
+
&__loader-hidden {
|
|
94
|
+
display: none !important;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.tak__txt-dec-none {
|
|
99
|
+
text-decoration: none;
|
|
100
|
+
}
|
|
101
|
+
.tak__min-wdh-32 {
|
|
102
|
+
min-width: 32px;
|
|
103
|
+
}
|
|
104
|
+
.tak__admin-layout__not-exist {
|
|
105
|
+
display: none !important;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.tak-breadcrumb {
|
|
109
|
+
display: flex;
|
|
110
|
+
flex-wrap: wrap;
|
|
111
|
+
padding: 0 0;
|
|
112
|
+
margin-bottom: 1rem;
|
|
113
|
+
list-style: none;
|
|
114
|
+
font-size: 14px;
|
|
115
|
+
font-family: 'Nunito', sans-serif;
|
|
116
|
+
color: var(--tak-breadcrumb-color);
|
|
117
|
+
font-weight: 600;
|
|
118
|
+
margin: 0;
|
|
119
|
+
&-pagetitle {
|
|
120
|
+
margin-bottom: 10px;
|
|
121
|
+
& h1 {
|
|
122
|
+
font-size: 20px;
|
|
123
|
+
margin-bottom: 0;
|
|
124
|
+
font-weight: 600;
|
|
125
|
+
font-family: Roboto, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
126
|
+
color: var(--tak-breadcrumb-title-color);
|
|
127
|
+
margin-top: 0px;
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
&-item {
|
|
131
|
+
+ .tak-breadcrumb-item::before {
|
|
132
|
+
float: left;
|
|
133
|
+
|
|
134
|
+
padding-right: 0.5rem;
|
|
135
|
+
content: '/';
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
& .tak-breadcrumb-item::before {
|
|
139
|
+
color: var(--tak-breadcrumb-color);
|
|
140
|
+
}
|
|
141
|
+
& .active {
|
|
142
|
+
color: var(--tak-breadcrumb-active-color);
|
|
143
|
+
font-weight: 600;
|
|
144
|
+
margin-left: 10px;
|
|
145
|
+
}
|
|
146
|
+
&-hidden {
|
|
147
|
+
display: none !important;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
.tak-layout-expansion-panel-container {
|
|
151
|
+
background-color: transparent;
|
|
152
|
+
border-radius: 5px;
|
|
153
|
+
overflow: hidden;
|
|
154
|
+
}
|
|
155
|
+
.tak-layout-expansion-panel {
|
|
156
|
+
&-body {
|
|
157
|
+
background-color: transparent;
|
|
158
|
+
transition: max-height 0.2s ease-out;
|
|
159
|
+
text-align: justify;
|
|
160
|
+
overflow: hidden;
|
|
161
|
+
max-height: 0;
|
|
162
|
+
}
|
|
163
|
+
&-container {
|
|
164
|
+
background-color: transparent;
|
|
165
|
+
box-shadow: none;
|
|
166
|
+
border-radius: 0;
|
|
167
|
+
}
|
|
168
|
+
&-header {
|
|
169
|
+
border: none;
|
|
170
|
+
position: relative;
|
|
171
|
+
overflow: hidden;
|
|
172
|
+
min-height: 40px;
|
|
173
|
+
min-width: 30px !important;
|
|
174
|
+
width: 100%;
|
|
175
|
+
padding: 0 5px 0 1px;
|
|
176
|
+
//white-space: nowrap;
|
|
177
|
+
padding: 3px 32px 3px 10px;
|
|
178
|
+
background: transparent;
|
|
179
|
+
font-weight: bolder;
|
|
180
|
+
align-items: center;
|
|
181
|
+
text-align: justify;
|
|
182
|
+
margin-right: 10px;
|
|
183
|
+
cursor: pointer;
|
|
184
|
+
display: flex;
|
|
185
|
+
width: 100%;
|
|
186
|
+
color: var(--tak-layout-dark-color);
|
|
187
|
+
/* &.is-module {
|
|
188
|
+
opacity: 1;
|
|
189
|
+
} */
|
|
190
|
+
@media only screen and (min-width: calc($MOBILE_RESOLUTION - 1px)) {
|
|
191
|
+
&:not(.is-module):hover {
|
|
192
|
+
background-color: rgba(226, 226, 226, 0.46) !important;
|
|
193
|
+
transition: background ease 0.3s;
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
&:not(.is-module)::after {
|
|
197
|
+
color: rgb(182, 182, 182) !important;
|
|
198
|
+
margin-right: 3px;
|
|
199
|
+
}
|
|
200
|
+
&:not(.is-module):not(.is-link)::after {
|
|
201
|
+
font-family: Roboto, 'Helvetica Neue', sans-serif;
|
|
202
|
+
transition: transform 0.3s ease;
|
|
203
|
+
font-size: 18px !important;
|
|
204
|
+
position: absolute;
|
|
205
|
+
content: '\203A';
|
|
206
|
+
right: 1rem;
|
|
207
|
+
}
|
|
208
|
+
&:not(.is-module):not(.is-link).active::after {
|
|
209
|
+
transition: transform 0.3s ease;
|
|
210
|
+
transform: rotate(90deg);
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
}
|
|
214
|
+
.tak {
|
|
215
|
+
&__footer {
|
|
216
|
+
width: 100%;
|
|
217
|
+
border-top: 1px solid var(--tak-divider-border-top-dark-color);
|
|
218
|
+
height: var(--tak-footer-height);
|
|
219
|
+
color: var(--tak-layout-dark-color);
|
|
220
|
+
display: flex;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
[tak-custom-footer] {
|
|
224
|
+
width: 100%;
|
|
225
|
+
}
|
|
226
|
+
$TOGGLE_SBAR_BTN_CONTINR_WIDTH: 40px;
|
|
227
|
+
|
|
228
|
+
.tak {
|
|
229
|
+
&__header {
|
|
230
|
+
width: 100%;
|
|
231
|
+
background-color: var(--tak-header-background-color);
|
|
232
|
+
height: var(--tak-header-height);
|
|
233
|
+
color: var(--tak-layout-dark-color);
|
|
234
|
+
display: flex;
|
|
235
|
+
&__toggle-sbar-btn {
|
|
236
|
+
&__container {
|
|
237
|
+
width: $TOGGLE_SBAR_BTN_CONTINR_WIDTH;
|
|
238
|
+
height: var(--tak-header-height);
|
|
239
|
+
align-items: center;
|
|
240
|
+
display: flex;
|
|
241
|
+
& > button {
|
|
242
|
+
background-color: transparent;
|
|
243
|
+
border: 1px solid transparent;
|
|
244
|
+
color: inherit;
|
|
245
|
+
}
|
|
246
|
+
}
|
|
247
|
+
@media (min-width: $MOBILE_RESOLUTION) {
|
|
248
|
+
&__container {
|
|
249
|
+
display: block;
|
|
250
|
+
align-items: center;
|
|
251
|
+
display: flex;
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
&__custom {
|
|
256
|
+
&__container {
|
|
257
|
+
width: 100%;
|
|
258
|
+
align-items: center;
|
|
259
|
+
display: flex;
|
|
260
|
+
}
|
|
261
|
+
@media (max-width: calc($MOBILE_RESOLUTION - 1px)) {
|
|
262
|
+
&__container {
|
|
263
|
+
width: calc(100% - $TOGGLE_SBAR_BTN_CONTINR_WIDTH);
|
|
264
|
+
}
|
|
265
|
+
}
|
|
266
|
+
}
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
[tak-custom-header] {
|
|
270
|
+
width: 100%;
|
|
271
|
+
}
|
|
272
|
+
.tak {
|
|
273
|
+
&__container {
|
|
274
|
+
margin-left: var(--tak-sidebar-compact-width);
|
|
275
|
+
transition: margin-left ease 0.3s;
|
|
276
|
+
}
|
|
277
|
+
&__outlet {
|
|
278
|
+
min-height: calc(
|
|
279
|
+
(100vh - 1px) -
|
|
280
|
+
(
|
|
281
|
+
var(--tak-header-height) + var(--tak-footer-height) +
|
|
282
|
+
(var(--tak-layout-outlet-padding) * 2)
|
|
283
|
+
)
|
|
284
|
+
);
|
|
285
|
+
color: var(--tak-layout-dark-color);
|
|
286
|
+
padding: var(--tak-layout-outlet-padding);
|
|
287
|
+
}
|
|
288
|
+
&__scroll {
|
|
289
|
+
height: calc(100vh - var(--tak-header-height));
|
|
290
|
+
overflow-y: overlay;
|
|
291
|
+
color: transparent;
|
|
292
|
+
overflow-x: hidden;
|
|
293
|
+
@media only screen and (min-width: calc($MOBILE_RESOLUTION)) {
|
|
294
|
+
&::-webkit-scrollbar {
|
|
295
|
+
background-color: var(--tak-layout-scrollbar-thumb-background-color);
|
|
296
|
+
width: 8px;
|
|
297
|
+
}
|
|
298
|
+
&::-webkit-scrollbar-thumb {
|
|
299
|
+
color: var(--tak-layout-hover-scrollbar-thumb-color);
|
|
300
|
+
box-shadow: inset 0 0 0 5px;
|
|
301
|
+
border-radius: 10px;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
.tak__header-container {
|
|
307
|
+
box-shadow: var(--tak-header-container-box-shadow);
|
|
308
|
+
}
|
|
309
|
+
.tak__layout__container {
|
|
310
|
+
background-color: var(--tak-layout-container);
|
|
311
|
+
}
|
|
312
|
+
.main-content-wrap {
|
|
313
|
+
height: calc(100vh - var(--tak-header-height));
|
|
314
|
+
overflow: auto !important;
|
|
315
|
+
flex-direction: column;
|
|
316
|
+
position: relative;
|
|
317
|
+
display: flex;
|
|
318
|
+
float: right;
|
|
319
|
+
}
|
|
320
|
+
.tak__sidebar {
|
|
321
|
+
&__container {
|
|
322
|
+
border-right-color: var(--tak-sidebar-container-border-right);
|
|
323
|
+
background-color: var(--tak-sidebar-background-color);
|
|
324
|
+
border-right-style: solid;
|
|
325
|
+
border-right-width: 1px;
|
|
326
|
+
min-height: 100vh;
|
|
327
|
+
overflow: hidden;
|
|
328
|
+
position: fixed;
|
|
329
|
+
z-index: 999;
|
|
330
|
+
left: 0;
|
|
331
|
+
top: 0;
|
|
332
|
+
}
|
|
333
|
+
&__branding {
|
|
334
|
+
background-color: var(--tak-sidebar-background-color);
|
|
335
|
+
height: var(--tak-header-height);
|
|
336
|
+
display: flex;
|
|
337
|
+
align-items: center;
|
|
338
|
+
justify-content: center;
|
|
339
|
+
white-space: nowrap;
|
|
340
|
+
font-weight: bolder;
|
|
341
|
+
font-size: 12.5px;
|
|
342
|
+
font-family: Arial, Helvetica, sans-serif;
|
|
343
|
+
&__container {
|
|
344
|
+
width: calc(100% - 90px);
|
|
345
|
+
margin: 0 5px;
|
|
346
|
+
}
|
|
347
|
+
&__logo {
|
|
348
|
+
width: 24px;
|
|
349
|
+
}
|
|
350
|
+
&__toggle {
|
|
351
|
+
display: none !important;
|
|
352
|
+
}
|
|
353
|
+
&__title,
|
|
354
|
+
& > div > tak-slide-toggle {
|
|
355
|
+
margin-left: 6px;
|
|
356
|
+
}
|
|
357
|
+
&__title {
|
|
358
|
+
color: var(--tak-sidebar-branding-title-color);
|
|
359
|
+
font-size: 12.5px;
|
|
360
|
+
text-align: center;
|
|
361
|
+
margin: 0;
|
|
362
|
+
overflow: hidden;
|
|
363
|
+
text-overflow: ellipsis;
|
|
364
|
+
}
|
|
365
|
+
&__subtitle {
|
|
366
|
+
color: var(--tak-sidebar-branding-subtitle-color);
|
|
367
|
+
font-size: 10px;
|
|
368
|
+
margin: 0;
|
|
369
|
+
text-align: center;
|
|
370
|
+
overflow: hidden;
|
|
371
|
+
text-overflow: ellipsis;
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
&__content {
|
|
375
|
+
position: fixed;
|
|
376
|
+
min-height: 100vh;
|
|
377
|
+
&::after {
|
|
378
|
+
background-color: var(--tak-sidebar-after-background-color);
|
|
379
|
+
position: absolute;
|
|
380
|
+
height: 100%;
|
|
381
|
+
width: 100%;
|
|
382
|
+
z-index: -1;
|
|
383
|
+
content: '';
|
|
384
|
+
left: 0;
|
|
385
|
+
top: 0;
|
|
386
|
+
}
|
|
387
|
+
}
|
|
388
|
+
&__content {
|
|
389
|
+
overflow: hidden;
|
|
390
|
+
}
|
|
391
|
+
&__divider {
|
|
392
|
+
border-top-color: var(--tak-divider-border-top-dark-color);
|
|
393
|
+
border-top-style: solid;
|
|
394
|
+
border-top-width: 1px;
|
|
395
|
+
display: block;
|
|
396
|
+
padding: 5px;
|
|
397
|
+
margin: 0;
|
|
398
|
+
&.no-padding {
|
|
399
|
+
padding: 0;
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.tak__sidebar__mobile-toggle-sidebar-button {
|
|
405
|
+
background-color: var(--tak-layout-overlay-backdrop-background-color);
|
|
406
|
+
height: calc(100vh);
|
|
407
|
+
width: calc(100vw);
|
|
408
|
+
position: fixed;
|
|
409
|
+
border: none;
|
|
410
|
+
cursor: default;
|
|
411
|
+
display: none;
|
|
412
|
+
z-index: 998;
|
|
413
|
+
float: left;
|
|
414
|
+
}
|
|
415
|
+
.tak__sidebar__branding__toggle {
|
|
416
|
+
.toggle-button-cover {
|
|
417
|
+
display: table-cell;
|
|
418
|
+
position: relative;
|
|
419
|
+
width: 200px;
|
|
420
|
+
height: 140px;
|
|
421
|
+
box-sizing: border-box;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.button-cover,
|
|
425
|
+
.knobs,
|
|
426
|
+
.layer {
|
|
427
|
+
position: absolute;
|
|
428
|
+
top: 0;
|
|
429
|
+
right: 0;
|
|
430
|
+
bottom: 0;
|
|
431
|
+
left: 0;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
.button {
|
|
435
|
+
position: relative;
|
|
436
|
+
top: 50%;
|
|
437
|
+
width: 32px;
|
|
438
|
+
height: 17px;
|
|
439
|
+
margin: 0 auto 0 auto;
|
|
440
|
+
overflow: hidden;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
.button.r,
|
|
444
|
+
.button.r .layer {
|
|
445
|
+
border-radius: 100px;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.button.b2 {
|
|
449
|
+
border-radius: 2px;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
.checkbox {
|
|
453
|
+
position: relative;
|
|
454
|
+
width: 100%;
|
|
455
|
+
height: 100%;
|
|
456
|
+
padding: 0;
|
|
457
|
+
margin: 0;
|
|
458
|
+
opacity: 0;
|
|
459
|
+
cursor: pointer;
|
|
460
|
+
z-index: 3;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
.knobs {
|
|
464
|
+
z-index: 2;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
.layer {
|
|
468
|
+
width: 100%;
|
|
469
|
+
background-color: var(--tak-sidebar-slide-toggle-bar-background-color);
|
|
470
|
+
transition: 0.3s ease all;
|
|
471
|
+
z-index: 1;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
/* Button 1 */
|
|
475
|
+
#button-1 .knobs:before {
|
|
476
|
+
content: '';
|
|
477
|
+
position: absolute;
|
|
478
|
+
top: 2px;
|
|
479
|
+
left: 2px;
|
|
480
|
+
width: 10px;
|
|
481
|
+
height: 1px;
|
|
482
|
+
color: #fff;
|
|
483
|
+
font-size: 10px;
|
|
484
|
+
font-weight: bold;
|
|
485
|
+
text-align: center;
|
|
486
|
+
line-height: 1;
|
|
487
|
+
padding: 6px 1px;
|
|
488
|
+
background-color: white;
|
|
489
|
+
border-radius: 50%;
|
|
490
|
+
transition: 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15) all;
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
#button-1 .checkbox:checked + .knobs:before {
|
|
494
|
+
// content: 'NO';
|
|
495
|
+
left: 18px;
|
|
496
|
+
background-color: var(--tak-sidebar-slide-button-knobs-background-color);
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
#button-1 .checkbox:checked ~ .layer {
|
|
500
|
+
background-color: var(--tak-sidebar-slide-button-knobs-opacity-background-color);
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
#button-1 .knobs,
|
|
504
|
+
#button-1 .knobs:before,
|
|
505
|
+
#button-1 .layer {
|
|
506
|
+
transition: 0.3s ease all;
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
$SNAV_CNTNR_PDNG_BTM: 10px;
|
|
510
|
+
$SNAV_CNTNR_PDNG_TOP: 10px;
|
|
511
|
+
.tak__sidenav {
|
|
512
|
+
&__container {
|
|
513
|
+
padding-top: $SNAV_CNTNR_PDNG_TOP;
|
|
514
|
+
padding-bottom: $SNAV_CNTNR_PDNG_BTM;
|
|
515
|
+
height: calc(
|
|
516
|
+
100vh - (var(--tak-header-height) + $SNAV_CNTNR_PDNG_BTM + $SNAV_CNTNR_PDNG_TOP + 1px)
|
|
517
|
+
);
|
|
518
|
+
transition: color ease 0.2s;
|
|
519
|
+
overflow-y: auto;
|
|
520
|
+
overflow-x: hidden;
|
|
521
|
+
color: transparent;
|
|
522
|
+
.icon-link:not(.is-module) {
|
|
523
|
+
display: none;
|
|
524
|
+
}
|
|
525
|
+
@media only screen and (min-width: calc($MOBILE_RESOLUTION - 1px)) {
|
|
526
|
+
&::-webkit-scrollbar {
|
|
527
|
+
background: transparent;
|
|
528
|
+
width: 8px;
|
|
529
|
+
}
|
|
530
|
+
&::-webkit-scrollbar-thumb {
|
|
531
|
+
border: 1px solid transparent;
|
|
532
|
+
background-clip: padding-box;
|
|
533
|
+
box-shadow: inset 0 0 0 5px;
|
|
534
|
+
border-radius: 10px;
|
|
535
|
+
&:hover {
|
|
536
|
+
color: var(--tak-sidenav-scrollbar-thumb-hover-color);
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
.icon-link:not(.is-module) {
|
|
540
|
+
display: block;
|
|
541
|
+
}
|
|
542
|
+
}
|
|
543
|
+
&:hover {
|
|
544
|
+
transition: color ease 0.2s;
|
|
545
|
+
color: var(--tak-sidenav-hover-scrollbar-thumb-color);
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
&__accordion {
|
|
549
|
+
&__link-name {
|
|
550
|
+
margin-left: 5px;
|
|
551
|
+
}
|
|
552
|
+
&__link-button {
|
|
553
|
+
@media only screen and (min-width: calc($MOBILE_RESOLUTION - 1px)) {
|
|
554
|
+
&:hover {
|
|
555
|
+
background-color: var(--tak-sidenav-link-hover-background-color);
|
|
556
|
+
transition: background-color ease 0.3s;
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
color: var(--tak-layout-dark-color);
|
|
560
|
+
width: 100%;
|
|
561
|
+
background-color: transparent;
|
|
562
|
+
border: none;
|
|
563
|
+
min-height: 40px;
|
|
564
|
+
cursor: pointer;
|
|
565
|
+
display: flex;
|
|
566
|
+
align-items: center;
|
|
567
|
+
text-align: justify;
|
|
568
|
+
& > span {
|
|
569
|
+
overflow: hidden;
|
|
570
|
+
text-overflow: ellipsis;
|
|
571
|
+
margin-right: 10px;
|
|
572
|
+
margin-left: 15px;
|
|
573
|
+
//white-space: nowrap;
|
|
574
|
+
}
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
.is-module.tak-layout-expansion-panel-header {
|
|
579
|
+
color: gray;
|
|
580
|
+
}
|
|
581
|
+
/***********************************************/
|
|
582
|
+
/******************** FULL *********************/
|
|
583
|
+
/***********************************************/
|
|
584
|
+
.tak__layout__container.full {
|
|
585
|
+
.tak__sidebar {
|
|
586
|
+
&__container {
|
|
587
|
+
width: var(--tak-sidebar-full-width);
|
|
588
|
+
transition: width ease 0.3s;
|
|
589
|
+
& > .tak__sidebar__content {
|
|
590
|
+
width: var(--tak-sidebar-full-width);
|
|
591
|
+
transition: width ease 0.3s;
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
@media (min-width: $MOBILE_RESOLUTION) {
|
|
596
|
+
.tak__container.sidebar-fixed {
|
|
597
|
+
margin-left: 240px;
|
|
598
|
+
transition: margin-left ease 0.3s;
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
|
+
}
|
|
602
|
+
/***********************************************/
|
|
603
|
+
/**************** MOBILE FULL ******************/
|
|
604
|
+
/***********************************************/
|
|
605
|
+
.tak__layout__container.mobile.full {
|
|
606
|
+
.tak__sidebar {
|
|
607
|
+
&__container {
|
|
608
|
+
width: var(--tak-sidebar-full-width);
|
|
609
|
+
transition: width ease 0.3s;
|
|
610
|
+
& > .tak__sidebar__content {
|
|
611
|
+
width: var(--tak-sidebar-full-width);
|
|
612
|
+
transition: width ease 0.3s;
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
}
|
|
616
|
+
@media (max-width: calc($MOBILE_RESOLUTION - 1px)) {
|
|
617
|
+
.tak__sidebar__mobile-toggle-sidebar-button {
|
|
618
|
+
display: block;
|
|
619
|
+
}
|
|
620
|
+
}
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
/***********************************************/
|
|
624
|
+
/**************** EXPAND FULL ******************/
|
|
625
|
+
/***********************************************/
|
|
626
|
+
|
|
627
|
+
.tak__layout__container.expand.full {
|
|
628
|
+
.tak__sidebar {
|
|
629
|
+
&__container {
|
|
630
|
+
width: var(--tak-sidebar-full-width);
|
|
631
|
+
transition: width ease 0.3s;
|
|
632
|
+
& > .tak__sidebar__content {
|
|
633
|
+
width: var(--tak-sidebar-full-width);
|
|
634
|
+
transition: width ease 0.3s;
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
@media (min-width: $MOBILE_RESOLUTION) {
|
|
639
|
+
.tak__container.sidebar-fixed {
|
|
640
|
+
margin-left: 240px;
|
|
641
|
+
transition: margin-left ease 0.3s;
|
|
642
|
+
}
|
|
643
|
+
}
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
/***********************************************/
|
|
647
|
+
/****************** COMPACT ********************/
|
|
648
|
+
/***********************************************/
|
|
649
|
+
.tak__layout__container.compact {
|
|
650
|
+
.tak__sidebar {
|
|
651
|
+
&__container {
|
|
652
|
+
width: var(--tak-sidebar-compact-width);
|
|
653
|
+
transition: width ease 0.3s;
|
|
654
|
+
& > .tak__sidebar__content {
|
|
655
|
+
width: var(--tak-sidebar-compact-width);
|
|
656
|
+
transition: width ease 0.3s;
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
&__branding {
|
|
660
|
+
&__container {
|
|
661
|
+
display: none;
|
|
662
|
+
}
|
|
663
|
+
&__toggle {
|
|
664
|
+
&__container {
|
|
665
|
+
display: none;
|
|
666
|
+
}
|
|
667
|
+
}
|
|
668
|
+
}
|
|
669
|
+
}
|
|
670
|
+
.tak__sidenav {
|
|
671
|
+
&__link-name,
|
|
672
|
+
&__accordion__link-container {
|
|
673
|
+
display: none;
|
|
674
|
+
}
|
|
675
|
+
}
|
|
676
|
+
.tak-layout-expansion-panel-header {
|
|
677
|
+
&::after {
|
|
678
|
+
display: none;
|
|
679
|
+
}
|
|
680
|
+
}
|
|
681
|
+
}
|
|
682
|
+
/***********************************************/
|
|
683
|
+
/************** MOBILE COMPACT *****************/
|
|
684
|
+
/***********************************************/
|
|
685
|
+
.tak__layout__container.mobile {
|
|
686
|
+
.tak__container {
|
|
687
|
+
margin-left: 0px;
|
|
688
|
+
}
|
|
689
|
+
.tak__sidebar {
|
|
690
|
+
&__container {
|
|
691
|
+
width: 0px;
|
|
692
|
+
margin-left: -1px;
|
|
693
|
+
& > .tak__sidebar__content {
|
|
694
|
+
width: 0px;
|
|
695
|
+
margin-left: -1px;
|
|
696
|
+
transition: margin-left ease 0.3s;
|
|
697
|
+
}
|
|
698
|
+
}
|
|
699
|
+
}
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
/***********************************************/
|
|
703
|
+
/************ HIDE ON NO MOBILE ****************/
|
|
704
|
+
/***********************************************/
|
|
705
|
+
@media (min-width: $MOBILE_RESOLUTION) {
|
|
706
|
+
.tak__sidebar__mobile-toggle-sidebar-button,
|
|
707
|
+
.tak__header__toggle-sbar-btn {
|
|
708
|
+
display: none !important;
|
|
709
|
+
}
|
|
710
|
+
.tak__sidebar__branding__toggle {
|
|
711
|
+
display: block !important;
|
|
712
|
+
}
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
/***********************************************/
|
|
716
|
+
/******* EXPAND COMPACT *********/
|
|
717
|
+
/***********************************************/
|
|
718
|
+
|
|
719
|
+
.tak__layout__container.expand {
|
|
720
|
+
.tak__container {
|
|
721
|
+
margin-left: 0px;
|
|
722
|
+
transition: margin-left ease 0.3s;
|
|
723
|
+
}
|
|
724
|
+
.tak__sidebar {
|
|
725
|
+
&__container {
|
|
726
|
+
width: 0px;
|
|
727
|
+
margin-left: -1px;
|
|
728
|
+
& > .tak__sidebar__content {
|
|
729
|
+
width: 0px;
|
|
730
|
+
margin-left: -1px;
|
|
731
|
+
transition: width ease 0.3s;
|
|
732
|
+
}
|
|
733
|
+
}
|
|
734
|
+
&__branding {
|
|
735
|
+
&__logo {
|
|
736
|
+
margin-left: 10px;
|
|
737
|
+
}
|
|
738
|
+
&__title {
|
|
739
|
+
text-align: left;
|
|
740
|
+
width: 200px;
|
|
741
|
+
}
|
|
742
|
+
&__toggle__container {
|
|
743
|
+
display: none !important;
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
}
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
/***********************************************/
|
|
750
|
+
/******* DISABLE TRANSITION ON MOBILES *********/
|
|
751
|
+
/***********************************************/
|
|
752
|
+
.tak__layout__container.mobile.full {
|
|
753
|
+
.tak__sidebar {
|
|
754
|
+
&__container {
|
|
755
|
+
transition: width ease 0.05s !important;
|
|
756
|
+
& > .tak__sidebar__content {
|
|
757
|
+
transition: width ease 0.05s !important;
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
}
|
|
761
|
+
}
|
|
762
|
+
.tak__layout__container.mobile {
|
|
763
|
+
.tak__sidebar {
|
|
764
|
+
&__container {
|
|
765
|
+
transition: width ease 0.05s !important;
|
|
766
|
+
& > .tak__sidebar__content {
|
|
767
|
+
transition: width ease 0.05s !important;
|
|
768
|
+
}
|
|
769
|
+
}
|
|
770
|
+
}
|
|
771
|
+
}
|
|
772
|
+
.tak__sidenav__accordion__link-button > span,
|
|
773
|
+
.tak-layout-expansion-panel-header {
|
|
774
|
+
text-align: left;
|
|
775
|
+
}
|