@burh/nuxt-core 1.0.472 → 1.0.474

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.
@@ -1,306 +1,306 @@
1
-
2
- @import "node_modules/bootstrap/scss/mixins/_breakpoints";
3
-
4
- // Estrutura para pagina com unico footer => somente no arquivo ./pages/testes.scss, era o original
5
- // interface-spa-testes
6
- // interface-spa__header
7
- // interface-spa__body
8
- // interface-spa__aside
9
- // interface-spa__content
10
- // interface-spa__footer
11
- // interface-spa__aside
12
- // interface-spa__content
13
-
14
- // Estrutura padrão universal para facilitar utilização do grid isolado => * significa que compartilham tamanhos
15
- // interface-spa
16
- // interface-spa__header
17
- // interface-spa__body
18
- // interface-spa__aside
19
- // interface-spa__aside__header *
20
- // interface-spa__aside__body *
21
- // interface-spa__aside__footer *
22
- // interface-spa__content
23
- // interface-spa__content__header *
24
- // interface-spa__content__body *
25
- // interface-spa__content__footer *
26
-
27
-
28
- .interface-spa {
29
- overflow: hidden;
30
-
31
- &__header,
32
- &__body {
33
- @include media-breakpoint-up(lg) {
34
- overflow: hidden;
35
- display: flex;
36
- }
37
- }
38
-
39
- &__header {
40
- position: fixed;
41
- width: 100%;
42
- height: calc(#{$navbar-height-mobile} / 1.4);
43
- top: #{$navbar-height-mobile};
44
- left: 0;
45
- z-index: 20;
46
- padding: 0;
47
- box-shadow: 0 0 2rem 0 rgba($base-dark, .1);
48
- background-color: $base-light;
49
-
50
- .btn {
51
- width: 100%;
52
- margin: 0;
53
- }
54
-
55
- @media (min-width: map-get($grid-breakpoints, "md")) {
56
- padding: $spacer #{$document-padding/2};
57
- }
58
- @media (min-width: map-get($grid-breakpoints, "lg")) {
59
- padding: $spacer #{$document-padding*1.5};
60
- }
61
-
62
-
63
- @include media-breakpoint-up(lg) {
64
- position: relative;
65
- top: 0;
66
- align-items: center;
67
- height: $navbar-height;
68
- //padding: $spacer #{$spacer*2};
69
- //box-shadow: inset 0 0 0 1px $border-color-light;
70
- outline: 1px solid $card-border-color;
71
-
72
-
73
- .btn {
74
- width: auto;
75
- }
76
- }
77
- .form-group {
78
- margin: 0;
79
- }
80
- }
81
- &__filter {
82
- display: flex;
83
- width: 100%;
84
- align-items: center;
85
- flex-wrap: wrap;
86
- min-height: 100%;
87
- padding: 0;
88
- background-color: $base-light;
89
- box-shadow: 0 0 2rem 0 rgba($base-dark, .1);
90
-
91
- @include media-breakpoint-up(lg) {
92
- flex-wrap: nowrap;
93
- box-shadow: none;
94
- }
95
-
96
- .wrapper {
97
- position: relative;
98
- z-index: 10;
99
- width: 100%;
100
- padding: .5rem 1rem;
101
-
102
- @include media-breakpoint-up(lg) {
103
- padding: 0;
104
- }
105
- }
106
-
107
- &__header {
108
- @include media-breakpoint-up(lg) {
109
- display: none !important;
110
- }
111
- }
112
- &__controls {
113
- width: 100%;
114
- height: 0;
115
- overflow: hidden;
116
-
117
- @include media-breakpoint-up(lg) {
118
- display: flex;
119
- height: auto;
120
- overflow: initial;
121
- }
122
- > * {
123
- margin-bottom: .5rem !important;
124
-
125
- @include media-breakpoint-up(lg) {
126
- margin-bottom: 0 !important;
127
- }
128
- }
129
- }
130
- &.active {
131
- z-index: 10;
132
-
133
- .interface-spa__filter {
134
- &__controls {
135
- height: auto;
136
- padding: 1rem 0 0;
137
- }
138
- }
139
- &::after {
140
- content: " ";
141
- position: fixed;
142
- top: 0;
143
- left: 0;
144
- z-index: 9;
145
- display: block;
146
- width: 100%;
147
- height: 100%;
148
- background: $base-dark;
149
- opacity: .75;
150
- }
151
- }
152
- }
153
-
154
- &__body {
155
- //padding-bottom: 10rem;
156
- }
157
-
158
- &__aside,
159
- &__content {
160
- &__header,
161
- &__footer {
162
- position: relative;
163
- z-index: 10;
164
- }
165
- &__header {
166
- position: fixed;
167
- bottom: 0;
168
- left: 0;
169
- width: 100%;
170
- height: $navbar-height;
171
- background-color: $base-light;
172
- box-shadow: 0 0 2rem 0 rgba($base-dark, .1);
173
- font-size: .8rem;
174
-
175
- @include media-breakpoint-up(lg) {
176
- position: relative;
177
- }
178
- }
179
- &__body {
180
- //top: $navbar-height;
181
- //left: 0;
182
- //height: calc(100vh - #{$navbar-height * 4});
183
- @extend .scrollbar;
184
-
185
- @include media-breakpoint-up(lg) {
186
- overflow-y: auto;
187
- height: calc(100vh - #{$navbar-height * 4});
188
- padding-bottom: 0;
189
- }
190
- }
191
- &__footer {
192
- display: none;
193
- width: 100%;
194
- height: $navbar-height;
195
-
196
- @include media-breakpoint-up(lg) {
197
- display: flex;
198
- align-items: center;
199
- justify-content: center;
200
- }
201
- }
202
- }
203
- &__aside {
204
- position: relative;
205
-
206
- @include media-breakpoint-up(lg) {
207
- width: calc(#{$aside-width} + #{$document-padding*1.5});
208
- }
209
- @media only screen and (min-width: 1440px) {
210
- width: calc(#{$aside-min-width*1.5} + #{$document-padding*1.5});
211
- }
212
- &__header {
213
- display: flex;
214
- align-items: center;
215
- justify-content: center;
216
- }
217
- &__body {
218
- padding-top: calc(#{$navbar-height-mobile} / 1.4);
219
-
220
- @include media-breakpoint-up(lg) {
221
- padding-top: 0;
222
- box-shadow: inset 0 0 0 1px $border-color-light;
223
- }
224
- }
225
- &__footer {
226
- background-color: $primary;
227
- color: $white;
228
-
229
- @include media-breakpoint-up(lg) {
230
- }
231
- }
232
-
233
- &--big {
234
- @include media-breakpoint-up(lg) {
235
- .interface-spa__aside__body {
236
- height: calc(100vh - #{$navbar-height * 3}); // removing 1 item
237
- }
238
- }
239
- }
240
- }
241
- &__content {
242
- display: none;
243
- transition: all .45s ease-in-out;
244
- @extend .scrollbar;
245
-
246
- @include media-breakpoint-up(lg) {
247
- display: block;
248
- width: calc(100% - #{$aside-width});
249
- height: calc(100vh - #{$navbar-height * 2});
250
- overflow-y: auto;
251
- transform: translateY(0);
252
- opacity: 1;
253
- transition: all .45s ease-in-out;
254
- }
255
- @media only screen and (min-width: 1440px) {
256
- width: calc(100vw - #{$aside-min-width*1.5} );
257
- }
258
- }
259
- .wrapper {
260
- background: $base-light;
261
- }
262
- }
263
-
264
-
265
- @include media-breakpoint-up(lg) {
266
- .interface-spa {
267
- //quanto tem apenas um item
268
- &--single {
269
- .interface-spa {
270
- &__aside {
271
- width: 0;
272
-
273
- .search {
274
- &__header {
275
- width: $aside-width;
276
- position: absolute;
277
- }
278
- }
279
- }
280
- &__content {
281
- width: 100%;
282
-
283
- .search {
284
- &__header {
285
- padding-left: calc(#{$aside-width} + 2rem);
286
- }
287
- &__body {
288
- .card {
289
- max-width: 1200px;
290
- margin-right: auto;
291
- margin-left: auto;
292
- }
293
- }
294
- }
295
- }
296
- }
297
- }
298
- }
299
- }
300
-
301
- .container-fluid {
302
- &--bu {
303
- width: 90%!important;
304
- max-width: 1760px!important;
305
- }
306
- }
1
+
2
+ @import "node_modules/bootstrap/scss/mixins/_breakpoints";
3
+
4
+ // Estrutura para pagina com unico footer => somente no arquivo ./pages/testes.scss, era o original
5
+ // interface-spa-testes
6
+ // interface-spa__header
7
+ // interface-spa__body
8
+ // interface-spa__aside
9
+ // interface-spa__content
10
+ // interface-spa__footer
11
+ // interface-spa__aside
12
+ // interface-spa__content
13
+
14
+ // Estrutura padrão universal para facilitar utilização do grid isolado => * significa que compartilham tamanhos
15
+ // interface-spa
16
+ // interface-spa__header
17
+ // interface-spa__body
18
+ // interface-spa__aside
19
+ // interface-spa__aside__header *
20
+ // interface-spa__aside__body *
21
+ // interface-spa__aside__footer *
22
+ // interface-spa__content
23
+ // interface-spa__content__header *
24
+ // interface-spa__content__body *
25
+ // interface-spa__content__footer *
26
+
27
+
28
+ .interface-spa {
29
+ overflow: hidden;
30
+
31
+ &__header,
32
+ &__body {
33
+ @include media-breakpoint-up(lg) {
34
+ overflow: hidden;
35
+ display: flex;
36
+ }
37
+ }
38
+
39
+ &__header {
40
+ position: fixed;
41
+ width: 100%;
42
+ height: calc(#{$navbar-height-mobile} / 1.4);
43
+ top: #{$navbar-height-mobile};
44
+ left: 0;
45
+ z-index: 20;
46
+ padding: 0;
47
+ box-shadow: 0 0 2rem 0 rgba($base-dark, .1);
48
+ background-color: $base-light;
49
+
50
+ .btn {
51
+ width: 100%;
52
+ margin: 0;
53
+ }
54
+
55
+ @media (min-width: map-get($grid-breakpoints, "md")) {
56
+ padding: $spacer #{$document-padding/2};
57
+ }
58
+ @media (min-width: map-get($grid-breakpoints, "lg")) {
59
+ padding: $spacer #{$document-padding*1.5};
60
+ }
61
+
62
+
63
+ @include media-breakpoint-up(lg) {
64
+ position: relative;
65
+ top: 0;
66
+ align-items: center;
67
+ height: $navbar-height;
68
+ //padding: $spacer #{$spacer*2};
69
+ //box-shadow: inset 0 0 0 1px $border-color-light;
70
+ outline: 1px solid $card-border-color;
71
+
72
+
73
+ .btn {
74
+ width: auto;
75
+ }
76
+ }
77
+ .form-group {
78
+ margin: 0;
79
+ }
80
+ }
81
+ &__filter {
82
+ display: flex;
83
+ width: 100%;
84
+ align-items: center;
85
+ flex-wrap: wrap;
86
+ min-height: 100%;
87
+ padding: 0;
88
+ background-color: $base-light;
89
+ box-shadow: 0 0 2rem 0 rgba($base-dark, .1);
90
+
91
+ @include media-breakpoint-up(lg) {
92
+ flex-wrap: nowrap;
93
+ box-shadow: none;
94
+ }
95
+
96
+ .wrapper {
97
+ position: relative;
98
+ z-index: 10;
99
+ width: 100%;
100
+ padding: .5rem 1rem;
101
+
102
+ @include media-breakpoint-up(lg) {
103
+ padding: 0;
104
+ }
105
+ }
106
+
107
+ &__header {
108
+ @include media-breakpoint-up(lg) {
109
+ display: none !important;
110
+ }
111
+ }
112
+ &__controls {
113
+ width: 100%;
114
+ height: 0;
115
+ overflow: hidden;
116
+
117
+ @include media-breakpoint-up(lg) {
118
+ display: flex;
119
+ height: auto;
120
+ overflow: initial;
121
+ }
122
+ > * {
123
+ margin-bottom: .5rem !important;
124
+
125
+ @include media-breakpoint-up(lg) {
126
+ margin-bottom: 0 !important;
127
+ }
128
+ }
129
+ }
130
+ &.active {
131
+ z-index: 10;
132
+
133
+ .interface-spa__filter {
134
+ &__controls {
135
+ height: auto;
136
+ padding: 1rem 0 0;
137
+ }
138
+ }
139
+ &::after {
140
+ content: " ";
141
+ position: fixed;
142
+ top: 0;
143
+ left: 0;
144
+ z-index: 9;
145
+ display: block;
146
+ width: 100%;
147
+ height: 100%;
148
+ background: $base-dark;
149
+ opacity: .75;
150
+ }
151
+ }
152
+ }
153
+
154
+ &__body {
155
+ //padding-bottom: 10rem;
156
+ }
157
+
158
+ &__aside,
159
+ &__content {
160
+ &__header,
161
+ &__footer {
162
+ position: relative;
163
+ z-index: 10;
164
+ }
165
+ &__header {
166
+ position: fixed;
167
+ bottom: 0;
168
+ left: 0;
169
+ width: 100%;
170
+ height: $navbar-height;
171
+ background-color: $base-light;
172
+ box-shadow: 0 0 2rem 0 rgba($base-dark, .1);
173
+ font-size: .8rem;
174
+
175
+ @include media-breakpoint-up(lg) {
176
+ position: relative;
177
+ }
178
+ }
179
+ &__body {
180
+ //top: $navbar-height;
181
+ //left: 0;
182
+ //height: calc(100vh - #{$navbar-height * 4});
183
+ @extend .scrollbar;
184
+
185
+ @include media-breakpoint-up(lg) {
186
+ overflow-y: auto;
187
+ height: calc(100vh - #{$navbar-height * 4});
188
+ padding-bottom: 0;
189
+ }
190
+ }
191
+ &__footer {
192
+ display: none;
193
+ width: 100%;
194
+ height: $navbar-height;
195
+
196
+ @include media-breakpoint-up(lg) {
197
+ display: flex;
198
+ align-items: center;
199
+ justify-content: center;
200
+ }
201
+ }
202
+ }
203
+ &__aside {
204
+ position: relative;
205
+
206
+ @include media-breakpoint-up(lg) {
207
+ width: calc(#{$aside-width} + #{$document-padding*1.5});
208
+ }
209
+ @media only screen and (min-width: 1440px) {
210
+ width: calc(#{$aside-min-width*1.5} + #{$document-padding*1.5});
211
+ }
212
+ &__header {
213
+ display: flex;
214
+ align-items: center;
215
+ justify-content: center;
216
+ }
217
+ &__body {
218
+ padding-top: calc(#{$navbar-height-mobile} / 1.4);
219
+
220
+ @include media-breakpoint-up(lg) {
221
+ padding-top: 0;
222
+ box-shadow: inset 0 0 0 1px $border-color-light;
223
+ }
224
+ }
225
+ &__footer {
226
+ background-color: $primary;
227
+ color: $white;
228
+
229
+ @include media-breakpoint-up(lg) {
230
+ }
231
+ }
232
+
233
+ &--big {
234
+ @include media-breakpoint-up(lg) {
235
+ .interface-spa__aside__body {
236
+ height: calc(100vh - #{$navbar-height * 3}); // removing 1 item
237
+ }
238
+ }
239
+ }
240
+ }
241
+ &__content {
242
+ display: none;
243
+ transition: all .45s ease-in-out;
244
+ @extend .scrollbar;
245
+
246
+ @include media-breakpoint-up(lg) {
247
+ display: block;
248
+ width: calc(100% - #{$aside-width});
249
+ height: calc(100vh - #{$navbar-height * 2});
250
+ overflow-y: auto;
251
+ transform: translateY(0);
252
+ opacity: 1;
253
+ transition: all .45s ease-in-out;
254
+ }
255
+ @media only screen and (min-width: 1440px) {
256
+ width: calc(100vw - #{$aside-min-width*1.5} );
257
+ }
258
+ }
259
+ .wrapper {
260
+ background: $base-light;
261
+ }
262
+ }
263
+
264
+
265
+ @include media-breakpoint-up(lg) {
266
+ .interface-spa {
267
+ //quanto tem apenas um item
268
+ &--single {
269
+ .interface-spa {
270
+ &__aside {
271
+ width: 0;
272
+
273
+ .search {
274
+ &__header {
275
+ width: $aside-width;
276
+ position: absolute;
277
+ }
278
+ }
279
+ }
280
+ &__content {
281
+ width: 100%;
282
+
283
+ .search {
284
+ &__header {
285
+ padding-left: calc(#{$aside-width} + 2rem);
286
+ }
287
+ &__body {
288
+ .card {
289
+ max-width: 1200px;
290
+ margin-right: auto;
291
+ margin-left: auto;
292
+ }
293
+ }
294
+ }
295
+ }
296
+ }
297
+ }
298
+ }
299
+ }
300
+
301
+ .container-fluid {
302
+ &--bu {
303
+ width: 90%!important;
304
+ max-width: 1760px!important;
305
+ }
306
+ }
@@ -11,7 +11,7 @@
11
11
  &-info {
12
12
  background: $color-info !important;
13
13
  }
14
-
14
+
15
15
  &-success {
16
16
  background: $color-success !important;
17
17
  }
@@ -62,7 +62,7 @@
62
62
  border-bottom-right-radius: .25rem;
63
63
  }
64
64
 
65
- .input-group-prepend {
65
+ .input-group-prepend {
66
66
  border-right: 1px solid rgba(0, 0, 0, 0.2);
67
67
  border-top-right-radius: .25rem;
68
68
  border-bottom-right-radius: .25rem;
@@ -85,7 +85,7 @@
85
85
  display: block;
86
86
  width:17px;
87
87
  height: 100vh;
88
- overflow-y: scroll;
88
+ overflow-y: auto;
89
89
  }
90
90
  }
91
91
  @media (min-width: map-get($grid-breakpoints, "sm")) {
@@ -136,7 +136,7 @@ $modal-header-height: 70px;
136
136
  .row {
137
137
  &.border-bottom {
138
138
  border-bottom: 0 !important;
139
-
139
+
140
140
  &:after {
141
141
  content: "";
142
142
  display: block;
@@ -173,4 +173,4 @@ $modal-header-height: 70px;
173
173
  font-size: 1.55rem;
174
174
  font-weight: 600;
175
175
  }
176
- }
176
+ }