Skip to content

Commit

Permalink
ELEMENTS-1230: fix overflow in nuxeo-data-table
Browse files Browse the repository at this point in the history
  • Loading branch information
semisse committed Aug 26, 2020
1 parent 2dda338 commit cae8bf8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions ui/nuxeo-aggregation/nuxeo-dropdown-aggregation.js
Expand Up @@ -46,6 +46,7 @@ import { AggregationBehavior } from './nuxeo-aggregation-behavior.js';
:host {
display: block;
width: 100%;
height: 100%;
}
[hidden] {
Expand Down
7 changes: 5 additions & 2 deletions ui/widgets/nuxeo-selectivity.js
Expand Up @@ -6781,6 +6781,10 @@ typedArrayTags[weakMapTag] = false;
static get template() {
return html`
<style>
:host {
overflow: auto;
}
.selectivity-clearfix {
clear: both;
}
Expand Down Expand Up @@ -6892,8 +6896,6 @@ typedArrayTags[weakMapTag] = false;
.selectivity-multiple-input-container {
cursor: text;
min-height: 2em;
max-height: 10em;
overflow: auto;
padding: 14px 2px 0px 2px;
position: relative;
}
Expand Down Expand Up @@ -7033,6 +7035,7 @@ input[type='text'].selectivity-multiple-input:focus {
content: "\\25bc";
}
:host {
height: 100%;
display: block;
position: relative;
padding-bottom: 8px;
Expand Down

0 comments on commit cae8bf8

Please sign in to comment.