summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2017-10-31 21:41:48 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2017-10-31 21:41:48 +0100
commitdba39c70c6c54f801db909f55ac201b701530b03 (patch)
treeabb5b8c321a976fe028c49b7c227db354773c034 /templates
parent666a59cda660ee715ff3b902a5c8d97d02068a6d (diff)
Fix styling of h3 headings
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'templates')
-rw-r--r--templates/propertyGroup.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/propertyGroup.html b/templates/propertyGroup.html
index eb8eeb68..e25ba091 100644
--- a/templates/propertyGroup.html
+++ b/templates/propertyGroup.html
@@ -1,3 +1,6 @@
-<h3 class="propertyGroup__title" ng-class="ctrl.getIconClass()">{{ctrl.getReadableName()}}</h3>
+<h3 class="propertyGroup__title">
+ <i ng-class="ctrl.getIconClass()"></i>
+ {{ctrl.getReadableName()}}
+</h3>
<detailsItem ng-repeat="property in ctrl.properties" name="ctrl.name" data="property" model="ctrl.contact" index="$index"
class="details-item-{{ctrl.name}}" ng-class="{ 'failed': ctrl.contact.failedProps.indexOf(ctrl.name) !== -1 }"></detailsItem>