forked from atom/github
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit-tab.less
More file actions
55 lines (47 loc) · 976 Bytes
/
git-tab.less
File metadata and controls
55 lines (47 loc) · 976 Bytes
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
@import "variables";
.github-StubItem-git,
.github-Git-root {
flex: 1;
display: flex;
}
.github-Git {
flex: 1;
display: flex;
flex-direction: column;
min-width: 0;
font-family: @font-family;
font-size: @font-size;
color: @text-color;
-webkit-user-select: none;
cursor: default;
&.is-loading {
color: @text-color-subtle;
}
&.no-repository,
&.too-many-changes,
&.unsupported-directory {
display: flex;
justify-content: center;
font-size: 1.25em;
padding: @component-padding * 3;
text-align: center;
> * {
margin: @component-padding 0;
}
h1 {
margin-bottom: @component-padding * 3;
}
button {
overflow: hidden;
text-overflow: ellipsis;
}
}
&-LargeIcon:before {
margin-right: 0;
margin-bottom: @component-padding * 5;
width: auto;
height: auto;
font-size: 8em;
color: mix(@base-background-color, @text-color, 66%); // 2/3 of bg color
}
}