forked from whimet/confluence-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dashboard.html
168 lines (146 loc) · 3.93 KB
/
dashboard.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-114996686-1"></script>
<script type="text/javascript" src="js/google-analytics.js?version=2022.01"></script>
<meta charset="utf-8">
<script type="text/javascript" src="js/util.js"></script>
<script type="text/javascript" src="https://connect-cdn.atl-paas.net/all.js" data-options="sizeToParent:true"></script>
<script type="text/javascript" src="js/demo/resources.js"></script>
<script type="text/javascript" src="js/demo/demoPage.js"></script>
<title>Dashboard</title>
<style>
body.root {
margin: 0 !important;
background: white;
}
.save-and-exit {
display: none !important;
}
.tableList {
background-image: url(image/table.png);
}
.gridList {
background-image: url(image/grid.png);
}
.fullScreen {
background-image: url(image/full-screen.png);
}
.exitFullScreen {
background-image: url(image/exit-full-screen.png);
}
.imgInput {
cursor: pointer;
background-size: contain;
background-repeat: no-repeat;
display: inline-block;
width: 32px;
height: 32px;
transition: all 100ms ease-in;
filter: brightness(1.8) grayscale(1) opacity(.7);
}
.selected,.imgInput:hover {
filter: none;
}
input[type="search"] {
margin: 0;
font-size: 14px;
color: #000;
border-radius: 20px;
width: 300px;
padding: 9px 4px 9px 40px;
background: #F2F4F7 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat 13px center;
}
.gridDiagram {
border: 1px solid var(--ds-border, #ddd);
display: inline-block;
vertical-align: top;
border-radius: 3px;
overflow: hidden;
font-size: 14pt;
cursor: pointer;
margin: 5px;
width: 300px;
height: 325px;
}
.gridTitle {
font-size: 15px;
font-weight: 500;
padding: 4px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
width: 88%;
display: inline-block;
}
.gridEditBtnCont {
text-align: right;
overflow: hidden;
width: 12%;
padding: 4px;
display: inline-block;
}
.gridImgCont {
height: 250px;
width: 300px;
display: inline-flex;
justify-content: center;
align-items: center;
}
.gridImgCont img{
max-height: 235px;
max-width: 300px;
}
.gridContainer {
width: 70%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
padding: 4px;
font-size: 15px;
}
.gridContributors {
width: 30%;
text-align: right;
overflow: hidden;
padding: 4px;
}
.iconEditBtn {
border: 1px solid var(--ds-border, #ccc);
cursor: pointer;
background-color: inherit;
border-radius: 100%;
padding: 4px;
box-shadow: 0 0 0 1px var(--ds-border, #ccc);
}
.avatar-inner img {
height: 28px;
width: 28px;
}
.gridViewList .avatar-inner img{
margin-top: -4px;
}
.contIcon {
width: 16px;
height: 16px;
margin-right: 5px;
}
*::-webkit-scrollbar {
width: 6px;
height: 6px;
}
*::-webkit-scrollbar-thumb {
background-color: #D0D5DD;
border-radius: 6px;
}
*::-webkit-scrollbar-track {
background-color: #fff;
}
</style>
</head>
<body style="height: 100vh;" class="root">
<div id="app"></div>
</body>
<script type="module" src="src/dashboard.ts"></script>
</html>