dbgate-web 6.2.0 → 6.3.0

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/public/error.html CHANGED
@@ -15,6 +15,7 @@
15
15
  <link rel="manifest" href="manifest.json" />
16
16
 
17
17
  <link rel="stylesheet" href="global.css" />
18
+ <link rel="stylesheet" href="tokens.css" />
18
19
  <link rel="stylesheet" href="dimensions.css" />
19
20
  <link rel="stylesheet" href="bulma.css" />
20
21
  <link rel="stylesheet" href="icon-colors.css" />
@@ -114,7 +115,6 @@
114
115
  <div></div>
115
116
  <div></div>
116
117
  </div>
117
- <div>Loading DbGate App</div>
118
118
  </div>
119
119
  </div>
120
120
  </body>
package/public/index.html CHANGED
@@ -15,6 +15,7 @@
15
15
  <link rel="manifest" href="manifest.json" />
16
16
 
17
17
  <link rel="stylesheet" href="global.css" />
18
+ <link rel="stylesheet" href="tokens.css" />
18
19
  <link rel="stylesheet" href="dimensions.css" />
19
20
  <link rel="stylesheet" href="bulma.css" />
20
21
  <link rel="stylesheet" href="icon-colors.css" />
@@ -114,7 +115,6 @@
114
115
  <div></div>
115
116
  <div></div>
116
117
  </div>
117
- <div>Loading DbGate App</div>
118
118
  </div>
119
119
  </div>
120
120
  </body>
@@ -15,6 +15,7 @@
15
15
  <link rel="manifest" href="manifest.json" />
16
16
 
17
17
  <link rel="stylesheet" href="global.css" />
18
+ <link rel="stylesheet" href="tokens.css" />
18
19
  <link rel="stylesheet" href="dimensions.css" />
19
20
  <link rel="stylesheet" href="bulma.css" />
20
21
  <link rel="stylesheet" href="icon-colors.css" />
@@ -114,7 +115,6 @@
114
115
  <div></div>
115
116
  <div></div>
116
117
  </div>
117
- <div>Loading DbGate App</div>
118
118
  </div>
119
119
  </div>
120
120
  </body>
package/public/login.html CHANGED
@@ -15,6 +15,7 @@
15
15
  <link rel="manifest" href="manifest.json" />
16
16
 
17
17
  <link rel="stylesheet" href="global.css" />
18
+ <link rel="stylesheet" href="tokens.css" />
18
19
  <link rel="stylesheet" href="dimensions.css" />
19
20
  <link rel="stylesheet" href="bulma.css" />
20
21
  <link rel="stylesheet" href="icon-colors.css" />
@@ -114,7 +115,6 @@
114
115
  <div></div>
115
116
  <div></div>
116
117
  </div>
117
- <div>Loading DbGate App</div>
118
118
  </div>
119
119
  </div>
120
120
  </body>
@@ -15,6 +15,7 @@
15
15
  <link rel="manifest" href="manifest.json" />
16
16
 
17
17
  <link rel="stylesheet" href="global.css" />
18
+ <link rel="stylesheet" href="tokens.css" />
18
19
  <link rel="stylesheet" href="dimensions.css" />
19
20
  <link rel="stylesheet" href="bulma.css" />
20
21
  <link rel="stylesheet" href="icon-colors.css" />
@@ -114,7 +115,6 @@
114
115
  <div></div>
115
116
  <div></div>
116
117
  </div>
117
- <div>Loading DbGate App</div>
118
118
  </div>
119
119
  </div>
120
120
  </body>
@@ -15,6 +15,7 @@
15
15
  <link rel="manifest" href="manifest.json" />
16
16
 
17
17
  <link rel="stylesheet" href="global.css" />
18
+ <link rel="stylesheet" href="tokens.css" />
18
19
  <link rel="stylesheet" href="dimensions.css" />
19
20
  <link rel="stylesheet" href="bulma.css" />
20
21
  <link rel="stylesheet" href="icon-colors.css" />
@@ -114,7 +115,6 @@
114
115
  <div></div>
115
116
  <div></div>
116
117
  </div>
117
- <div>Loading DbGate App</div>
118
118
  </div>
119
119
  </div>
120
120
  </body>
@@ -15,6 +15,7 @@
15
15
  <link rel="manifest" href="manifest.json" />
16
16
 
17
17
  <link rel="stylesheet" href="global.css" />
18
+ <link rel="stylesheet" href="tokens.css" />
18
19
  <link rel="stylesheet" href="dimensions.css" />
19
20
  <link rel="stylesheet" href="bulma.css" />
20
21
  <link rel="stylesheet" href="icon-colors.css" />
@@ -114,7 +115,6 @@
114
115
  <div></div>
115
116
  <div></div>
116
117
  </div>
117
- <div>Loading DbGate App</div>
118
118
  </div>
119
119
  </div>
120
120
  </body>
@@ -0,0 +1,178 @@
1
+ .hljs {
2
+ background: var(--token-base);
3
+ color: var(--token-text);
4
+ }
5
+
6
+ .hljs-subst {
7
+ color: var(--token-subst);
8
+ }
9
+
10
+ .hljs-formula {
11
+ color: var(--token-formula);
12
+ }
13
+
14
+ .hljs-attr {
15
+ color: var(--token-attr);
16
+ }
17
+
18
+ .hljs-property {
19
+ color: var(--token-property);
20
+ }
21
+
22
+ .hljs-params {
23
+ color: var(--token-params);
24
+ }
25
+
26
+ .hljs-comment {
27
+ color: var(--token-comment);
28
+ }
29
+
30
+ .hljs-tag {
31
+ color: var(--token-tag);
32
+ }
33
+
34
+ .hljs-punctuation {
35
+ color: var(--token-punctuation);
36
+ }
37
+
38
+ .hljs-tag .hljs-name {
39
+ color: var(--token-tag-name);
40
+ }
41
+
42
+ .hljs-tag .hljs-attr {
43
+ color: var(--token-tag-attr);
44
+ }
45
+
46
+ .hljs-keyword {
47
+ color: var(--token-keyword);
48
+ }
49
+
50
+ .hljs-attribute {
51
+ color: var(--token-attribute);
52
+ }
53
+
54
+ .hljs-selector-tag {
55
+ color: var(--token-selector-tag);
56
+ }
57
+
58
+ .hljs-meta .hljs-keyword {
59
+ color: var(--token-meta-keyword);
60
+ }
61
+
62
+ .hljs-doctag {
63
+ color: var(--token-doctag);
64
+ }
65
+
66
+ .hljs-name {
67
+ color: var(--token-name);
68
+ }
69
+
70
+ .hljs-type {
71
+ color: var(--token-type);
72
+ }
73
+
74
+ .hljs-string {
75
+ color: var(--token-string);
76
+ }
77
+
78
+ .hljs-number {
79
+ color: var(--token-number);
80
+ }
81
+
82
+ .hljs-selector-id {
83
+ color: var(--token-selector-id);
84
+ }
85
+
86
+ .hljs-selector-class {
87
+ color: var(--token-selector-class);
88
+ }
89
+
90
+ .hljs-quote {
91
+ color: var(--token-quote);
92
+ }
93
+
94
+ .hljs-template-tag {
95
+ color: var(--token-template-tag);
96
+ }
97
+
98
+ .hljs-deletion {
99
+ color: var(--token-deletion);
100
+ }
101
+
102
+ .hljs-title {
103
+ color: var(--token-title);
104
+ }
105
+
106
+ .hljs-section {
107
+ color: var(--token-section);
108
+ }
109
+
110
+ .hljs-regexp {
111
+ color: var(--token-regexp);
112
+ }
113
+
114
+ .hljs-symbol {
115
+ color: var(--token-symbol);
116
+ }
117
+
118
+ .hljs-variable {
119
+ color: var(--token-variable);
120
+ }
121
+
122
+ .hljs-template-variable {
123
+ color: var(--token-template-variable);
124
+ }
125
+
126
+ .hljs-link {
127
+ color: var(--token-link);
128
+ }
129
+
130
+ .hljs-selector-attr {
131
+ color: var(--token-selector-attr);
132
+ }
133
+
134
+ .hljs-operator {
135
+ color: var(--token-operator);
136
+ }
137
+
138
+ .hljs-selector-pseudo {
139
+ color: var(--token-selector-pseudo);
140
+ }
141
+
142
+ .hljs-literal {
143
+ color: var(--token-literal);
144
+ }
145
+
146
+ .hljs-built_in {
147
+ color: var(--token-built_in);
148
+ }
149
+
150
+ .hljs-bullet {
151
+ color: var(--token-bullet);
152
+ }
153
+
154
+ .hljs-code {
155
+ color: var(--token-code);
156
+ }
157
+
158
+ .hljs-addition {
159
+ color: var(--token-addition);
160
+ }
161
+
162
+ .hljs-meta {
163
+ color: var(--token-meta);
164
+ }
165
+
166
+ .hljs-meta .hljs-string {
167
+ color: var(--token-meta-string);
168
+ }
169
+
170
+ .hljs-emphasis {
171
+ color: var(--token-emphasis);
172
+ font-style: italic;
173
+ }
174
+
175
+ .hljs-strong {
176
+ color: var(--token-strong);
177
+ font-weight: bold;
178
+ }