dlg-ui 1.0.18 → 1.0.20
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.
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"workbench.colorCustomizations": {
|
|
3
|
+
"activityBar.activeBackground": "#125D0D",
|
|
4
|
+
"activityBar.background": "#125D0D",
|
|
5
|
+
"activityBar.foreground": "#e7e7e7",
|
|
6
|
+
"activityBar.inactiveForeground": "#e7e7e799",
|
|
7
|
+
"activityBarBadge.background": "#000000",
|
|
8
|
+
"activityBarBadge.foreground": "#e7e7e7",
|
|
9
|
+
"commandCenter.border": "#e7e7e799",
|
|
10
|
+
"sash.hoverBorder": "#125D0D",
|
|
11
|
+
"statusBar.background": "#125D0D",
|
|
12
|
+
"statusBar.foreground": "#e7e7e7",
|
|
13
|
+
"statusBarItem.hoverBackground": "#125D0D",
|
|
14
|
+
"statusBarItem.remoteBackground": "#125D0D",
|
|
15
|
+
"statusBarItem.remoteForeground": "#e7e7e7",
|
|
16
|
+
"titleBar.activeBackground": "#125D0D",
|
|
17
|
+
"titleBar.activeForeground": "#e7e7e7",
|
|
18
|
+
"titleBar.inactiveBackground": "#125D0D99",
|
|
19
|
+
"titleBar.inactiveForeground": "#e7e7e799"
|
|
20
|
+
},
|
|
21
|
+
"peacock.remoteColor": "290ea0",
|
|
22
|
+
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
23
|
+
"[javascript]": {
|
|
24
|
+
"editor.defaultFormatter": "esbenp.prettier-vscode"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -5,6 +5,8 @@
|
|
|
5
5
|
font-size: 1em;
|
|
6
6
|
background-color: #f6f6f6;
|
|
7
7
|
border: solid;
|
|
8
|
+
height: 100%;
|
|
9
|
+
box-sizing: border-box;
|
|
8
10
|
}
|
|
9
11
|
|
|
10
12
|
.player-name {
|
|
@@ -76,6 +78,7 @@
|
|
|
76
78
|
.player-wrapper {
|
|
77
79
|
container-type: inline-size;
|
|
78
80
|
width: 100%;
|
|
81
|
+
height: 100%;
|
|
79
82
|
}
|
|
80
83
|
|
|
81
84
|
@container (min-width: 100px) {
|
|
@@ -107,4 +110,4 @@
|
|
|
107
110
|
.player-card {
|
|
108
111
|
font-size: 2rem;
|
|
109
112
|
}
|
|
110
|
-
}
|
|
113
|
+
}
|
package/index.js
CHANGED
|
@@ -9,6 +9,10 @@ module.exports = {
|
|
|
9
9
|
included(app) {
|
|
10
10
|
this._super.included.apply(this, arguments);
|
|
11
11
|
|
|
12
|
+
app.import('/trophy-removebg-preview.png', {
|
|
13
|
+
destDir: 'assets',
|
|
14
|
+
});
|
|
15
|
+
|
|
12
16
|
// Concatenate all CSS files into addon.css at build time
|
|
13
17
|
this.concatCSSFiles();
|
|
14
18
|
},
|
package/package.json
CHANGED
|
Binary file
|