Skip to content

Commit 8656645

Browse files
authored
update for v530 (#208)
1 parent 6af7b2b commit 8656645

13 files changed

+2609
-2351
lines changed

.cspell.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
{
22
"version": "0.2",
3-
"words": ["ccircle", "hstack", "jsdelivr", "Segoe", "twbs"],
3+
"words": [
4+
"ccircle",
5+
"Dropup",
6+
"hstack",
7+
"jsdelivr",
8+
"Oliff",
9+
"Segoe",
10+
"twbs"
11+
],
412
"language": "en,en-US",
513
"allowCompoundWords": true,
614
"ignorePaths": [

.stylelintrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"selector-max-type": null,
1010
"selector-max-universal": null,
1111
"selector-no-vendor-prefix": null,
12-
"stylistic/number-leading-zero": null
12+
"stylistic/number-leading-zero": null,
13+
"value-no-vendor-prefix": null
1314
}
1415
}

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"css.lint.ieHack": "warning"
2+
"editor.codeActionsOnSave": {
3+
"source.fixAll": true
4+
},
5+
"editor.formatOnSave": true
36
}

css/bootstrap-ie11.css

Lines changed: 65 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap-ie11.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap-ie11.min.css

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/bootstrap-ie11.min.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 11 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootstrap-ie11",
3-
"version": "5.2.3",
3+
"version": "5.3.0",
44
"description": "Bootstrap 5 for Internet Explorer 11",
55
"keywords": [
66
"bootstrap",
@@ -23,10 +23,6 @@
2323
},
2424
"license": "MIT",
2525
"author": "Christian Oliff (https://christianoliff.com)",
26-
"engines": {
27-
"node": ">=14",
28-
"npm": ">=7"
29-
},
3026
"main": "css/bootstrap-ie11.min.css",
3127
"files": [
3228
"css/*",
@@ -46,14 +42,14 @@
4642
"test": "npm run css-lint"
4743
},
4844
"config": {
49-
"version_short": "5.2"
45+
"version_short": "5.3"
5046
},
5147
"devDependencies": {
5248
"clean-css-cli": "4.3.0",
53-
"npm-run-all": "^4.1.5",
49+
"npm-run-all": "4.1.5",
5450
"sass": "1.62.1",
55-
"stylelint": "^15.6.1",
56-
"stylelint-config-twbs-bootstrap": "^10.0.0"
51+
"stylelint": "15.6.2",
52+
"stylelint-config-twbs-bootstrap": "10.0.0"
5753
},
5854
"sass": "scss/bootstrap-ie11.scss"
5955
}

scss/_utilities.scss

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,47 @@
1515
-ms-user-select: auto !important;
1616
}
1717

18+
// Link opacity
19+
.link-opacity-10 {
20+
opacity: 0.1;
21+
}
22+
23+
.link-opacity-25 {
24+
opacity: 0.25;
25+
}
26+
27+
.link-opacity-50 {
28+
opacity: 0.5;
29+
}
30+
31+
.link-opacity-75 {
32+
opacity: 0.75;
33+
}
34+
35+
.link-opacity-100 {
36+
opacity: 1;
37+
}
38+
39+
// Link opacity hover
40+
.link-opacity-10-hover:hover {
41+
opacity: 0.1;
42+
}
43+
44+
.link-opacity-25-hover:hover {
45+
opacity: 0.25;
46+
}
47+
48+
.link-opacity-50-hover:hover {
49+
opacity: 0.5;
50+
}
51+
52+
.link-opacity-75-hover:hover {
53+
opacity: 0.75;
54+
}
55+
56+
.link-opacity-100-hover:hover {
57+
opacity: 1;
58+
}
1859
// Text opacity
1960
.text-opacity-75 {
2061
opacity: 0.75;
@@ -67,6 +108,10 @@
67108
border-color: rgb(33, 37, 41);
68109
}
69110

111+
.border-black {
112+
border-color: rgb(0, 0, 0);
113+
}
114+
70115
.border-white {
71116
border-color: rgb(255, 255, 255);
72117
}
@@ -307,6 +352,15 @@
307352
margin-bottom: 0;
308353
}
309354

355+
// display grid
356+
.d-grid {
357+
display: -ms-grid;
358+
}
359+
360+
.d-inline-grid {
361+
display: -ms-inline-grid;
362+
}
363+
310364
// vertical-rule
311365
.vr {
312366
border-right: 1px solid rgb(33, 37, 41);

0 commit comments

Comments
 (0)