@natec/mef-dev-ui-kit 0.0.41 → 0.0.312

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.
Files changed (38) hide show
  1. package/package.json +1 -1
  2. package/src/lib/styles/pg/_color.scss +0 -689
  3. package/src/lib/styles/pg/_dropdown.scss +0 -38
  4. package/src/lib/styles/pg/_mixins.scss +0 -1010
  5. package/src/lib/styles/pg/_responsive.scss +0 -1140
  6. package/src/lib/styles/pg/_var.scss +0 -198
  7. package/src/lib/styles/pg/core.scss +0 -276
  8. package/src/lib/styles/pg/icons.scss +0 -330
  9. package/src/lib/styles/pg/modules/_breadcrumb.scss +0 -66
  10. package/src/lib/styles/pg/modules/_buttons.scss +0 -65
  11. package/src/lib/styles/pg/modules/_cards.scss +0 -417
  12. package/src/lib/styles/pg/modules/_form_elements.scss +0 -1335
  13. package/src/lib/styles/pg/modules/_header.scss +0 -259
  14. package/src/lib/styles/pg/modules/_horizontal-layout.scss +0 -183
  15. package/src/lib/styles/pg/modules/_horizontal_menu.scss +0 -344
  16. package/src/lib/styles/pg/modules/_jqx.scss +0 -11
  17. package/src/lib/styles/pg/modules/_layout.scss +0 -180
  18. package/src/lib/styles/pg/modules/_lock_screen.scss +0 -92
  19. package/src/lib/styles/pg/modules/_login.scss +0 -62
  20. package/src/lib/styles/pg/modules/_misc.scss +0 -703
  21. package/src/lib/styles/pg/modules/_modals.scss +0 -281
  22. package/src/lib/styles/pg/modules/_print.scss +0 -32
  23. package/src/lib/styles/pg/modules/_secondary-sidebar.scss +0 -243
  24. package/src/lib/styles/pg/modules/_select.scss +0 -599
  25. package/src/lib/styles/pg/modules/_sidebar.scss +0 -413
  26. package/src/lib/styles/pg/modules/_switch.scss +0 -144
  27. package/src/lib/styles/pg/modules/_tabs.scss +0 -336
  28. package/src/lib/styles/pg/modules/_tabs_accordian.scss +0 -662
  29. package/src/lib/styles/pg/modules/_timepicker.scss +0 -34
  30. package/src/lib/styles/pg/modules/_typography.scss +0 -743
  31. package/src/lib/styles/pg/modules/_uploader.scss +0 -226
  32. package/src/lib/styles/pg/modules/_view.scss +0 -127
  33. package/src/lib/styles/pg/modules/_z_index.scss +0 -33
  34. package/src/lib/styles/pg/toaster.scss +0 -22
  35. package/src/lib/styles/pg/utils.scss +0 -32
  36. package/src/lib/styles/pg/vendor/ng-datatable.scss +0 -263
  37. package/src/lib/styles/pg/vendor/ngx-google-map.scss +0 -18
  38. package/src/lib/styles/pg/vendor/typehead.scss +0 -29
@@ -1,413 +0,0 @@
1
- /* Main Menu Sidebar
2
- ------------------------------------
3
- */
4
-
5
- body{
6
- &.mobile{
7
- .sidebar-menu {
8
- overflow: scroll;
9
- -webkit-overflow-scrolling: touch;
10
- }
11
- .sidebar-menu > ul {
12
- height: auto !important;
13
- overflow: visible !important;
14
- -webkit-overflow-scrolling: touch !important;
15
- }
16
- .page-sidebar .sidebar-menu .menu-items {
17
- li{
18
- &:hover{
19
- a{
20
- color:$color-menu-light;
21
- }
22
- .icon-thumbnail{
23
- color:$color-menu-light !important;
24
- }
25
- }
26
- &.active, &.open{
27
- & > a{
28
- color:#fff;
29
- }
30
- & > .icon-thumbnail{
31
- color:#fff;
32
- }
33
- }
34
- }
35
- }
36
- .drager{
37
- overflow: auto;
38
- -webkit-overflow-scrolling: touch;
39
- }
40
- }
41
- &.sidebar-visible{
42
- .page-sidebar{
43
- .scroll-element{
44
- visibility: visible;
45
- }
46
- .menu-items {
47
- .icon-thumbnail{
48
- @include translate3d(-14px,0,0);
49
- }
50
- }
51
- .sidebar-header .sidebar-header-controls{
52
- @include translate3d(48px,0,0);
53
- }
54
- }
55
-
56
- }
57
- }
58
-
59
- .page-sidebar{
60
- width: $layout-sidepanel-width;
61
- background-color:$color-menu;
62
- z-index: $zIndex-sidebar;
63
- left:$layout-sidepanel-width-collapsed - $layout-sidepanel-width;
64
- position: fixed;
65
- bottom: 0;
66
- top: 0;
67
- right: auto;
68
- overflow: hidden;
69
- -webkit-transition: -webkit-transform 400ms cubic-bezier($menu-bezier);
70
- -moz-transition: -moz-transform 400ms cubic-bezier($menu-bezier);
71
- -o-transition: -o-transform 400ms cubic-bezier($menu-bezier);
72
- transition: transform 400ms cubic-bezier($menu-bezier);
73
- -webkit-backface-visibility: hidden;
74
- -webkit-perspective: 1000px;
75
- a,button {
76
- color:$color-menu-light;
77
- &:hover,&:active{
78
- color:$color-menu-link-hover;
79
- background-color: transparent !important;
80
- &:focus{
81
- color:$color-menu-link-hover;
82
- }
83
- }
84
- &:visited,&:focus{
85
- color:$color-menu-light;
86
- }
87
- }
88
- button.sidebar-slide-toggle{
89
- //BS 4 fixes
90
- &.active{
91
- color:$color-menu-light;
92
- &:focus{
93
- background: transparent;
94
- }
95
- }
96
- }
97
- .scroll-element{
98
- visibility: hidden;
99
- }
100
- .sidebar-header{
101
- /* Side-bar header */
102
- display: flex;
103
- align-content: center;
104
- justify-content: center;
105
- height: $layout-header-height;
106
- line-height:$layout-header-height;
107
- background-color:$color-menu-darker;
108
- border-bottom: 1px solid mix($color-menu-darker, #000, 90%);
109
- color: $color-white;
110
- width: 100%;
111
- padding: 0 20px;
112
- padding-left: 30px;
113
- clear: both;
114
- z-index: 10;
115
- .sidebar-header-controls{
116
- display: inline-block;
117
- -webkit-transition: -webkit-transform 0.4s cubic-bezier($menu-bezier);
118
- transition: transform 0.4s cubic-bezier($menu-bezier);
119
- -webkit-backface-visibility: hidden;
120
- }
121
- .sidebar-slide-toggle i{
122
- @include transition(all 0.12s ease);
123
- }
124
- .sidebar-slide-toggle.active i{
125
- @include rotate(-180deg);
126
- }
127
- }
128
- .close-sidebar{
129
- position: absolute;
130
- right: 19px;
131
- top: 14px;
132
- padding: 9px;
133
- z-index: 1;
134
- & > i{
135
- color: rgba(255,255,255,0.57);
136
- }
137
- }
138
- .sidebar-overlay-slide{
139
- /* Side-bar Top Slider */
140
- width: 100%;
141
- height: 100%;
142
- background-color:$color-menu-darker;
143
- display:block;
144
- z-index: 9;
145
- padding: $layout-header-height+20 20px 20px 20px;
146
- &.from-top{
147
- top:-100%;
148
- position: absolute;
149
- @include transition(all .2s ease);
150
- &.show{
151
- @include translate(0,100%);
152
- }
153
- }
154
- }
155
- .sidebar-menu{
156
- /* Side-bar Menu */
157
- position: relative;
158
- width: 100%;
159
- .outer-tab-nav-section {
160
- display: inline-block;
161
- width: 45px;
162
- position: absolute;
163
- height: 100%;
164
- background-color: #0aa699 !important;
165
- }
166
- .menu-items {
167
- /* Side-bar Menut Items */
168
- list-style: none;
169
- margin: 0;
170
- padding: 0;
171
- margin: 0;
172
- padding: 0;
173
- position: relative;
174
- overflow: auto;
175
- -webkit-overflow-scrolling: touch;
176
- height: calc(100% - 10px);
177
- width: 100%;
178
- li{
179
- &:hover, &.open, &.active{
180
- & > .icon-thumbnail{
181
- color: $color-menu-link-hover;
182
- }
183
- & > a{
184
- color: $color-menu-link-hover;
185
- }
186
- }
187
- & > a{
188
- white-space: nowrap;
189
- overflow: hidden;
190
- text-overflow: ellipsis;
191
- width: 65%;
192
- }
193
- }
194
- & > li {
195
- display: block;
196
- padding:0;
197
- clear: right;
198
-
199
- &:after, &:before{
200
- display: table;
201
- content: " ";
202
- clear: both;
203
- }
204
-
205
- & > a {
206
- font-family: Arial, sans-serif;
207
- display: inline-block;
208
- padding-left: 32px;
209
- min-height: $menu-icon-size;
210
- line-height: $menu-icon-size;
211
- font-size: 14px;
212
- clear: both;
213
- &.open {
214
- background: #313131;
215
- }
216
- & > .arrow {
217
- float: right;
218
- padding-right: 30px;
219
- &:before {
220
- float: right;
221
- display: inline;
222
- font-size: 16px;
223
- font-family: FontAwesome;
224
- height: auto;
225
- content: "\f104";
226
- font-weight: 300;
227
- text-shadow: none;
228
- @include transition(all 0.12s ease);
229
- }
230
- &.open {
231
- &:before {
232
- @include rotate(-90deg);
233
- }
234
- }
235
- }
236
- & > .badge {
237
- margin-top: 12px;
238
- }
239
- & > .title{
240
- float: left;
241
- white-space: nowrap;
242
- text-overflow: ellipsis;
243
- overflow: hidden;
244
- width: 65%;
245
- }
246
- & > .details{
247
- font-size: 12px;
248
- opacity: 0.4;
249
- display: block;
250
- clear: both;
251
- }
252
- &.detailed{
253
- & > .title{
254
- line-height: 28px;
255
- }
256
- & > .details{
257
- line-height: 16px;
258
- }
259
- }
260
- }
261
- &.active {
262
- & > ul {
263
- &.sub-menu {
264
- display: block;
265
- }
266
- }
267
- }
268
- & > .icon-thumbnail{
269
- &:first-letter {
270
- text-transform: uppercase;
271
- }
272
- }
273
- & > ul {
274
- &.sub-menu {
275
- & > li {
276
- ul {
277
- &.sub-menu {
278
- li {
279
- padding-left: 10px;
280
- padding-right: 3px
281
- }
282
- .icon-thumbnail {
283
- width: 25px;
284
- height: 25px;
285
- line-height: 25px;
286
- font-size: 10px;
287
- }
288
- }
289
- }
290
- }
291
- li {
292
- & > a {
293
- & > .arrow {
294
- &:before {
295
- float: right;
296
- margin-top: 1px;
297
- margin-right: 20px;
298
- display: inline;
299
- font-size: 16px;
300
- font-family: FontAwesome;
301
- height: auto;
302
- content: "\f104";
303
- font-weight: 300;
304
- text-shadow: none;
305
- @include transition(all 0.12s ease);
306
- }
307
- &.open {
308
- &:before {
309
- float: right;
310
- margin-top: 1px;
311
- margin-right: 18px;
312
- display: inline;
313
- font-family: FontAwesome;
314
- height: auto;
315
- font-size: 16px;
316
- @include rotate(-90deg);
317
- font-weight: 300;
318
- text-shadow: none;
319
- }
320
- }
321
- }
322
- }
323
-
324
- }
325
- }
326
- }
327
- ul {
328
- &.sub-menu {
329
- //display: none;
330
- list-style: none;
331
- clear: both;
332
- margin: 0 0 10px 0;
333
- background-color: $color-menu-dark;
334
- padding: 18px 0 10px 0;
335
- & > li {
336
- background: none;
337
- padding: 0px 20px 0 40px;
338
- margin-top: 1px;
339
- &:hover{
340
- & > .icon-thumbnail{
341
- color: $color-menu-link-hover;
342
- }
343
- }
344
- & > a {
345
- display: inline-block;
346
- padding: 5px 0px;
347
- font-size: 13px;
348
- font-family: Arial, sans-serif;
349
- white-space: normal;
350
- }
351
- .icon-thumbnail {
352
- width: 30px;
353
- height: 30px;
354
- line-height: 30px;
355
- margin: 0;
356
- background-color: $color-menu;
357
- font-size: 14px;
358
- }
359
- }
360
- }
361
- }
362
- }
363
- }
364
- .muted {
365
- color: #576775;
366
- opacity:.45;
367
- }
368
- }
369
- .icon-thumbnail [class^="bg-"], [class*="bg-"]{
370
- color: #fff;
371
- }
372
- }
373
- [data-toggle-pin="sidebar"]{
374
- & > i:before{
375
- content: "\f10c";
376
- }
377
- }
378
- /* Sidebar icon holder
379
- ------------------------------------
380
- */
381
- .icon-thumbnail {
382
- display: inline-block;
383
- background: $color-menu-dark;
384
- height: $menu-icon-size;
385
- width: $menu-icon-size;
386
- line-height: $menu-icon-size;
387
- text-align: center;
388
- vertical-align: middle;
389
- position: relative;
390
- left: 0;
391
- float: right;
392
- margin-right: 14px;
393
- color:$color-menu-light;
394
- font-size: 16px;
395
- -webkit-transition: -webkit-transform 0.4s cubic-bezier($menu-bezier);
396
- transition: transform 0.4s cubic-bezier($menu-bezier);
397
- -webkit-backface-visibility: hidden;
398
- -webkit-perspective: 1000px;
399
- font-family: $base-font-family;
400
- -webkit-font-smoothing:antialiased;
401
- -webkit-text-size-adjust:100%;
402
- -ms-text-size-adjust:100%;
403
- font-weight: bold;
404
- & > i{
405
- font-size: 14px;
406
- }
407
- & > svg{
408
- width: auto;
409
- height: auto;
410
- display: inline;
411
- }
412
- }
413
-
@@ -1,144 +0,0 @@
1
-
2
- $disabled-color:$color-master-lighter;
3
- $font-size-base:14px;
4
- $component-background:#fff;
5
- $switch-duration:200ms;
6
- $ease-in-out-circ:ease;
7
-
8
- .toggle-switch {
9
- position: relative;
10
- display: inline-block;
11
- box-sizing: border-box;
12
- height: 32px;
13
- min-width: 52px;
14
- line-height: 20px;
15
- vertical-align: middle;
16
- border-radius: 50px;
17
- border: 1px solid transparent;
18
- background-color: rgb(255, 255, 255);
19
- border-color: rgb(223, 223, 223);
20
- box-shadow: rgb(223, 223, 223) 0px 0px 0px 0px inset;
21
- cursor: pointer;
22
- transition: all $switch-duration;
23
- user-select: none;
24
- &-inner {
25
- color: #fff;
26
- font-size: $font-size-base;
27
- margin-left: 24px;
28
- margin-right: 6px;
29
- display: block;
30
- }
31
-
32
- &:after {
33
- position: absolute;
34
- width: 30px;
35
- height: 30px;
36
- left: 0;
37
- top: 0;
38
- box-shadow: 0 1px 3px rgba(0,0,0,0.4);
39
- border-radius: 30px;
40
- background-color: $component-background;
41
- content: " ";
42
- cursor: pointer;
43
- transition: all $switch-duration $ease-in-out-circ;
44
- }
45
-
46
- &:active:after {
47
- width: 34px;
48
- }
49
-
50
- &:focus {
51
- box-shadow: 0 0 0 2px fade($color-master-light, 20%);
52
- outline: 0;
53
- }
54
-
55
- &:focus:hover {
56
- box-shadow: none;
57
- }
58
-
59
- &-small {
60
- height: 22px;
61
- min-width: 35px;
62
- line-height: 22px;
63
-
64
- .switch-toggle-inner {
65
- margin-left: 18px;
66
- margin-right: 3px;
67
- }
68
-
69
- &:after {
70
- width: 20px;
71
- height: 20px;
72
- top: 0;
73
- left: 0.5px;
74
- }
75
-
76
- &:active:after {
77
- width: 22px;
78
- }
79
-
80
- &.toggle-switch-checked {
81
- &:after {
82
- left: 100%;
83
- margin-left: -20px;
84
- }
85
-
86
- .switch-toggle-inner {
87
- margin-left: 3px;
88
- margin-right: 18px;
89
- }
90
- }
91
- &:active{
92
- &.toggle-switch-checked:after {
93
- margin-left: -22px;
94
- }
95
- }
96
- }
97
-
98
-
99
- &-checked {
100
- background-color: $color-primary;
101
- &.primary{
102
- background-color: $color-primary;
103
- }
104
- &.success{
105
- background-color: $color-success;
106
- }
107
- &.info{
108
- background-color: $color-info;
109
- }
110
- &.info{
111
- background-color: $color-danger;
112
- }
113
- &.warning{
114
- background-color: $color-warning;
115
- }
116
- .switch-toggle-inner {
117
- margin-left: 6px;
118
- margin-right: 24px;
119
- }
120
-
121
- &:after {
122
- left: 100%;
123
- margin-left: -30px;
124
- }
125
-
126
- &:active:after {
127
- margin-left: -34px;
128
- }
129
- }
130
-
131
- &-disabled {
132
- cursor: not-allowed;
133
- background: #f4f4f4;
134
- opacity: 0.5;
135
- &:after {
136
- //background:$color-master-lighter;
137
- cursor: not-allowed;
138
- }
139
-
140
- .switch-toggle-inner {
141
- color: $disabled-color;
142
- }
143
- }
144
- }