mf-styling 2.0.5 → 3.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mf-styling",
3
- "version": "2.0.5",
3
+ "version": "3.0.0",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -61,7 +61,8 @@
61
61
  "stylelint": "^15.10.1",
62
62
  "stylelint-config-standard": "^34.0.0",
63
63
  "testcafe": "^3.0.1",
64
- "vite": "^4.4.2"
64
+ "vite": "^4.4.2",
65
+ "autoprefixer": "^10.4.14"
65
66
  },
66
67
  "optionalDependencies": {
67
68
  "mf-hosting-frontend": "^1.10.0"
@@ -76,11 +77,25 @@
76
77
  "homepage": "https://github.com/arlac77/mf-styling#readme",
77
78
  "pkgbuild": {
78
79
  "content": {
79
- "${install.dir}": "build/"
80
+ "${install.dir}": {
81
+ "transform": {
82
+ "compress": "gzip",
83
+ "append": ".gz"
84
+ },
85
+ "base": "build/"
86
+ }
80
87
  },
81
88
  "example": true,
82
89
  "frontend": true
83
90
  },
91
+ "browserslist": [
92
+ "last 1 version"
93
+ ],
94
+ "postcss": {
95
+ "plugins": {
96
+ "autoprefixer": {}
97
+ }
98
+ },
84
99
  "release": {
85
100
  "plugins": [
86
101
  "@semantic-release/commit-analyzer",
package/src/nav.css CHANGED
@@ -2,6 +2,10 @@
2
2
  --nav-side-padding: 12px;
3
3
  }
4
4
 
5
+ nav ::after {
6
+ clear: both;
7
+ }
8
+
5
9
  nav a {
6
10
  text-decoration: none;
7
11
  }
@@ -10,10 +14,6 @@ nav a[aria-disabled="true"] {
10
14
  opacity: 0.5;
11
15
  }
12
16
 
13
- nav ::after {
14
- clear: both;
15
- }
16
-
17
17
  nav ul a {
18
18
  color: var(--color-neutral-400);
19
19
  fill: currentcolor;
package/src/table.css CHANGED
@@ -21,11 +21,11 @@ td {
21
21
  border: 1px solid var(--color-neutral-300);
22
22
  }
23
23
 
24
- .striped tbody tr:nth-of-type(odd) {
24
+ .striped tr:nth-of-type(odd) {
25
25
  background: var(--color-neutral-100);
26
26
  }
27
27
 
28
- .hoverable tbody tr:hover {
28
+ .hoverable tr:hover {
29
29
  background-color: var(--color-accent-100);
30
30
  }
31
31