46193ab5fe
The primary license of the project is changing to: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later with some specific files to be licensed under the one of two licenses: CC0-1.0 LGPL-3.0-or-later This commit is one of the many steps to relicense the entire codebase. Documentation granting permission for this relicensing (from all past contributors who hold copyrights) is on file with Software Freedom Conservancy, Inc.
35 lines
708 B
SCSS
35 lines
708 B
SCSS
/* License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later */
|
|
@import 'mixins';
|
|
|
|
.activityFeed table,
|
|
.activityFeed tr {
|
|
width: 100%;
|
|
}
|
|
.activityFeed tr:nth-of-type(2n){
|
|
background: rgba(black, 0.01);
|
|
}
|
|
.activityFeed tr:not(:first-child) {
|
|
border-top: 1px solid rgba(black, 0.02);
|
|
}
|
|
.activityFeed td {
|
|
vertical-align: middle;
|
|
}
|
|
.activityFeed-icon {
|
|
font-size: 14px;
|
|
padding: 10px 0 10px 7px;
|
|
@include opacity(0.7);
|
|
color: $bluegrass;
|
|
}
|
|
.activityFeed-body {
|
|
width: 100%;
|
|
padding: 10px 8px;
|
|
font-size: 15px;
|
|
}
|
|
.activityFeed-ago {
|
|
padding: 10px 5px 10px 0;
|
|
letter-spacing: -0.5px;
|
|
word-spacing: -0.5px;
|
|
min-width: 85px;
|
|
font-size: 12px;
|
|
@include opacity(0.8);
|
|
}
|