Added button to show/hide guided notes and discussions.

This commit is contained in:
Arthur Barrett
2013-02-05 13:10:23 -05:00
parent 45e4c0cfac
commit 2097b69332
3 changed files with 28 additions and 1 deletions

View File

@@ -14,12 +14,24 @@
}
}
.annotatable-toggle {
display: block;
font-size: $body-font-size;
}
span.annotatable {
color: $blue;
cursor: pointer;
.annotatable-icon {
margin: auto 2px auto 4px;
}
&.hide {
cursor: none;
color: inherit;
.annotatable-icon {
display: none;
}
}
}
.annotatable-icon {
@@ -64,4 +76,7 @@ span.annotatable {
&.opaque {
opacity: 0.4;
}
&.hide {
display: none;
}
}