-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (61 loc) · 1.78 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VSCode Webview Playground</title>
<style>
.badge {
background-color: var(--vscode-badge-background);
border: 1px solid var(--vscode-contrastBorder, transparent);
border-radius: 2px;
box-sizing: border-box;
color: var(--vscode-badge-foreground);
display: inline-block;
font-family: var(--vscode-font-family);
font-size: 11px;
font-weight: 400;
line-height: 14px;
min-width: 18px;
padding: 2px 3px;
text-align: center;
white-space: nowrap;
}
.badge.counter {
border-radius: 11px;
box-sizing: border-box;
height: 18px;
line-height: 1;
padding: 3px 5px;
}
.badge.activity-bar-counter {
background-color: var(--vscode-activityBarBadge-background);
border-radius: 20px;
color: var(--vscode-activityBarBadge-foreground);
font-size: 9px;
font-weight: 600;
line-height: 16px;
padding: 0 4px;
}
</style>
<script type="module" src="/dist/index.js"></script>
</head>
<body>
<vscode-dev-toolbar></vscode-dev-toolbar>
<vscode-dev-toolbar></vscode-dev-toolbar>
<vscode-demo>
<span class="badge">308 Settings Found</span>
</vscode-demo>
<vscode-demo>
<span class="badge counter">42</span>
</vscode-demo>
<vscode-demo>
<span class="badge activity-bar-counter">42</span>
</vscode-demo>
<vscode-theme-selector></vscode-theme-selector>
<vscode-theme-selector></vscode-theme-selector>
<vscode-view-container-selector></vscode-view-container-selector>
<vscode-view-container-selector></vscode-view-container-selector>
<p><a href="#">Link Example</a></p>
</body>
</html>