mf-styling 1.7.2 → 1.7.3

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": "1.7.2",
3
+ "version": "1.7.3",
4
4
  "files": [
5
5
  "src/button.css",
6
6
  "src/card.css",
package/src/dropdown.css CHANGED
@@ -236,4 +236,4 @@
236
236
  .dropdown-trigger {
237
237
  background-image: url("images/down.svg");
238
238
  }
239
- */
239
+ */
@@ -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
- content: url(images/sort-descending.svg)
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
@@ -46,4 +46,4 @@ td {
46
46
 
47
47
  th input:focus {
48
48
  min-width: 200px;
49
- }
49
+ }