viniBaxter-desk_front 24.0.0 → 31.0.0

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 (24) hide show
  1. checksums.yaml +4 -4
  2. data/lib/viniBaxter/desk_front/version.rb +6 -1
  3. data/lib/viniBaxter/sass/desk_front/beckyBaxter/_mixins.scss +19 -15
  4. data/lib/viniBaxter/sass/desk_front/beckyBaxter/custom/_variables.scss +923 -923
  5. data/lib/viniBaxter/sass/desk_front/beckyBaxter/custom/_white-content.scss +319 -291
  6. data/lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/_buttons.scss +358 -300
  7. data/lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/_nav-setup-normal.scss +139 -0
  8. data/lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/_nav-setup-ntf.scss +146 -0
  9. data/lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/_nav-setup.scss +8 -0
  10. data/lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/caret-color.scss +10 -0
  11. data/lib/viniBaxter/sass/desk_front/beckyBaxter/new_nav/_navbar.scss +213 -197
  12. data/lib/viniBaxter/sass/desk_front/beckyBaxter/new_nav/_sidebar-and-main-panel.scss +119 -153
  13. data/lib/viniBaxter/sass/desk_front/beckyBaxter/new_nav/_white-content.scss +32 -6
  14. data/lib/viniBaxter/sass/desk_front/bootstrap/_buttons.scss +34 -8
  15. data/lib/viniBaxter/sass/desk_front/bootstrap/_card.scss +9 -8
  16. data/lib/viniBaxter/sass/desk_front/bootstrap/_custom-forms.scss +84 -51
  17. data/lib/viniBaxter/sass/desk_front/bootstrap/_grid.scss +14 -0
  18. data/lib/viniBaxter/sass/desk_front/bootstrap/_list-group.scss +8 -7
  19. data/lib/viniBaxter/sass/desk_front/bootstrap/_reboot.scss +2 -1
  20. data/lib/viniBaxter/sass/desk_front/bootstrap/bootstrap.scss +1 -2
  21. data/lib/viniBaxter/sass/desk_front/landing/spa_landing/theme/utilities/_sizing.scss +2 -11
  22. data/lib/viniBaxter/sass/desk_front/theme-dark.scss +1 -1
  23. data/lib/viniBaxter/sass/desk_front/theme.scss +1 -1
  24. metadata +7 -3
@@ -65,9 +65,10 @@ body {
65
65
  padding-top: $padding-body-lg-fixed-nav;
66
66
  }
67
67
 
68
+ // a,
68
69
  // p {
69
70
  // font-weight: $font-weight-light;
70
- // font-size: $paragraph-font-size;
71
+ // @include font-size($paragraph-font-size);
71
72
  // }
72
73
  }
73
74
 
@@ -5,7 +5,6 @@
5
5
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
6
6
  */
7
7
 
8
- // @import 'functions';
9
8
  @import 'mixins';
10
9
  @import 'root';
11
10
  @import 'reboot';
@@ -27,7 +26,7 @@
27
26
  @import 'breadcrumb';
28
27
  @import 'pagination';
29
28
  @import 'badge';
30
- @import 'jumbotron';
29
+ // @import 'jumbotron';
31
30
  @import 'alert';
32
31
  @import 'progress';
33
32
  @import 'media';
@@ -4,7 +4,6 @@
4
4
  //
5
5
 
6
6
  @each $size, $sizeValue in $sizes {
7
-
8
7
  // Percentage
9
8
 
10
9
  .mw-#{$size} {
@@ -16,18 +15,13 @@
16
15
  .vw-#{$size} {
17
16
  width: #{$size}vw !important;
18
17
  }
19
-
20
18
  }
21
19
 
22
-
23
20
  // Responsive
24
21
 
25
22
  @each $width, $widthValue in $container-max-widths {
26
-
27
23
  @include media-breakpoint-up($width) {
28
-
29
24
  @each $size, $sizeValue in $sizes {
30
-
31
25
  // Percentage
32
26
 
33
27
  .h-#{$width}-#{$size} {
@@ -51,22 +45,19 @@
51
45
  .vw-#{$width}-#{$size} {
52
46
  width: #{$size}vw;
53
47
  }
54
-
55
48
  }
56
49
  }
57
50
  }
58
51
 
59
-
60
52
  // Cover
61
53
  //
62
54
  // Spans the container till the edge of the viewport
63
55
 
64
56
  .w-cover {
65
-
66
57
  @each $width, $value in $container-max-widths {
67
-
68
58
  @include media-breakpoint-up(#{$width}) {
69
- width: calc(100% + (100vw - #{$value}) / 2 + #{$grid-gutter-width});
59
+ // width: calc(100% + (100vw - #{$value}) / 2 + #{$grid-gutter-width});
60
+ width: 100%;
70
61
  }
71
62
  }
72
63
  }
@@ -18,7 +18,7 @@
18
18
  @import 'dashkit/variables';
19
19
 
20
20
  // Bootstrap core
21
- @import '../../../node_modules/bootstrap/scss/bootstrap';
21
+ // @import '../../../node_modules/bootstrap/scss/bootstrap';
22
22
 
23
23
  // Dashkit core
24
24
  @import 'dashkit/dashkit';
@@ -5,7 +5,7 @@
5
5
  @import 'dashkit/variables';
6
6
 
7
7
  // Bootstrap core
8
- @import '../../../node_modules/bootstrap/scss/bootstrap';
8
+ // @import '../../../node_modules/bootstrap/scss/bootstrap';
9
9
 
10
10
  // Dashkit core
11
11
  @import 'dashkit/dashkit';
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: viniBaxter-desk_front
3
3
  version: !ruby/object:Gem::Version
4
- version: 24.0.0
4
+ version: 31.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - viny baxter
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-09-23 00:00:00.000000000 Z
11
+ date: 2021-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -232,10 +232,14 @@ files:
232
232
  - lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/_icon.scss
233
233
  - lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/_inputs.scss
234
234
  - lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/_modals.scss
235
+ - lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/_nav-setup-normal.scss
236
+ - lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/_nav-setup-ntf.scss
237
+ - lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/_nav-setup.scss
235
238
  - lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/_page-header.scss
236
239
  - lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/_popovers.scss
237
240
  - lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/_vendor-prefixes.scss
238
241
  - lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/_wizard.scss
242
+ - lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/caret-color.scss
239
243
  - lib/viniBaxter/sass/desk_front/beckyBaxter/mixins/opacity.scss
240
244
  - lib/viniBaxter/sass/desk_front/beckyBaxter/new_nav/_dropdown.scss
241
245
  - lib/viniBaxter/sass/desk_front/beckyBaxter/new_nav/_fixed-plugin.scss
@@ -425,7 +429,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
425
429
  - !ruby/object:Gem::Version
426
430
  version: '0'
427
431
  requirements: []
428
- rubygems_version: 3.1.4
432
+ rubygems_version: 3.1.2
429
433
  signing_key:
430
434
  specification_version: 4
431
435
  summary: test on front