File tree 2 files changed +16
-4
lines changed
arduino-ide-extension/src/browser
2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change 15
15
16
16
.p-TabBar-tabIcon .cloud-sketchbook-tree-icon {
17
17
background-color : var (--theia-foreground );
18
- -webkit-mask : url(./ cloud-sketchbook-tree-icon .svg);
18
+ -webkit-mask : url(.. / icons/ cloud.svg);
19
19
-webkit-mask-position : center;
20
20
-webkit-mask-repeat : no-repeat;
21
- width : var ( --theia-icon-size ) ;
21
+ width : 19 px !important ;
22
22
height : var (--theia-icon-size );
23
23
-webkit-mask-size : 100% ;
24
24
}
25
25
26
26
.p-mod-current
27
27
.cloud-sketchbook-tree-icon {
28
28
background-color : var (--theia-foreground );
29
- -webkit-mask : url(./ cloud-sketchbook-tree-icon -filled.svg);
29
+ -webkit-mask : url(.. / icons/ cloud-filled.svg);
30
30
-webkit-mask-position : center;
31
31
-webkit-mask-repeat : no-repeat;
32
32
-webkit-mask-size : 100% ;
Original file line number Diff line number Diff line change @@ -135,7 +135,19 @@ export class FrontendConnectionStatusService extends TheiaFrontendConnectionStat
135
135
const connectionStatusStatusBar = 'connection-status' ;
136
136
const theiaOffline = 'theia-mod-offline' ;
137
137
138
- export type OfflineConnectionStatus = 'backend' | 'daemon' | 'internet' ;
138
+ export type OfflineConnectionStatus =
139
+ /**
140
+ * There is no websocket connection between the frontend and the backend.
141
+ */
142
+ | 'backend'
143
+ /**
144
+ * The CLI daemon port is not available. Could not establish the gRPC connection between the backend and the CLI.
145
+ */
146
+ | 'daemon'
147
+ /**
148
+ * Cloud not connect to the Internet from the browser.
149
+ */
150
+ | 'internet' ;
139
151
140
152
@injectable ( )
141
153
export class ApplicationConnectionStatusContribution extends TheiaApplicationConnectionStatusContribution {
You can’t perform that action at this time.
0 commit comments