viniBaxter-desk_front 24.0.0 → 25

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 87a58b0efc0e61685f1bcff933581b14ce1266b19db983dceefa57edaf471b01
4
- data.tar.gz: 5f500db2e93a0c85f8a0796ed0aadba8de8e6ac2295737061670147d008b51df
3
+ metadata.gz: 5b81d663da76a991d80fa6160268a593419ca045703c94d102a5f7ce7231597d
4
+ data.tar.gz: feb6a1a11c6f4b5ebef0e5a10624580bf2ed719d6ca5ac5ef28b858ef1a67ba7
5
5
  SHA512:
6
- metadata.gz: 541924bc970b514f9b98a1157b5e3be52696250bc37dfb0b04c8b58c1a263311da9aca17a04f44cdcdd488200331ca94da7a5c84d81be9018ed5fbcbd0b7ec05
7
- data.tar.gz: a4ddc2053b61616bdee7296e3b3dd416e1a59a2578286e17254eee0020cb70694258f2328c07ccb7e23ef2ea75199c8fc9cd5b451004c77f6ca221afa18dddf6
6
+ metadata.gz: 99d0bc775a8791cec9ad6e0d962453c584a4b64ce6e125842328a094c02029ff61f69331ff112d99568e0a034061ff0afd6c7a338743284400c0f142d9b1a1ee
7
+ data.tar.gz: a54e5976658e016e1d1749d739f5b6c80ee9434f65a0706f0f289431560eaa77d1667bd042b2cf7de01aab649dcef8770c72b6e2e9a0d81cd3f323649dc642c6
@@ -1,5 +1,5 @@
1
1
  module ViniBaxter
2
2
  module DeskFront
3
- VERSION = "24.0.0"
3
+ VERSION = '25'
4
4
  end
5
5
  end
@@ -3,7 +3,6 @@
3
3
  // .modal-dialog - positioning shell for the actual modal
4
4
  // .modal-content - actual modal w/ bg and corners and stuff
5
5
 
6
-
7
6
  .modal-open {
8
7
  // Kill the scroll on the body
9
8
  overflow: hidden;
@@ -84,7 +83,7 @@
84
83
  display: block; // IE10
85
84
  height: subtract(100vh, $modal-dialog-margin * 2);
86
85
  height: min-content; // Reset height to 0 except on IE
87
- content: "";
86
+ content: '';
88
87
  }
89
88
 
90
89
  // Ensure `.modal-body` shows scrollbar (IE10/11)
@@ -132,8 +131,12 @@
132
131
  background-color: $modal-backdrop-bg;
133
132
 
134
133
  // Fade for backdrop
135
- &.fade { opacity: 0; }
136
- &.show { opacity: $modal-backdrop-opacity; }
134
+ &.fade {
135
+ opacity: 0;
136
+ }
137
+ &.show {
138
+ opacity: $modal-backdrop-opacity;
139
+ }
137
140
  }
138
141
 
139
142
  // Modal header
@@ -149,7 +152,8 @@
149
152
  .close {
150
153
  padding: $modal-header-padding;
151
154
  // auto on the left force icon to the right even when there is no .modal-title
152
- margin: (-$modal-header-padding-y) (-$modal-header-padding-x) (-$modal-header-padding-y) auto;
155
+ margin: (-$modal-header-padding-y) (-$modal-header-padding-x)
156
+ (-$modal-header-padding-y) auto;
153
157
  }
154
158
  }
155
159
 
@@ -225,7 +229,9 @@
225
229
  @include box-shadow($modal-content-box-shadow-sm-up);
226
230
  }
227
231
 
228
- .modal-sm { max-width: $modal-sm; }
232
+ .modal-sm {
233
+ max-width: $modal-sm;
234
+ }
229
235
  }
230
236
 
231
237
  @include media-breakpoint-up(lg) {
@@ -236,5 +242,7 @@
236
242
  }
237
243
 
238
244
  @include media-breakpoint-up(xl) {
239
- .modal-xl { max-width: $modal-xl; }
245
+ .modal-xl {
246
+ max-width: $modal-xl;
247
+ }
240
248
  }
@@ -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
  }
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: '25'
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: 2020-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler