-
-
Notifications
You must be signed in to change notification settings - Fork 436
/
Copy pathmonitor.css
62 lines (51 loc) · 1.19 KB
/
monitor.css
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
.p-TabBar.theia-app-centers .p-TabBar-tabIcon.arduino-serial-monitor-tab-icon {
background: url(../icons/buttons.svg);
background-size: 800%;
background-position-y: 41px;
background-position-x: 19px;
}
.serial-monitor {
height: 100%;
display: flex;
flex-direction: column;
}
.serial-monitor .head {
display: flex;
padding: 5px;
height: 27px;
}
.serial-monitor .head .send {
display: flex;
flex: 1;
margin-right: 2px;
}
.serial-monitor .head .send > input {
line-height: var(--theia-content-line-height);
width: 100%;
}
.serial-monitor .head .send > input:focus {
border-color: var(--theia-focusBorder);
}
.serial-monitor .head .config {
display: flex;
}
.serial-monitor .head .config .select {
margin-left: 3px;
}
.serial-monitor .body {
overflow: auto;
flex: 1;
padding: 5px;
}
.p-TabBar-toolbar .item.arduino-monitor {
width: 24px;
justify-content: center;
font-size: medium;
box-sizing: border-box;
}
.p-TabBar-toolbar .item.arduino-monitor.toggled {
background: var(--theia-arduino-toolbarToggleBackground);
}
.p-TabBar-toolbar .item .clear-all {
background: var(--theia-icon-clear) no-repeat;
}