Commit 25e5a119 authored by Jake Hartnell's avatar Jake Hartnell Committed by Aron Carroll

Add CC0 licensing information to the editor

parent c06a9ac4
@import "mixins/icons";
//ANNOTATION//////////////////////////////// //ANNOTATION////////////////////////////////
//This is for everything that is formatted as an annotation. //This is for everything that is formatted as an annotation.
.annotation { .annotation {
...@@ -59,6 +61,24 @@ ...@@ -59,6 +61,24 @@
font-size: .923em; font-size: .923em;
} }
.annotation-license {
clear: both;
border-top: #cccccc 1px solid;
font-size: 0.9em;
padding-top: 0.583em;
a {
color: $gray-light;
display: block;
}
@include icons {
font-size: 16px;
vertical-align: -3px;
margin-right: 1px;
}
}
.show-differences { .show-differences {
border-left: 3px solid #D3D3D3; border-left: 3px solid #D3D3D3;
padding: 0.3em 0.615em; padding: 0.3em 0.615em;
......
...@@ -92,7 +92,7 @@ ...@@ -92,7 +92,7 @@
</div> </div>
<!-- / Tags --> <!-- / Tags -->
<footer class="annotation-footer form-actions" <div class="annotation-section form-actions"
ng-if="vm.editing" ng-if="vm.editing"
ng-switch="vm.action"> ng-switch="vm.action">
<div class="form-actions-buttons form-actions-left"> <div class="form-actions-buttons form-actions-left">
...@@ -109,7 +109,16 @@ ...@@ -109,7 +109,16 @@
ng-click="vm.revert()" ng-click="vm.revert()"
><i class="h-icon-x btn-icon"></i> Cancel</button> ><i class="h-icon-x btn-icon"></i> Cancel</button>
</div> </div>
</footer> </div>
<div class="annotation-section annotation-license" ng-if="vm.editing">
<a href="http://creativecommons.org/publicdomain/zero/1.0/"
title="View more information about the Creative Commons Public Domain license"
target="_blank">
<i class="h-icon-cc-logo"></i><i class="h-icon-cc-zero"></i>
Annotations can be freely reused by anyone for any purpose.
</a>
</div>
<footer class="annotation-footer annotation-actions" <footer class="annotation-footer annotation-actions"
ng-if="!vm.editing && vm.annotation.id"> ng-if="!vm.editing && vm.annotation.id">
......
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