@operato/board 2.0.0-alpha.151 → 2.0.0-alpha.152

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": "@operato/board",
3
- "version": "2.0.0-alpha.151",
3
+ "version": "2.0.0-alpha.152",
4
4
  "description": "Webcomponent for board following open-wc recommendations",
5
5
  "author": "heartyoh",
6
6
  "main": "dist/src/index.js",
@@ -93,16 +93,16 @@
93
93
  "dependencies": {
94
94
  "@material/web": "^1.4.0",
95
95
  "@open-wc/scoped-elements": "^2.1.3",
96
- "@operato/app": "^2.0.0-alpha.151",
97
- "@operato/data-grist": "^2.0.0-alpha.151",
98
- "@operato/font": "^2.0.0-alpha.151",
96
+ "@operato/app": "^2.0.0-alpha.152",
97
+ "@operato/data-grist": "^2.0.0-alpha.152",
98
+ "@operato/font": "^2.0.0-alpha.152",
99
99
  "@operato/graphql": "^2.0.0-alpha.145",
100
100
  "@operato/i18n": "^2.0.0-alpha.148",
101
- "@operato/input": "^2.0.0-alpha.151",
102
- "@operato/layout": "^2.0.0-alpha.151",
101
+ "@operato/input": "^2.0.0-alpha.152",
102
+ "@operato/layout": "^2.0.0-alpha.152",
103
103
  "@operato/markdown": "^2.0.0-alpha.150",
104
- "@operato/popup": "^2.0.0-alpha.151",
105
- "@operato/property-editor": "^2.0.0-alpha.151",
104
+ "@operato/popup": "^2.0.0-alpha.152",
105
+ "@operato/property-editor": "^2.0.0-alpha.152",
106
106
  "@operato/styles": "^2.0.0-alpha.150",
107
107
  "@operato/utils": "^2.0.0-alpha.145",
108
108
  "@polymer/paper-dropdown-menu": "^3.2.0",
@@ -152,5 +152,5 @@
152
152
  "prettier --write"
153
153
  ]
154
154
  },
155
- "gitHead": "23518dcfa11a5429083e8a39aa7ce3b78def1b54"
155
+ "gitHead": "75c4b617e661bb23cd363ef47f42efc9a41057ab"
156
156
  }
@@ -14,7 +14,7 @@ export class BoardComponentInfo extends LitElement {
14
14
  ScrollbarStyles,
15
15
  css`
16
16
  :host {
17
- background-color: white;
17
+ background-color: var(--md-sys-color-surface);
18
18
  font-size: 12px;
19
19
  box-sizing: border-box;
20
20
  display: flex;
@@ -46,7 +46,7 @@ export class BoardComponentInfo extends LitElement {
46
46
 
47
47
  table {
48
48
  border-collapse: collapse;
49
- background-color: #fff;
49
+ background-color: var(--md-sys-color-surface);
50
50
  width: 100%;
51
51
  margin: auto;
52
52
  }
@@ -38,7 +38,7 @@ export class BoardThumbnailCard extends localize(i18next)(LitElement) {
38
38
  border: var(--card-list-create-border);
39
39
  border-radius: var(--card-list-create-border-radius);
40
40
 
41
- background-color: #fff;
41
+ background-color: var(--md-sys-color-surface);
42
42
 
43
43
  -webkit-backface-visibility: hidden;
44
44
  backface-visibility: hidden;
@@ -79,7 +79,7 @@ export class BoardThumbnailCard extends localize(i18next)(LitElement) {
79
79
  [back] form select {
80
80
  flex: 1 1 60%;
81
81
  width: 10px;
82
- background-color: #fff;
82
+ background-color: var(--md-sys-color-surface);
83
83
  border: var(--card-list-create-input-border);
84
84
  border-radius: var(--card-list-create-input-border-radius);
85
85
  padding: var(--card-list-create-input-padding);
@@ -17,7 +17,7 @@ export class BoardCreationCard extends localize(i18next)(LitElement) {
17
17
  border: var(--card-list-create-border);
18
18
  border-radius: var(--card-list-create-border-radius);
19
19
 
20
- background-color: #fff;
20
+ background-color: var(--md-sys-color-surface);
21
21
 
22
22
  align-content: center;
23
23
  justify-content: center;
@@ -119,7 +119,7 @@ export class BoardSelector extends InfiniteScrollable(localize(i18next)(LitEleme
119
119
 
120
120
  #filter {
121
121
  padding: var(--popup-content-padding);
122
- background-color: #fff;
122
+ background-color: var(--md-sys-color-surface);
123
123
  box-shadow: var(--box-shadow);
124
124
  }
125
125