@operato/data-grist 2.0.0-beta.33 → 2.0.0-beta.34

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.
@@ -22,7 +22,7 @@ export class OxGristPersonalizer extends LitElement {
22
22
  background-color: var(--ox-grist-p13n-background-color, var(--md-sys-color-primary));
23
23
  border-radius: 0px 0px 7px 7px;
24
24
  cursor: pointer;
25
- padding-top:var(--spacing-small);
25
+ padding-top: var(--spacing-small);
26
26
 
27
27
  &:hover {
28
28
  color: var(--ox-grist-p13n-hover-color, var(--md-sys-color-on-primary));
@@ -134,7 +134,9 @@ export class OxGristPersonalizer extends LitElement {
134
134
  ${columns.map(
135
135
  column => html`
136
136
  <ox-checkbox label="checkbox" ?checked=${!column.hidden} value=${column.name} option
137
- >${column.header.renderer(column)}<span style="position: absolute; right: 10px; cursor: row-resize;opacity:.5" handle
137
+ >${column.header.renderer(column)}<span
138
+ style="position: absolute; right: 10px; cursor: row-resize;opacity:.5"
139
+ handle
138
140
  >☰</span
139
141
  ></ox-checkbox
140
142
  >
@@ -153,7 +155,8 @@ export class OxGristPersonalizer extends LitElement {
153
155
  styles: css`
154
156
  :host {
155
157
  width: 240px;
156
- max-height: 300px;
158
+ min-height: 300px;
159
+ max-height: 80%;
157
160
  overflow: auto;
158
161
  }
159
162