ywana-core8 0.0.221 → 0.0.222

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ywana-core8",
3
- "version": "0.0.221",
3
+ "version": "0.0.222",
4
4
  "description": "ywana-core8",
5
5
  "author": "Ernesto Roldan Garcia",
6
6
  "license": "MIT",
@@ -50,4 +50,20 @@ main.table-editor {
50
50
 
51
51
  .table-selector>footer>* {
52
52
  flex: 1;
53
+ }
54
+
55
+ .table-row-editor>header,
56
+ header.table-queries,
57
+ header.table-filters {
58
+ border-bottom: solid 1px var(--divider-color);
59
+ background-color: rgba(220,220,220,.5);
60
+ }
61
+
62
+ main.table-queries,
63
+ main.table-filters {
64
+ flex: 1;
65
+ }
66
+
67
+ td.entity-cell {
68
+ background-color: rgba(240,240,240,.4);
53
69
  }
@@ -241,7 +241,7 @@ const TableFilters = (props) => {
241
241
  return (
242
242
  <Fragment>
243
243
  <Header className="table-filters" title={<Text>Filters</Text>} >
244
- <Button icon="filter_list_off" label="Clean" action={clear} />
244
+ <Icon icon="filter_list_off" size="small" clickable action={clear} />
245
245
  </Header>
246
246
  <main className="table-filters">
247
247
  <ContentEditor content={content} onChange={change} />
@@ -9,7 +9,7 @@
9
9
  "menu main aside"
10
10
  "menu detail aside"
11
11
  "footer footer footer";
12
- grid-template-columns: auto 1fr auto;
12
+ grid-template-columns: auto 1fr 100%;
13
13
  grid-template-rows: auto auto 1fr auto auto;
14
14
  }
15
15
 
@@ -17,6 +17,14 @@
17
17
  min-height: 3rem;
18
18
  }
19
19
 
20
+ .workspace>main {
21
+ resize: horizontal;
22
+ }
23
+
24
+ .workspace>aside {
25
+ width: 100%;
26
+ }
27
+
20
28
  .overall {
21
29
  position: absolute;
22
30
  top:0;