@burh/nuxt-core 1.0.290 → 1.0.292

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 (31) hide show
  1. package/assets/sass/burh-ds/atoms/_buttons.scss +219 -219
  2. package/assets/sass/burh-ds/content/_interface-spa.scss +306 -306
  3. package/assets/sass/burh-ds/content/_main-content.scss +25 -25
  4. package/assets/sass/burh-ds/variables/_colors.scss +350 -350
  5. package/components/argon-core/BaseDropdown.vue +114 -114
  6. package/components/argon-core/BaseProgress.vue +121 -121
  7. package/components/argon-core/Modal.vue +184 -184
  8. package/components/burh-ds/Cards/FeatureBusinessCard.vue +74 -74
  9. package/components/burh-ds/Cards/PerformanceCard.vue +81 -81
  10. package/components/burh-ds/Cards/RecruitmentCard.vue +214 -214
  11. package/components/burh-ds/Collapse/DefaultCollapse.vue +70 -70
  12. package/components/burh-ds/Curriculum/UserCurriculum/UserCvMiddle.vue +497 -496
  13. package/components/burh-ds/Curriculum/UserCurriculum/index.vue +245 -245
  14. package/components/burh-ds/Dropdown/JobStatusDropdown.vue +145 -145
  15. package/components/burh-ds/Headings/AppHeader.vue +162 -162
  16. package/components/burh-ds/Inputs/SearchInput.vue +64 -64
  17. package/components/burh-ds/Lists/VagasSimple.vue +404 -404
  18. package/components/burh-ds/Loadings/LoadingFullPage.vue +68 -68
  19. package/components/burh-ds/Loads/LoadingBar.vue +83 -83
  20. package/components/burh-ds/Modals/MobileModal.vue +65 -65
  21. package/components/burh-ds/Modals/NewUserModal.vue +87 -87
  22. package/components/burh-ds/Modals/SharedModal.vue +270 -270
  23. package/components/burh-ds/Skeleton/BaseCardUniversity.vue +79 -79
  24. package/components/burh-ds/Skeleton/BaseCardUser.vue +84 -84
  25. package/components/burh-ds/Skeleton/Cards.vue +86 -86
  26. package/components/burh-ds/Skeleton/Home.vue +100 -100
  27. package/components/burh-ds/Skeleton/RecruitmentCard.vue +169 -169
  28. package/components/burh-ds/Skeleton/SkeletonAnimate.vue +96 -96
  29. package/components/layouts/burh-ds/footer/ProductsFooter.vue +330 -330
  30. package/nuxt.config.js +206 -206
  31. package/package.json +1 -1
@@ -1,219 +1,219 @@
1
- .btn,
2
- .tag {
3
- min-width: 8em;
4
- margin: $spacer $spacer $spacer 0;
5
- @include button-size($padding-default-y, $padding-default-x, $font-size-default, $line-height-default, $border-radius-default);
6
- font-weight: 400;
7
- text-align: center;
8
-
9
- // APAGAR APOS AJUSTES
10
- // &-chevron-left {
11
- // background-color: #fff;
12
- // border: 1px solid #2a5ee8;
13
-
14
- // .btn-inner--icon {
15
- // color:#2a5ee8;
16
- // }
17
-
18
- // &:hover{
19
- // .btn-inner--icon{
20
- // color: white;
21
- // }
22
- // }
23
- // }
24
-
25
- &:first-child {
26
- margin-right: 0;
27
- }
28
- &:last-child {
29
- margin-right: 0;
30
- }
31
- &:not(:last-child) {
32
- margin-right: $spacer;
33
- }
34
-
35
- &-lg {
36
- font-size: $font-size-lg;
37
- }
38
- &-xl {
39
- font-size: $font-size-xl;
40
- @include button-size($padding-xl-y, $padding-xl-x, $font-size-xl, $line-height-default, $border-radius-default);
41
- }
42
- &-sm {
43
- font-size: $font-size-sm;
44
- }
45
- &-xs {
46
- @include button-size($padding-xs-y, $padding-xs-x, $font-size-xs, $line-height-default, $border-radius-default);
47
- text-transform: uppercase;
48
- }
49
- &-icon-only {
50
- min-width: initial;
51
- padding: 0;
52
- }
53
-
54
- //disabled button
55
-
56
- &-disabled {
57
- background-color: lighten($border-color, 2%);
58
-
59
- &,
60
- &:hover,
61
- &:focus,
62
- &:active {
63
- box-shadow: none;
64
- color: darken($border-color, 5%);
65
- transform: none;
66
- cursor: default;
67
- }
68
-
69
- &:not(:disabled) {
70
- &:not(.disabled) {
71
- &:active,
72
- &.active {
73
- &:focus {
74
- box-shadow: none;
75
- color: darken($border-color, 5%);
76
- transform: none;
77
- cursor: default;
78
- }
79
- }
80
- }
81
- }
82
- }
83
-
84
- &-outline {
85
- &-disabled {
86
- color: darken($border-color, 4%);
87
- border-color: darken($border-color, 4%);
88
-
89
- &:hover,
90
- &:focus,
91
- &.focus
92
- &:active {
93
- color: darken($border-color, 4%);
94
- border-color: darken($border-color, 4%);
95
- box-shadow: none;
96
- transform: none;
97
- cursor: not-allowed;
98
- }
99
-
100
-
101
- &:not(:disabled) {
102
- &:not(.disabled) {
103
- &:active,
104
- &.active {
105
- &:focus {
106
- color: darken($border-color, 4%);
107
- border-color: darken($border-color, 4%);
108
- box-shadow: none;
109
- transform: none;
110
- cursor: not-allowed;
111
- }
112
- }
113
- }
114
- }
115
- }
116
-
117
- }
118
-
119
- &-linkedin {
120
- color: #fff;
121
- box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
122
- &,
123
- &:active,
124
- &:hover,
125
- &:focus {
126
- background-color: #0077b5;
127
- border-color: #0077b5;
128
- }
129
- }
130
-
131
- &-whatsapp {
132
- color: #fff;
133
- box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
134
- &,
135
- &:active,
136
- &:hover,
137
- &:focus {
138
- background-color: #25d366;
139
- border-color: #25d366;
140
- }
141
- }
142
- }
143
-
144
- //
145
- //btn group
146
- .btn-group {
147
- &,
148
- &:not(:last-child) {
149
- margin-right: $spacer;
150
- }
151
- &:last-child {
152
- margin-right: 0;
153
- }
154
-
155
- .btn {
156
- min-width: initial;
157
- padding-left: 1em;
158
- padding-right: 1em;
159
- margin-right: 0;
160
-
161
- &:first-child {
162
- padding-left: 1.5em;
163
- }
164
- &:last-child {
165
- padding-right: 1.5em;
166
- }
167
- }
168
- }
169
-
170
- // button left and right with icon to navigation
171
-
172
- .tag {
173
- //border: 0;
174
- min-width: initial;
175
- border-radius: 3px;
176
- margin-top: 0;
177
- padding-right: 1em;
178
- padding-left: 1em;
179
- }
180
-
181
- //
182
- // Alternate buttons
183
- //
184
- @each $color, $value in $theme-colors {
185
- .tag-#{$color} {
186
- @include button-variant($value, $value);
187
- }
188
- }
189
-
190
- @each $color, $value in $theme-colors {
191
- .tag-outline-#{$color} {
192
- @include button-outline-variant($value);
193
- border: 2px solid #{$value};
194
-
195
- &.tag-static {
196
- &,
197
- &:hover,
198
- &:focus,
199
- &:active {
200
- background-color: transparent !important;
201
- color: #{$value} !important;
202
- cursor: default;
203
- outline: none;
204
- box-shadow: none;
205
- }
206
- }
207
- }
208
- }
209
-
210
- .btn-link {
211
- box-shadow: none;
212
-
213
- &:hover,
214
- &:focus,
215
- &:active {
216
- box-shadow: none !important;
217
- transform: none;
218
- }
219
- }
1
+ .btn,
2
+ .tag {
3
+ min-width: 8em;
4
+ margin: $spacer $spacer $spacer 0;
5
+ @include button-size($padding-default-y, $padding-default-x, $font-size-default, $line-height-default, $border-radius-default);
6
+ font-weight: 400;
7
+ text-align: center;
8
+
9
+ // APAGAR APOS AJUSTES
10
+ // &-chevron-left {
11
+ // background-color: #fff;
12
+ // border: 1px solid #4460F4;
13
+
14
+ // .btn-inner--icon {
15
+ // color:#4460F4;
16
+ // }
17
+
18
+ // &:hover{
19
+ // .btn-inner--icon{
20
+ // color: white;
21
+ // }
22
+ // }
23
+ // }
24
+
25
+ &:first-child {
26
+ margin-right: 0;
27
+ }
28
+ &:last-child {
29
+ margin-right: 0;
30
+ }
31
+ &:not(:last-child) {
32
+ margin-right: $spacer;
33
+ }
34
+
35
+ &-lg {
36
+ font-size: $font-size-lg;
37
+ }
38
+ &-xl {
39
+ font-size: $font-size-xl;
40
+ @include button-size($padding-xl-y, $padding-xl-x, $font-size-xl, $line-height-default, $border-radius-default);
41
+ }
42
+ &-sm {
43
+ font-size: $font-size-sm;
44
+ }
45
+ &-xs {
46
+ @include button-size($padding-xs-y, $padding-xs-x, $font-size-xs, $line-height-default, $border-radius-default);
47
+ text-transform: uppercase;
48
+ }
49
+ &-icon-only {
50
+ min-width: initial;
51
+ padding: 0;
52
+ }
53
+
54
+ //disabled button
55
+
56
+ &-disabled {
57
+ background-color: lighten($border-color, 2%);
58
+
59
+ &,
60
+ &:hover,
61
+ &:focus,
62
+ &:active {
63
+ box-shadow: none;
64
+ color: darken($border-color, 5%);
65
+ transform: none;
66
+ cursor: default;
67
+ }
68
+
69
+ &:not(:disabled) {
70
+ &:not(.disabled) {
71
+ &:active,
72
+ &.active {
73
+ &:focus {
74
+ box-shadow: none;
75
+ color: darken($border-color, 5%);
76
+ transform: none;
77
+ cursor: default;
78
+ }
79
+ }
80
+ }
81
+ }
82
+ }
83
+
84
+ &-outline {
85
+ &-disabled {
86
+ color: darken($border-color, 4%);
87
+ border-color: darken($border-color, 4%);
88
+
89
+ &:hover,
90
+ &:focus,
91
+ &.focus
92
+ &:active {
93
+ color: darken($border-color, 4%);
94
+ border-color: darken($border-color, 4%);
95
+ box-shadow: none;
96
+ transform: none;
97
+ cursor: not-allowed;
98
+ }
99
+
100
+
101
+ &:not(:disabled) {
102
+ &:not(.disabled) {
103
+ &:active,
104
+ &.active {
105
+ &:focus {
106
+ color: darken($border-color, 4%);
107
+ border-color: darken($border-color, 4%);
108
+ box-shadow: none;
109
+ transform: none;
110
+ cursor: not-allowed;
111
+ }
112
+ }
113
+ }
114
+ }
115
+ }
116
+
117
+ }
118
+
119
+ &-linkedin {
120
+ color: #fff;
121
+ box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
122
+ &,
123
+ &:active,
124
+ &:hover,
125
+ &:focus {
126
+ background-color: #0077b5;
127
+ border-color: #0077b5;
128
+ }
129
+ }
130
+
131
+ &-whatsapp {
132
+ color: #fff;
133
+ box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
134
+ &,
135
+ &:active,
136
+ &:hover,
137
+ &:focus {
138
+ background-color: #25d366;
139
+ border-color: #25d366;
140
+ }
141
+ }
142
+ }
143
+
144
+ //
145
+ //btn group
146
+ .btn-group {
147
+ &,
148
+ &:not(:last-child) {
149
+ margin-right: $spacer;
150
+ }
151
+ &:last-child {
152
+ margin-right: 0;
153
+ }
154
+
155
+ .btn {
156
+ min-width: initial;
157
+ padding-left: 1em;
158
+ padding-right: 1em;
159
+ margin-right: 0;
160
+
161
+ &:first-child {
162
+ padding-left: 1.5em;
163
+ }
164
+ &:last-child {
165
+ padding-right: 1.5em;
166
+ }
167
+ }
168
+ }
169
+
170
+ // button left and right with icon to navigation
171
+
172
+ .tag {
173
+ //border: 0;
174
+ min-width: initial;
175
+ border-radius: 3px;
176
+ margin-top: 0;
177
+ padding-right: 1em;
178
+ padding-left: 1em;
179
+ }
180
+
181
+ //
182
+ // Alternate buttons
183
+ //
184
+ @each $color, $value in $theme-colors {
185
+ .tag-#{$color} {
186
+ @include button-variant($value, $value);
187
+ }
188
+ }
189
+
190
+ @each $color, $value in $theme-colors {
191
+ .tag-outline-#{$color} {
192
+ @include button-outline-variant($value);
193
+ border: 2px solid #{$value};
194
+
195
+ &.tag-static {
196
+ &,
197
+ &:hover,
198
+ &:focus,
199
+ &:active {
200
+ background-color: transparent !important;
201
+ color: #{$value} !important;
202
+ cursor: default;
203
+ outline: none;
204
+ box-shadow: none;
205
+ }
206
+ }
207
+ }
208
+ }
209
+
210
+ .btn-link {
211
+ box-shadow: none;
212
+
213
+ &:hover,
214
+ &:focus,
215
+ &:active {
216
+ box-shadow: none !important;
217
+ transform: none;
218
+ }
219
+ }