forked from github/CopilotForXcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (59 loc) · 1.14 KB
/
style.css
File metadata and controls
67 lines (59 loc) · 1.14 KB
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
63
64
65
66
67
/* Diff Viewer Styles */
html, body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
overflow: hidden;
}
#container {
width: 100%;
height: calc(100% - 40px);
border: none;
margin: 0;
padding: 0;
margin-top: 40px;
}
.loading {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}
.action-buttons {
position: absolute;
top: 0;
right: 0;
height: 40px;
display: flex;
justify-content: flex-end;
align-items: center;
padding: 0 4px;
border-top: 1px solid #ddd;
}
.action-button {
margin-left: 8px;
padding: 6px 12px;
background-color: #007acc;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 12px;
}
.action-button:hover {
background-color: #0062a3;
}
.action-button.secondary {
background-color: #f0f0f0;
color: #333;
border: 1px solid #ddd;
}
.action-button.secondary:hover {
background-color: #e0e0e0;
}
.hidden {
display: none;
}