matcha-theme 20.151.0 → 20.153.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.
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
@mixin matcha-table-cell-theme($theme) {
|
|
2
|
+
.matcha-table{
|
|
3
|
+
.td-with-image,
|
|
4
|
+
.td-with-checkbox,
|
|
5
|
+
.td-with-icon,
|
|
6
|
+
.td-duble-line {
|
|
7
|
+
display: flex;
|
|
8
|
+
align-items: center;
|
|
9
|
+
|
|
10
|
+
.td-text-aside {
|
|
11
|
+
display: inline-block;
|
|
12
|
+
width: calc(100% - 48px);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.avatar {
|
|
16
|
+
width: 48px;
|
|
17
|
+
min-width: 48px;
|
|
18
|
+
height: 48px;
|
|
19
|
+
line-height: 48px;
|
|
20
|
+
border-width: 0;
|
|
21
|
+
margin-right: 24px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.thumbnail {
|
|
25
|
+
width: 72px;
|
|
26
|
+
min-width: 72px;
|
|
27
|
+
height: 48px;
|
|
28
|
+
border-radius: 8px;
|
|
29
|
+
margin: 0 8px 0 0;
|
|
30
|
+
|
|
31
|
+
&-portrait {
|
|
32
|
+
width: 56px;
|
|
33
|
+
min-width: 56px;
|
|
34
|
+
height: 72px;
|
|
35
|
+
border-radius: 8px;
|
|
36
|
+
margin: 0 8px 0 0;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
package/main.scss
CHANGED
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
@import "./components/matcha-scrollbox-shadow.scss"; // matcha-scrollbox-shadow-theme($theme)
|
|
41
41
|
@import "./components/matcha-skeleton.scss"; // matcha-skeleton-theme($theme)
|
|
42
42
|
@import "./components/matcha-table.scss"; // matcha-table-theme($theme)
|
|
43
|
+
@import "./components/matcha-table-cell.scss"; // matcha-table-cell-theme($theme)
|
|
43
44
|
@import "./components/matcha-tooltip.scss"; // matcha-tooltip-theme($theme)
|
|
44
45
|
@import "./components/matcha-form-field.scss";
|
|
45
46
|
@import "./components/matcha-checkbox.scss";
|
|
@@ -151,7 +152,7 @@
|
|
|
151
152
|
@include matcha-scrollbar-theme($theme);
|
|
152
153
|
|
|
153
154
|
@include matcha-table-theme($theme);
|
|
154
|
-
|
|
155
|
+
@include matcha-table-cell-theme($theme);
|
|
155
156
|
@include matcha-button-toggle($theme);
|
|
156
157
|
@include matcha-button-theme($theme);
|
|
157
158
|
@include matcha-ripple-theme($theme);
|