@agorapulse/ui-theme 20.1.13 → 20.1.15
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.
|
Binary file
|
package/assets/style/_table.scss
CHANGED
|
@@ -10,6 +10,7 @@ $cell-height-small: 40px;
|
|
|
10
10
|
// ============================================================================
|
|
11
11
|
|
|
12
12
|
.ap-table {
|
|
13
|
+
width: 100%;
|
|
13
14
|
overflow-x: auto;
|
|
14
15
|
font-family: Averta;
|
|
15
16
|
border-radius: var(--ref-border-radius-md);
|
|
@@ -130,7 +131,7 @@ $cell-height-small: 40px;
|
|
|
130
131
|
color: var(--ref-color-grey-100);
|
|
131
132
|
border: none;
|
|
132
133
|
border-bottom: 1px solid var(--ref-color-grey-10);
|
|
133
|
-
background-color:
|
|
134
|
+
background-color: var(--ref-color-white);
|
|
134
135
|
position: sticky;
|
|
135
136
|
top: 0;
|
|
136
137
|
z-index: 1;
|
|
@@ -151,11 +152,19 @@ $cell-height-small: 40px;
|
|
|
151
152
|
&.ap-table__header-cell--sortable {
|
|
152
153
|
cursor: pointer;
|
|
153
154
|
|
|
154
|
-
ap-symbol {
|
|
155
|
+
.ap-table__header-sort-symbol {
|
|
155
156
|
opacity: 0;
|
|
156
157
|
}
|
|
157
158
|
|
|
158
|
-
&:hover ap-symbol {
|
|
159
|
+
&:hover .ap-table__header-sort-symbol {
|
|
160
|
+
opacity: 1;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
&.ap-table__header-cell--sorted {
|
|
165
|
+
color: var(--ref-color-electric-blue-150);
|
|
166
|
+
|
|
167
|
+
.ap-table__header-sort-symbol {
|
|
159
168
|
opacity: 1;
|
|
160
169
|
}
|
|
161
170
|
}
|