Commit 731bcb3c authored by Nick Stenning's avatar Nick Stenning

Merge pull request #2667 from...

Merge pull request #2667 from hypothesis/trello-144-add-a-list-of-most-recently-annotated-by-the-group-urls-to-the-group-page

Trello 144 add a list of most recently annotated by the group urls to the group page
parents 3847c0da cbf014bf
......@@ -43,17 +43,6 @@ describe('documentTitle', function() {
assert(title === 'on “title”');
});
it('returns the title linked if the document has title and uri', function() {
var title = documentTitleFilterProvider()({
title: 'title',
uri: 'http://example.com/example.html'
});
assert(title === 'on &ldquo;<a target="_blank" ' +
'href="http://example.com/example.html">' +
'title</a>&rdquo;');
});
it('returns an empty string if the document has no title', function() {
var title = documentTitleFilterProvider()({
uri: 'http://example.com/example.html'
......
......@@ -3,6 +3,7 @@
$base-font-size: 12px;
$base-line-height: 20px;
@import './variables';
@import './reset';
@import './elements';
@import './common';
......
......@@ -14,12 +14,6 @@
@import 'page';
//ELEMENT STYLES////////////////////////////////
a {
color: $link-color;
&:hover { color: $link-color-hover; }
text-decoration: none;
}
body {
position: relative;
background-color: $body-background;
......
// basic standard styling for elements
a {
color: $link-color;
&:hover { color: $link-color-hover; }
text-decoration: none;
}
ol {
list-style-type: decimal;
padding-left: 3em;
......
......@@ -18,6 +18,7 @@
.group-form {
@include flex-center-column();
font-size: $body2-font-size;
min-height: 280px;
background-color: $white;
border: $border;
......@@ -73,6 +74,14 @@
}
}
.group-form-document-list {
text-align:center;
}
.group-form-document-list li {
margin-top: .5em;
}
.group-form-footer {
@include flex-center-column();
......
// shared styling used by both the app and the website
@import './base';
@import './reset';
@import' ./elements';
@import './elements';
// shared components
@import './primary-action-btn';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment