accurator/commit

Improved css added labels.

authorChris Dijkshoorn
Wed Apr 20 18:03:22 2016 +0200
committerChris Dijkshoorn
Wed Apr 20 18:03:22 2016 +0200
commitbc9ae49970e18493d934bd82091b958a24946aa4
treedb5ea0784a139f9aed0b5863ec86af4aa6cf834a
parent61b171f517ef2e05bf65acf6a05651efaf8983e4
Diff style: patch stat
diff --git a/web/css/accurator.css b/web/css/accurator.css
index c3c3d16..8947c99 100644
--- a/web/css/accurator.css
+++ b/web/css/accurator.css
@@ -136,32 +136,6 @@ Domain page
    overflow: hidden;
 }
 
-/*******************************************************************************
-Topic page
-*******************************************************************************/
-.topic {
-	background-color: #333;
-}
-
-.topicImg {
-	max-width: 100%;
-	cursor: pointer;
-}
-
-#topicTxtTitle {
-	text-align: center;
-	color: #fff;
-	padding-bottom: 10px;
-}
-
-.topicHdr {
-	position: absolute;
-	top: 50px;
-	left: 50px;
-	width: 100%;
-	cursor: pointer;
-}
-
 /*******************************************************************************
 Profile page
 *******************************************************************************/
@@ -357,6 +331,12 @@ Item page
   vertical-align: bottom;
 }
 
+.lblAnnotation {
+	padding: 2px 5px;
+	margin-left: 2px;
+	margin-right: 2px;
+}
+
 /* Item page: Typeahead functionality */
 /* source: https://github.com/bassjobsen/typeahead.js-bootstrap-css */
 span.twitter-typeahead .tt-menu,
diff --git a/web/js/components/annotations.js b/web/js/components/annotations.js
index 352b97a..1e09be9 100644
--- a/web/js/components/annotations.js
+++ b/web/js/components/annotations.js
@@ -32,7 +32,7 @@ AnnotationList.prototype.render = function() {
 	// Render the annotations related to this field
 	for (var key in this.annotations) {
 		var annotation = this.annotations[key];
-		var label = truncate(annotation.title, 7);
+		var label = truncate(annotation.title, 10);
 		var id = generateIdFromUri(annotation['@id']);
 		var target = this.findTarget(annotation);
 
@@ -40,7 +40,7 @@ AnnotationList.prototype.render = function() {
 		$('#' + this.divId).append(
 			$.el.span({
 				'id':'lbl' + id,
-				'class':'label label-default lblAnnotation',
+				'class':'label label-primary lblAnnotation',
 				'targetId':target['@id']},
 				label
 			)