@neovici/cosmoz-omnitable 7.2.1 → 7.3.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.
|
@@ -21,7 +21,7 @@ const checkbox = `
|
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
.checkbox:checked {
|
|
24
|
-
background-color: var(--
|
|
24
|
+
background-color: var(--cosmoz-omnitable-checkbox-checked-color, var(--primary-color));
|
|
25
25
|
box-shadow: none;
|
|
26
26
|
}
|
|
27
27
|
|
|
@@ -62,7 +62,7 @@ const checkbox = `
|
|
|
62
62
|
height: 2px;
|
|
63
63
|
left: 4px;
|
|
64
64
|
top: 8px;
|
|
65
|
-
|
|
65
|
+
background-color: var(--cosmoz-omnitable-checkbox-checked-color, var(--primary-color));
|
|
66
66
|
}
|
|
67
67
|
`;
|
|
68
68
|
|
|
@@ -281,7 +281,7 @@ export default `<style>
|
|
|
281
281
|
display: flex;
|
|
282
282
|
align-items: center;
|
|
283
283
|
border-top: solid 1px #e8e8e8;
|
|
284
|
-
background-color: #f5f5f5;
|
|
284
|
+
background-color: var(--cosmoz-omnitable-footer-bg-color, #f5f5f5);
|
|
285
285
|
min-height: 25px;
|
|
286
286
|
height: 63px;
|
|
287
287
|
margin-bottom: 1px; /* Chrome overflow rendering bug? When only component in a view */
|
package/cosmoz-omnitable.js
CHANGED
|
@@ -3,7 +3,6 @@ import '@polymer/iron-icons/iron-icons';
|
|
|
3
3
|
import '@polymer/iron-icon/iron-icon';
|
|
4
4
|
import '@polymer/iron-label/iron-label';
|
|
5
5
|
import '@polymer/paper-button/paper-button';
|
|
6
|
-
import '@polymer/paper-checkbox/paper-checkbox';
|
|
7
6
|
import '@polymer/paper-dropdown-menu/paper-dropdown-menu';
|
|
8
7
|
import '@polymer/paper-icon-button/paper-icon-button';
|
|
9
8
|
import '@polymer/paper-item/paper-item';
|
|
@@ -230,7 +230,7 @@ const settingsStyles = `
|
|
|
230
230
|
position: absolute;
|
|
231
231
|
top: 1px;
|
|
232
232
|
right: -4px;
|
|
233
|
-
background-color: var(--
|
|
233
|
+
background-color: var(--cosmoz-omnitable-checkbox-checked-color, var(--primary-color));
|
|
234
234
|
width: 8px;
|
|
235
235
|
height: 8px;
|
|
236
236
|
border-radius: 100%;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neovici/cosmoz-omnitable",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.3.0",
|
|
4
4
|
"description": "[](https://travis-ci.org/Neovici/cosmoz-omnitable)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web-components"
|
|
@@ -64,7 +64,6 @@
|
|
|
64
64
|
"@polymer/iron-icons": "^3.0.0",
|
|
65
65
|
"@polymer/iron-label": "^3.0.0",
|
|
66
66
|
"@polymer/paper-button": "^3.0.0",
|
|
67
|
-
"@polymer/paper-checkbox": "^3.0.0",
|
|
68
67
|
"@polymer/paper-dropdown-menu": "^3.2.0",
|
|
69
68
|
"@polymer/paper-icon-button": "^3.0.0",
|
|
70
69
|
"@polymer/paper-input": "^3.2.0",
|