Blame view

sources/apps/activity/css/style.css 2.8 KB
6d9380f96   Cédric Dupont   Update sources OC...
1
2
3
4
  #container h2 {
  	margin-left: 24px;
  	margin-bottom: 16px;
  }
d1bafeea1   Kload   [fix] Upgrade to ...
5
  .activitysubject {
6d9380f96   Cédric Dupont   Update sources OC...
6
7
8
9
10
  	display: inline-block;
  	vertical-align: text-bottom;
  	width: 85%;
  	margin-bottom: 5px;
  	margin-left: 5px;
d1bafeea1   Kload   [fix] Upgrade to ...
11
  	text-overflow: ellipsis;
6d9380f96   Cédric Dupont   Update sources OC...
12
  	overflow: hidden;
d1bafeea1   Kload   [fix] Upgrade to ...
13
14
15
16
17
  }
  .activitymessage {
  	font-size:0.8em;
  	color:#666;
  	text-overflow: ellipsis;
6d9380f96   Cédric Dupont   Update sources OC...
18
  	overflow: hidden;
d1bafeea1   Kload   [fix] Upgrade to ...
19
  }
6d9380f96   Cédric Dupont   Update sources OC...
20
  #no_activities {
d1bafeea1   Kload   [fix] Upgrade to ...
21
22
23
24
25
  	position: absolute;
  	text-align: center;
  	top: 40%;
  	width: 100%;
  	padding: 20px;
d1bafeea1   Kload   [fix] Upgrade to ...
26
  }
6d9380f96   Cédric Dupont   Update sources OC...
27
28
  
  #no_activities .head, #no_more_activities .head {
d1bafeea1   Kload   [fix] Upgrade to ...
29
30
31
  	font-size: 1.5em;
  	color: #333;
  	font-weight: bold;
6d9380f96   Cédric Dupont   Update sources OC...
32
  	text-shadow: #aaa 0 1px 0;
d1bafeea1   Kload   [fix] Upgrade to ...
33
  }
6d9380f96   Cédric Dupont   Update sources OC...
34
35
  
  #no_activities .body {
d1bafeea1   Kload   [fix] Upgrade to ...
36
37
38
39
  	color: #666;
  	margin-top: 10px;
  	font-size: 1em;
  }
6d9380f96   Cédric Dupont   Update sources OC...
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
  #no_more_activities {
  	position: relative;
  	top: 50px;
  	width: 100%;
  	text-align: center;
  	padding: 50px 0;
  
  	z-index: 100;
  	margin: 40px auto;
  	bottom: 20px;
  	color: #555;
  }
  
  #loading_activities {
  	height: 50px;
  	margin: 0 auto;
  	padding: 20px;
d1bafeea1   Kload   [fix] Upgrade to ...
57
58
59
60
  }
  
  #container {
    background: #FFF;
d1bafeea1   Kload   [fix] Upgrade to ...
61
62
63
64
65
66
67
68
69
70
71
72
    margin-bottom: 20px;
    border-radius: 5px;
    clear: both;
    -webkit-border-radius: 5px;
  	 -moz-border-radius: 5px;
  		  border-radius: 5px;
  }
  
  .group{
  	clear: both;
  	padding-bottom: 10px;
  }
d1bafeea1   Kload   [fix] Upgrade to ...
73
  .box {
6d9380f96   Cédric Dupont   Update sources OC...
74
75
76
  	width: 100%;
  	display: block;
  	margin-bottom: 10px;
d1bafeea1   Kload   [fix] Upgrade to ...
77
78
79
80
81
82
83
84
85
86
87
88
89
90
  }
  
  .box.loaded{
  	transition: opacity 1s ease;
  	-ms-transition: opacity 1s ease;
  	-moz-transition: opacity 1s ease;
  	-o-transition: opacity 1s ease;
  	-webkit-transition: opacity 1s ease;
  	opacity: 1;
  }
  
  .box.loading{
  	opacity: 0;
  }
d1bafeea1   Kload   [fix] Upgrade to ...
91
92
  .box .header{
  	height: 32px;
d1bafeea1   Kload   [fix] Upgrade to ...
93
94
95
96
97
98
  	margin-bottom: 10px;
  }
  
  .box .messagecontainer{
  	width: 100%;
  	display: block;
6d9380f96   Cédric Dupont   Update sources OC...
99
  	margin-bottom: 20px;
d1bafeea1   Kload   [fix] Upgrade to ...
100
101
102
  }
  
  .box .preview{
d1bafeea1   Kload   [fix] Upgrade to ...
103
  	display: block;
6d9380f96   Cédric Dupont   Update sources OC...
104
105
106
107
108
109
110
111
  	width: 50px;
  	height: 50px;
  	margin-left: 24px;
  }
  
  .box .preview-dir-icon{
  	width: 32px;
  	height: 32px;
d1bafeea1   Kload   [fix] Upgrade to ...
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
  }
  
  .box .user{
  	white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
  	float: left;
  	display: inline-block;
  	width: 180px;
  }
  
  .box .user{
  	font-weight: bold;
  }
  
  .box .activitytime {
6d9380f96   Cédric Dupont   Update sources OC...
128
  	float: right;
d1bafeea1   Kload   [fix] Upgrade to ...
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
  	color:#666;
  	font-size: 0.8em;
  }
  
  .box .appname {
  	float: right;
  	color: #333;
  	font-size: 0.8em;
  }
  
  .box .grouped{
  	list-style: none;
  }
  
  .box .grouped .more{
  	cursor: default;
  	color: #666;
d1bafeea1   Kload   [fix] Upgrade to ...
146
  }
6d9380f96   Cédric Dupont   Update sources OC...
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
  /* Style for in event parameters */
  .activity-section a.filename {
  	font-weight: bold;
  }
  
  .activity-section .avatar {
  	vertical-align: middle;
  	display: inline-block;
  	margin-right: 5px;
  }
  
  /* colored icons, in addition to core ones */
  .activity-icon {
  	min-width: 16px;
  	min-height: 16px;
  	display: inline-block;
  	vertical-align: top;
  	margin-top: 2px;
  }
  .icon-add-color {
  	background-image: url('../img/add-color.svg');
  }
  .icon-change {
  	background-image: url('../img/change.svg');
  }
  .icon-delete-color {
  	background-image: url('../img/delete-color.svg');
  }
  /* grey the changed and shared icons so they are less intense */
  .icon-change,
  .icon-share,
  .icon-public {
  	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  	filter: alpha(opacity=50);
  	opacity: .5;
  }