-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathgithubActivity.css
More file actions
79 lines (69 loc) · 1.79 KB
/
Copy pathgithubActivity.css
File metadata and controls
79 lines (69 loc) · 1.79 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
68
69
70
71
72
73
74
75
76
77
78
.github-activity {
font-size: 80%;
background: #fff;
border: 1px solid #777;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.github-activity.loading {
background: #333 url(img/spinner.gif) no-repeat 50% 50%;
min-height: 50px;
}
.github-activity .events-wrapper {
height: 100%;
overflow: auto;
margin: 0 8px;
}
.github-activity .event {
margin: 8px 0; /* collapse */
padding: 0;
border: 0;
}
.github-activity p {
margin: 0;
padding: 0;
}
.github-activity .event p.title {
color: #666;
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
background-color: #f1f1f1;
background-image: -moz-linear-gradient(top, #f1f1f1, #e1e1e1);
background-image: -ms-linear-gradient(top, #f1f1f1, #e1e1e1);
background-image: -o-linear-gradient(top, #f1f1f1, #e1e1e1);
background-image: -webkit-gradient(linear, left top, left bottom, from(#f1f1f1), to(#e1e1e1));
background-image: -webkit-linear-gradient(top, #f1f1f1, #e1e1e1);
background-image: linear-gradient(top, #f1f1f1, #e1e1e1);
filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f1f1f1', EndColorStr='#e1e1e1');
-webkit-border-top-right-radius: 10px;
-moz-border-radius-topright: 10px;
border-top-right-radius: 10px;
height: 20px;
line-height: 20px;
}
.github-activity .event p.title .when {
color: #999;
float: right;
text-align: right;
height: 100%;
width: 12%;
padding-right: 2%;
overflow: hidden;
white-space: nowrap;
}
.github-activity .event p.title .what {
display: inline-block;
height: 100%;
width: 85%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
-o-text-overflow: ellipsis;
}
.github-activity .event p.title img {
vertical-align: middle;
width: 20px;
}
.github-activity .event p.details {
color: #555;
}