blob: bbdf9379b124e4704a40b85077cf693e589d6c56 (
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
|
body {
height: 100%;
margin: 0;
width: 100%;
overflow: hidden;
}
#graphiql {
height: 100vh;
}
.graphiql-container .history-contents li:hover {
background: #54487A !important;
}
.topBar, .docExplorerShow, .toolbar-button, .execute-button {
background: #FAFAFA !important;
}
.execute-button-wrap {
margin-left: 15px !important;
}
/*
* Fix the search icon by hiding the (broken)
* text and use a pure css solution instead.
*/
.search-box-icon {
text-indent: -1000em;
color: #000;
position: absolute;
margin-top: 2px;
margin-left: 0px;
width: 12px;
top: 3px !important;
height: 12px;
border: solid 1px currentColor;
border-radius: 100%;
-webkit-transform: rotate(-45deg);
transform: rotate(-45deg);
}
.search-box-icon:before {
content: '';
position: absolute;
top: 12px;
left: 5px;
height: 6px;
width: 1px;
background-color: currentColor;
}
|