active_frontend 15.0.8 → 15.0.9

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4a43c718528ce3dcdcd11f44c81753823ed64839
4
- data.tar.gz: b0cb49d14a7d32c8b1df24cd977db12585990c46
3
+ metadata.gz: 5da29cab6946893f4fb48b8ca791e954df7d41d5
4
+ data.tar.gz: 047b8b4b25141fb4581f0c9b8cd19fa19c6ca5e4
5
5
  SHA512:
6
- metadata.gz: e28b23e33ea0d2fc5f764e552593653dc1ebb5bc27b589801e38f089eca5248694b810723213d5d95f19d8536c5fbc0aef5a4a933ebc2511e638e4f237123e9f
7
- data.tar.gz: a25dbb42a18b488f0cdc344b0bbf42dca8c688bf1525059f01c089dba7805f8ff836105fc1beb67287618e837b5eab8d75389f037ea4f5f4c677f3ebb5accacf
6
+ metadata.gz: e502f43eb1f88278fab97106de60d5c91518d8a2671e4cba5fbb9372834848a80633e152e880bec40d4385692ba22ae677629f0863fa255b6cf178a68610b42e
7
+ data.tar.gz: 36a24ad34e9430417e9f4bbf707f06d125b3d4ad2a2fc69082633f6dbca5f16135a0ac05fa38cfc1643e22974499caa15c0e9ec2744a808581143141d537aa0c
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveFrontend
4
- VERSION ||= '15.0.8'
4
+ VERSION ||= '15.0.9'
5
5
  end
@@ -162,6 +162,7 @@ $common-margins-and-paddings: (
162
162
  xs: 5px,
163
163
  n: 0
164
164
  );
165
+ $common-border-styles: dashed, dotted, double, none, solid;
165
166
  $common-display-types: block, inline, inline-block, table, table-cell, table-row;
166
167
  $common-visibility-types: collapse, hidden, visible;
167
168
 
@@ -8,17 +8,20 @@
8
8
  // Margins
9
9
  // Displays
10
10
  // Colors
11
- // Border widths
12
11
  // Box shadow insets
13
12
  // Box shadows
13
+ // Border widths
14
+ // Border styles
14
15
  // Border radiuses
15
16
  // Border colors
16
17
  // Background colors
17
18
 
19
+ // scss-lint:disable ImportantRule
20
+
18
21
  // Visibility
19
22
  // ==================================================
20
23
  @each $name in $common-visibility-types {
21
- .visibility-#{$name} { visibility: $name; }
24
+ .visibility-#{$name} { visibility: $name !important; }
22
25
  }
23
26
 
24
27
  // Scrollbars
@@ -43,39 +46,39 @@
43
46
  // Pushes
44
47
  // ==================================================
45
48
  @each $name, $margin in (center: (0 auto), left: (0 auto 0 0), right: (0 0 0 auto)) {
46
- .push-#{$name} { margin: $margin; }
49
+ .push-#{$name} { margin: $margin !important; }
47
50
  }
48
51
 
49
52
  // Pulls
50
53
  // ==================================================
51
54
  @each $name in left, none, right {
52
- .pull-#{$name} { float: $name; }
55
+ .pull-#{$name} { float: $name !important; }
53
56
  }
54
57
 
55
58
  // Paddings
56
59
  // ==================================================
57
60
  @each $name, $size in $common-margins-and-paddings {
58
- .padding-size-#{$name} { padding: $size; }
59
- .padding-size-bottom-#{$name} { padding-bottom: $size; }
60
- .padding-size-left-#{$name} { padding-left: $size; }
61
- .padding-size-right-#{$name} { padding-right: $size; }
62
- .padding-size-top-#{$name} { padding-top: $size; }
61
+ .padding-size-#{$name} { padding: $size !important; }
62
+ .padding-size-bottom-#{$name} { padding-bottom: $size !important; }
63
+ .padding-size-left-#{$name} { padding-left: $size !important; }
64
+ .padding-size-right-#{$name} { padding-right: $size !important; }
65
+ .padding-size-top-#{$name} { padding-top: $size !important; }
63
66
  }
64
67
 
65
68
  // Margins
66
69
  // ==================================================
67
70
  @each $name, $size in $common-margins-and-paddings {
68
- .margin-size-#{$name} { margin: $size; }
69
- .margin-size-bottom-#{$name} { margin-bottom: $size; }
70
- .margin-size-left-#{$name} { margin-left: $size; }
71
- .margin-size-right-#{$name} { margin-right: $size; }
72
- .margin-size-top-#{$name} { margin-top: $size; }
71
+ .margin-size-#{$name} { margin: $size !important; }
72
+ .margin-size-bottom-#{$name} { margin-bottom: $size !important; }
73
+ .margin-size-left-#{$name} { margin-left: $size !important; }
74
+ .margin-size-right-#{$name} { margin-right: $size !important; }
75
+ .margin-size-top-#{$name} { margin-top: $size !important; }
73
76
  }
74
77
 
75
78
  // Displays
76
79
  // ==================================================
77
80
  @each $name in $common-display-types {
78
- .display-#{$name} { display: $name; }
81
+ .display-#{$name} { display: $name !important; }
79
82
  }
80
83
 
81
84
  // Colors
@@ -98,54 +101,64 @@
98
101
  .light { background: color(light-haze); }
99
102
  .white { background: color(white); }
100
103
 
101
- // Border width
102
- // ==================================================
103
- @each $name, $width in $common-border-widths {
104
- .border-width-#{$name} { border-width: $width; }
105
- .border-width-bottom-#{$name} { border-bottom-width: $width; }
106
- .border-width-left-#{$name} { border-left-width: $width; }
107
- .border-width-right-#{$name} { border-right-width: $width; }
108
- .border-width-top-#{$name} { border-top-width: $width; }
109
- }
110
-
111
104
  // Box shadow insets
112
105
  // ==================================================
113
106
  @each $name, $spread in $common-box-shadows {
114
- .box-shadow-inset-#{$name} { box-shadow: inset 0 0 $spread darker-color(dark-haze); }
115
- .box-shadow-inset-bottom-#{$name} { box-shadow: inset 0 1px $spread darker-color(dark-haze); }
116
- .box-shadow-inset-left-#{$name} { box-shadow: inset -1px 0 $spread darker-color(dark-haze); }
117
- .box-shadow-inset-right-#{$name} { box-shadow: inset 1px 0 $spread darker-color(dark-haze); }
118
- .box-shadow-inset-top-#{$name} { box-shadow: inset 0 -1px $spread darker-color(dark-haze); }
107
+ .box-shadow-inset-#{$name} { box-shadow: inset 0 0 $spread darker-color(dark-haze) !important; }
108
+ .box-shadow-inset-bottom-#{$name} { box-shadow: inset 0 1px $spread darker-color(dark-haze) !important; }
109
+ .box-shadow-inset-left-#{$name} { box-shadow: inset -1px 0 $spread darker-color(dark-haze) !important; }
110
+ .box-shadow-inset-right-#{$name} { box-shadow: inset 1px 0 $spread darker-color(dark-haze) !important; }
111
+ .box-shadow-inset-top-#{$name} { box-shadow: inset 0 -1px $spread darker-color(dark-haze) !important; }
119
112
  }
120
113
 
121
114
  // Box shadows
122
115
  // ==================================================
123
116
  @each $name, $spread in $common-box-shadows {
124
- .box-shadow-#{$name} { box-shadow: 0 0 $spread darker-color(dark-haze); }
125
- .box-shadow-bottom-#{$name} { box-shadow: 0 1px $spread darker-color(dark-haze); }
126
- .box-shadow-left-#{$name} { box-shadow: -1px 0 $spread darker-color(dark-haze); }
127
- .box-shadow-right-#{$name} { box-shadow: 1px 0 $spread darker-color(dark-haze); }
128
- .box-shadow-top-#{$name} { box-shadow: 0 -1px $spread darker-color(dark-haze); }
117
+ .box-shadow-#{$name} { box-shadow: 0 0 $spread darker-color(dark-haze) !important; }
118
+ .box-shadow-bottom-#{$name} { box-shadow: 0 1px $spread darker-color(dark-haze) !important; }
119
+ .box-shadow-left-#{$name} { box-shadow: -1px 0 $spread darker-color(dark-haze) !important; }
120
+ .box-shadow-right-#{$name} { box-shadow: 1px 0 $spread darker-color(dark-haze) !important; }
121
+ .box-shadow-top-#{$name} { box-shadow: 0 -1px $spread darker-color(dark-haze) !important; }
122
+ }
123
+
124
+ // Border width
125
+ // ==================================================
126
+ @each $name, $width in $common-border-widths {
127
+ .border-width-#{$name} { border-width: $width !important; }
128
+ .border-width-bottom-#{$name} { border-bottom-width: $width !important; }
129
+ .border-width-left-#{$name} { border-left-width: $width !important; }
130
+ .border-width-right-#{$name} { border-right-width: $width !important; }
131
+ .border-width-top-#{$name} { border-top-width: $width !important; }
132
+ }
133
+
134
+ // Border styles
135
+ // ==================================================
136
+ @each $name in $common-border-styles {
137
+ .border-style-#{$name} { border-style: $name !important; }
138
+ .border-style-bottom-#{$name} { border-bottom-style: $name !important; }
139
+ .border-style-left-#{$name} { border-left-style: $name !important; }
140
+ .border-style-right-#{$name} { border-right-style: $name !important; }
141
+ .border-style-top-#{$name} { border-top-style: $name !important; }
129
142
  }
130
143
 
131
144
  // Border radiuses
132
145
  // ==================================================
133
146
  @each $name, $radius in $common-border-radiuses {
134
- .border-radius-#{$name} { border-radius: $radius; }
147
+ .border-radius-#{$name} { border-radius: $radius !important; }
135
148
  }
136
149
 
137
150
  // Border colors
138
151
  // ==================================================
139
152
  @each $name, $color in $colors {
140
- .border-color-#{$name} { border-color: $color; }
141
- .border-color-bottom-#{$name} { border-bottom-color: $color; }
142
- .border-color-left-#{$name} { border-left-color: $color; }
143
- .border-color-right-#{$name} { border-right-color: $color; }
144
- .border-color-top-#{$name} { border-top-color: $color; }
153
+ .border-color-#{$name} { border-color: $color !important; }
154
+ .border-color-bottom-#{$name} { border-bottom-color: $color !important; }
155
+ .border-color-left-#{$name} { border-left-color: $color !important; }
156
+ .border-color-right-#{$name} { border-right-color: $color !important; }
157
+ .border-color-top-#{$name} { border-top-color: $color !important; }
145
158
  }
146
159
 
147
160
  // Background colors
148
161
  // ==================================================
149
162
  @each $name, $color in $colors {
150
- .background-color-#{$name} { background-color: $color; }
163
+ .background-color-#{$name} { background-color: $color !important; }
151
164
  }
@@ -85,7 +85,11 @@
85
85
  .card-wizard,
86
86
  .card-body {
87
87
  + .card-body,
88
- + .card-wizard {
88
+ + .card-wizard,
89
+ + .table-encase,
90
+ + .table-border
91
+ + .table-responsive .table-encase,
92
+ + .table-responsive .table-border {
89
93
  border-top-style: solid;
90
94
  border-top-width: 1px;
91
95
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_frontend
3
3
  version: !ruby/object:Gem::Version
4
- version: 15.0.8
4
+ version: 15.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez