mf-styling 1.7.2 → 1.7.5
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 +3 -2
- package/src/dropdown.css +1 -1
- package/src/images/down.svg +1 -0
- package/src/table-sort.css +3 -14
- package/src/table.css +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mf-styling",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.5",
|
|
4
4
|
"files": [
|
|
5
5
|
"src/button.css",
|
|
6
6
|
"src/card.css",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"src/images/sort-ascending.svg",
|
|
18
18
|
"src/images/sort-descending.svg",
|
|
19
19
|
"src/images/sort-none.svg",
|
|
20
|
+
"src/images/down.svg",
|
|
20
21
|
"src/layout.css",
|
|
21
22
|
"src/log.css",
|
|
22
23
|
"src/nav.css",
|
|
@@ -58,7 +59,7 @@
|
|
|
58
59
|
"vite": "^3.0.9"
|
|
59
60
|
},
|
|
60
61
|
"optionalDependencies": {
|
|
61
|
-
"mf-hosting": "^1.7.
|
|
62
|
+
"mf-hosting": "^1.7.3"
|
|
62
63
|
},
|
|
63
64
|
"repository": {
|
|
64
65
|
"type": "git",
|
package/src/dropdown.css
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg width="20" height="14" viewBox="0 0 26.667 17.111" xmlns="http://www.w3.org/2000/svg"><path d="m7.725 5.896 6 6 6-6 2 2-8 8-8-8z"/></svg>
|
package/src/table-sort.css
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
[aria-sort]:hover {
|
|
3
2
|
background-color: var(--color-primary-300);
|
|
4
3
|
}
|
|
@@ -7,16 +6,6 @@ th > button {
|
|
|
7
6
|
cursor: pointer;
|
|
8
7
|
background: transparent;
|
|
9
8
|
border: 1px solid transparent;
|
|
10
|
-
|
|
11
|
-
/*
|
|
12
|
-
color: inherit;
|
|
13
|
-
padding: 0.25em 0.5em 0.25em 1em;
|
|
14
|
-
width: 100%;
|
|
15
|
-
min-width: 4.5em;
|
|
16
|
-
display: grid;
|
|
17
|
-
grid-template-columns: minmax(2em, max-content) .65em auto;
|
|
18
|
-
grid-template-areas: "t a x" "t d x";
|
|
19
|
-
*/
|
|
20
9
|
}
|
|
21
10
|
|
|
22
11
|
th > button:hover {
|
|
@@ -24,13 +13,13 @@ th > button:hover {
|
|
|
24
13
|
}
|
|
25
14
|
|
|
26
15
|
[aria-sort="descending"] > button img {
|
|
27
|
-
|
|
16
|
+
content: url("images/sort-descending.svg");
|
|
28
17
|
}
|
|
29
18
|
|
|
30
19
|
[aria-sort="ascending"] > button img {
|
|
31
|
-
content: url(images/sort-ascending.svg)
|
|
20
|
+
content: url("images/sort-ascending.svg");
|
|
32
21
|
}
|
|
33
22
|
|
|
34
23
|
[aria-sort="none"] > button img {
|
|
35
|
-
content: url(images/sort-none.svg)
|
|
24
|
+
content: url("images/sort-none.svg");
|
|
36
25
|
}
|
package/src/table.css
CHANGED