blob: b8978a050f1e89e24574564a964149ba1de934fb (
plain)
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
|
/** Add css rules here for your application. */
body {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
button {
border: 1px solid #ccc !important;
}
.toolbar div.gwt-Label {
margin-top: 0.35em;
}
.toolbar button {
width: 100%;
height: 100%;
}
.controls button {
width: 3.5em;
height: 3.5em;
}
.gwt-Frame {
border: none !important;
}
.console {
margin-left: 4px;
margin-right: 1px;
margin-top: 3px;
margin-bottom: 2px;
}
.console .gwt-TabLayoutPanelContentContainer {
margin-bottom: 2px;
border: 1px solid #ccc !important;
}
.console .gwt-TabLayoutPanelContent {
border: none !important;
}
.gwt-TextBox {
white-space: pre;
width: 100%;
box-sizing: border-box;
-moz-box-sizing: border-box;
border: 1px solid #ccc;
}
|