This repository has been archived by the owner on Apr 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathscreen.css
executable file
·232 lines (208 loc) · 3.91 KB
/
screen.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
/*
* Copyright (c) Codiad & Andr3as, distributed
* as-is and without warranty under the MIT License.
* See http://opensource.org/licenses/MIT for more information.
* This information must remain intact.
*/
/* Global */
h1,h2,h3,h4,h5,h6 {
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}
h1>span,h2>span,h3>span,h4>span,h5>span,h6>span {
font-size: 13px;
}
h1 {
font-size: 20px;
}
h2 {
font-size: 16px;
}
h3 {
font-size: 15px;
}
/* Git status */
.git_area table th, .git_area table td {
padding: 0;
font-weight: 100;
}
.git_area header input {
display: inline;
}
.git_area #check_all {
margin-left: 5px;
}
.git_area > div {
max-height: 45vh;
overflow-y: scroll;
}
.git_list td {
padding-left: 5px;
}
.git_area .col_1 {
width: 30px;
}
.git_area .col_2 {
width: 70px;
}
.git_area .col_3 {
width: 400px;
}
.git_area .col_4 {
width: 160px;
}
.git_area input[type="checkbox"] {
margin: auto;
}
.git_button {
border-radius: 3px;
font-size: 12px;
line-height: 1em;
padding: 5px;
margin: 2px 0;
}
.git_area .right {
position: relative;
left: 5px;
top: 15px;
}
.git_area .modified, .git_area .untracked, .git_area .deleted {
color: red;
}
.git_area .added, .git_area .renamed {
color: green;
}
/* Git log */
.git_log_area .git_log {
max-height: 55vh;
max-width: 60vw;
overflow: auto;
}
/* Commit hash */
.commit_hash {
color: yellow;
cursor: pointer;
margin-top: 5px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
}
.commit_hash:hover {
text-decoration: underline;
}
.commit_hash:hover:after {
content: "\e74c";
font-family: entypo;
font-style: normal;
font-size: 75%;
display: inline-block;
margin-right: 8px;
text-align: center;
vertical-align: top;
}
.git_network_area .content {
max-height: 40vh;
overflow: auto;
}
/* Show commit */
/* Git diff */
.git_diff, .git_show_commit_area .content {
max-height: 40vh;
max-width: 800px;
overflow: auto;
}
/* Git Blame */
.git_blame_area .content {
max-height: 40vh;
overflow-y: auto;
}
.git_blame_area table td:nth-of-type(1) {
width: 250px;
}
.git_blame_area table td:nth-of-type(2) {
width: 90px;
}
.git_blame_area table td:nth-of-type(3) {
max-width: 500px;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: middle;
white-space: nowrap;
}
/* Git changes */
[class^="git_"] .file-info, [class*=" git_"] .file-info {
background: #3b3b3b;
font-size: 14px;
font-weight: bold;
margin: 10px 0 0 0;
padding: 5px;
}
[class^="git_"] .wrapper, [class*=" git_"] .wrapper {
background-color: rgba(60, 118, 221, 0.5);
}
[class^="git_"] .plus, [class*=" git_"] .plus {
color: green;
}
[class^="git_"] .minus, [class*=" git_"] .minus {
color: red;
}
/* Git remotes */
/* Git branches */
#git_remotes, #git_branches {
display: inline;
margin-left: 10px;
width: 400px;
}
/* Git clone */
.git_clone_area table td, .git_clone_area table th {
border: none;
}
/* Git pull/push */
.git_push_area table td, .git_push_area table th {
border: none;
padding: 0;
}
/* Git stats */
.git-stat {
color: rgb(255, 152, 45);
color: rgba(255, 152, 45, 0.7);
}
/* Editor Botom Bar */
#git-stat {
float: left;
}
#git-repo-stat-wrapper {
margin: 5px 0px 0px 0px;
padding: 2px 10px 2px 10px;
cursor: pointer;
}
.git-repo-stat-valid {
background-color: green;
}
.git-repo-stat-invalid {
background-color: red;
}
.git-repo-stat-untracked {
background-color: blue;
}
.git-repo-icon-valid {
color: green;
}
.git-repo-icon-invalid {
color: red;
}
.git-repo-icon-untracked {
color: blue;
}
.hidden {
display: none;
}
#file-manager span.uncommit:before {
content: "\25cf";
font-size: 1.9em;
}
#file-manager span.uncommit {
float: left;
padding-top: 8px;
}