mf-styling 3.0.6 → 3.1.1

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": "3.0.6",
3
+ "version": "3.1.1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -47,7 +47,7 @@
47
47
  "prepare": "vite build",
48
48
  "start": "vite",
49
49
  "test": "npm run test:cafe",
50
- "test:cafe": "testcafe $BROWSER:headless tests/cafe/*-cafe.mjs --esm -s build/test --page-request-timeout 5000 --app-init-delay 8000 --app vite",
50
+ "test:cafe": "testcafe $BROWSER:headless tests/cafe/*-cafe.mjs -s build/test --page-request-timeout 5000 --app-init-delay 8000 --app vite",
51
51
  "lint:css": "stylelint ./src/*.css",
52
52
  "lint": "npm run lint:css",
53
53
  "preview": "vite preview"
@@ -55,18 +55,18 @@
55
55
  "devDependencies": {
56
56
  "@semantic-release/commit-analyzer": "^11.0.0",
57
57
  "@semantic-release/exec": "^6.0.3",
58
- "@semantic-release/release-notes-generator": "^12.0.0",
58
+ "@semantic-release/release-notes-generator": "^12.0.1",
59
59
  "autoprefixer": "^10.4.15",
60
- "npm-pkgbuild": "^12.1.5",
61
- "semantic-release": "^22.0.5",
62
- "stylelint": "^15.10.3",
60
+ "npm-pkgbuild": "^13.0.2",
61
+ "semantic-release": "^22.0.7",
62
+ "stylelint": "^15.11.0",
63
63
  "stylelint-config-standard": "^34.0.0",
64
64
  "testcafe": "^3.3.0",
65
- "vite": "^4.4.11",
66
- "vite-plugin-compression2": "^0.10.5"
65
+ "vite": "^4.5.0",
66
+ "vite-plugin-compression2": "^0.11.0"
67
67
  },
68
68
  "optionalDependencies": {
69
- "mf-hosting-frontend": "^2.2.3"
69
+ "mf-hosting-frontend": "^2.2.4"
70
70
  },
71
71
  "repository": {
72
72
  "type": "git",
package/src/nav.css CHANGED
@@ -41,11 +41,9 @@ nav ul {
41
41
  position: relative;
42
42
  margin-top: 0;
43
43
  margin-left: auto;
44
- margin-block-start: 0;
45
- margin-block-end: 0;
44
+ margin-block: 0 0;
46
45
  margin-inline-end: 0;
47
- padding-inline-start: 0;
48
- padding-inline-end: var(--nav-side-padding);
46
+ padding-inline: 0 var(--nav-side-padding);
49
47
  }
50
48
 
51
49
  nav ul.left {
package/src/table.css CHANGED
@@ -21,6 +21,22 @@ td {
21
21
  border: 1px solid var(--color-neutral-300);
22
22
  }
23
23
 
24
+ .bordered-light-left {
25
+ border-left: 1px dotted var(--color-neutral-200) !important;
26
+ }
27
+
28
+ .bordered-light-right {
29
+ border-right: 1px dotted var(--color-neutral-200) !important;
30
+ }
31
+
32
+ .bordered-light-bottom {
33
+ border-bottom: 1px dotted var(--color-neutral-200) !important;
34
+ }
35
+
36
+ .bordered-light-top {
37
+ border-top: 1px dotted var(--color-neutral-200) !important;
38
+ }
39
+
24
40
  .striped tr:nth-of-type(odd) {
25
41
  background: var(--color-neutral-100);
26
42
  }