Skip to content

Commit 57aa730

Browse files
authored
Merge pull request #79 from coliff/v4.3.1
v4.3.1 Update
2 parents e897092 + 42cdd93 commit 57aa730

8 files changed

+104
-106
lines changed

.stylelintrc

+56-55
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,57 @@
11
{
2-
"rules": {
3-
"at-rule-empty-line-before": null,
4-
"at-rule-name-space-after": "always",
5-
"at-rule-no-vendor-prefix": true,
6-
"at-rule-semicolon-space-before": "never",
7-
"block-closing-brace-empty-line-before": null,
8-
"block-closing-brace-newline-after": null,
9-
"block-opening-brace-space-before": null,
10-
"color-named": "never",
11-
"declaration-block-semicolon-newline-after": "always-multi-line",
12-
"declaration-block-semicolon-newline-before": "never-multi-line",
13-
"declaration-block-semicolon-space-after": "always-single-line",
14-
"declaration-empty-line-before": null,
15-
"font-family-name-quotes": "always-where-recommended",
16-
"font-weight-notation": "numeric",
17-
"function-blacklist": ["linear-gradient"],
18-
"function-url-no-scheme-relative": true,
19-
"function-url-quotes": "always",
20-
"length-zero-no-unit": true,
21-
"max-empty-lines": 2,
22-
"max-line-length": null,
23-
"media-feature-name-no-vendor-prefix": true,
24-
"media-feature-parentheses-space-inside": "never",
25-
"media-feature-range-operator-space-after": "always",
26-
"media-feature-range-operator-space-before": "never",
27-
"no-descending-specificity": null,
28-
"media-feature-name-no-unknown": [true, {
29-
"ignoreMediaFeatureNames": ["prefers-reduced-motion"]
30-
}],
31-
"property-blacklist": ["align-self", "flex", "flex-wrap", "order"],
32-
"rule-empty-line-before": null,
33-
"selector-attribute-quotes": "always",
34-
"selector-list-comma-newline-after": "always",
35-
"selector-list-comma-newline-before": "never-multi-line",
36-
"selector-list-comma-space-after": "always-single-line",
37-
"selector-list-comma-space-before": "never-single-line",
38-
"selector-pseudo-class-blacklist": ["valid", "invalid", "required"],
39-
"selector-max-attribute": 2,
40-
"selector-max-class": 4,
41-
"selector-max-combinators": 4,
42-
"selector-max-compound-selectors": 4,
43-
"selector-max-empty-lines": 1,
44-
"selector-max-id": 0,
45-
"selector-max-specificity": null,
46-
"selector-max-type": 2,
47-
"selector-max-universal": 1,
48-
"selector-no-vendor-prefix": true,
49-
"string-quotes": "double",
50-
"value-keyword-case": "lower",
51-
"value-list-comma-newline-after": "never-multi-line",
52-
"value-list-comma-newline-before": "never-multi-line",
53-
"value-list-comma-space-after": "always",
54-
"value-no-vendor-prefix": true
55-
}
56-
}
2+
"rules":
3+
{
4+
"at-rule-empty-line-before": null,
5+
"at-rule-name-space-after": "always",
6+
"at-rule-no-vendor-prefix": true,
7+
"at-rule-semicolon-space-before": "never",
8+
"block-closing-brace-empty-line-before": null,
9+
"block-closing-brace-newline-after": null,
10+
"block-opening-brace-space-before": null,
11+
"color-named": "never",
12+
"declaration-block-semicolon-newline-after": "always-multi-line",
13+
"declaration-block-semicolon-newline-before": "never-multi-line",
14+
"declaration-block-semicolon-space-after": "always-single-line",
15+
"declaration-empty-line-before": null,
16+
"font-family-name-quotes": "always-where-recommended",
17+
"font-weight-notation": "numeric",
18+
"function-blacklist": ["linear-gradient"],
19+
"function-url-no-scheme-relative": true,
20+
"function-url-quotes": "always",
21+
"length-zero-no-unit": true,
22+
"max-empty-lines": 2,
23+
"max-line-length": null,
24+
"media-feature-name-no-vendor-prefix": true,
25+
"media-feature-parentheses-space-inside": "never",
26+
"media-feature-range-operator-space-after": "always",
27+
"media-feature-range-operator-space-before": "never",
28+
"no-descending-specificity": null,
29+
"media-feature-name-no-unknown":
30+
[true, { "ignoreMediaFeatureNames": ["prefers-reduced-motion"] }],
31+
"property-blacklist": ["align-self", "flex", "flex-wrap", "order"],
32+
"rule-empty-line-before": null,
33+
"selector-attribute-quotes": "always",
34+
"selector-class-pattern": "^[a-z][a-z0-9\\-]*[a-z0-9]$",
35+
"selector-list-comma-newline-after": "always",
36+
"selector-list-comma-newline-before": "never-multi-line",
37+
"selector-list-comma-space-after": "always-single-line",
38+
"selector-list-comma-space-before": "never-single-line",
39+
"selector-pseudo-class-blacklist": ["valid", "invalid", "required"],
40+
"selector-max-attribute": 2,
41+
"selector-max-class": 4,
42+
"selector-max-combinators": 4,
43+
"selector-max-compound-selectors": 4,
44+
"selector-max-empty-lines": 1,
45+
"selector-max-id": 0,
46+
"selector-max-specificity": null,
47+
"selector-max-type": 2,
48+
"selector-max-universal": 1,
49+
"selector-no-vendor-prefix": true,
50+
"string-quotes": "double",
51+
"value-keyword-case": "lower",
52+
"value-list-comma-newline-after": "never-multi-line",
53+
"value-list-comma-newline-before": "never-multi-line",
54+
"value-list-comma-space-after": "always",
55+
"value-no-vendor-prefix": true,
56+
},
57+
}

.vscode/settings.json

-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,5 @@
55
"css.lint.unknownProperties": "ignore",
66
"css.lint.vendorPrefix": "ignore",
77
"css.lint.zeroUnits": "error",
8-
"html.suggest.angular1": false,
9-
"html.suggest.ionic": false,
108
"php.suggest.basic": false
119
}

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,16 @@ To fix the dropdown menus and modals you can add the following to the footer:
4242
```html
4343
<!--[if gte IE 9]><!-->
4444
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
45-
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"></script>
46-
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"></script>
45+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
46+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
4747
<!--<![endif]-->
4848
<!--[if IE 9]>
4949
<script src="https://cdn.jsdelivr.net/gh/coliff/bootstrap-ie8/js/bootstrap-ie9.min.js"></script>
5050
<![endif]-->
5151
<!--[if lte IE 8]>
5252
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
5353
<script src="https://cdn.jsdelivr.net/gh/coliff/bootstrap-ie8/js/bootstrap-ie8.min.js"></script>
54-
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.js"></script>
54+
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.js"></script>
5555
<![endif]-->
5656
```
5757

css/bootstrap-ie8.css

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Bootstrap 4 for IE8 - v4.2.1 */
1+
/*! Bootstrap 4 for IE8 - v4.3.1 */
22
/*! https://github.com/coliff/bootstrap-ie8/ */
33

44
* {
@@ -1200,7 +1200,9 @@ fieldset[disabled] .btn {
12001200
.col-xl-10,
12011201
.col-xl-11,
12021202
.col-xl-12,
1203-
.nav-link {
1203+
.nav-link,
1204+
.list-group-horizontal,
1205+
.list-group-horizontal .list-group-item {
12041206
float: left;
12051207
}
12061208

css/bootstrap-ie9.css

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! Bootstrap 4 for IE8 - v4.2.1 */
1+
/*! Bootstrap 4 for IE8 - v4.3.1 */
22
/*! https://github.com/coliff/bootstrap-ie8 */
33

44
.card-group .card,
@@ -62,7 +62,9 @@
6262
.col-xl-10,
6363
.col-xl-11,
6464
.col-xl-12,
65-
.nav-link {
65+
.nav-link,
66+
.list-group-horizontal,
67+
.list-group-horizontal .list-group-item {
6668
float: left;
6769
}
6870
.row,
@@ -76,6 +78,7 @@ aside,
7678
.navbar-collapse {
7779
display: block;
7880
}
81+
7982
.modal.fade .modal-dialog {
8083
-ms-transform: translate(0, -25%);
8184
}

js/bootstrap-ie8.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Bootstrap 4 for IE8 - v4.2.1 */
1+
/* Bootstrap 4 for IE8 - v4.3.1 */
22
/* https://github.com/coliff/bootstrap-ie8 */
33

44
// create the nodeType constants if the Node object is not defined

js/bootstrap-ie9.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Bootstrap 4 for IE9 - v4.2.1 */
1+
/* Bootstrap 4 for IE9 - v4.3.1 */
22
/* https://github.com/coliff/bootstrap-ie8 */
33

44
// adds classList support (as Array) to Element.prototype for IE8-9

0 commit comments

Comments
 (0)