Commit c6f5055a authored by Randall Leeds's avatar Randall Leeds

make the heatmap larger; sass variable

parent 6c31cb14
...@@ -2,6 +2,18 @@ ...@@ -2,6 +2,18 @@
@import 'compass'; @import 'compass';
@import 'compass/reset/utilities'; @import 'compass/reset/utilities';
//STANCE COLORS
$positive: #3aab39;
$negative: #d11c2b;
$neutral: #0171ba;
//OTHER VARIABLES
$thread-padding: 1.5em;
$score-width: 40px;
$score-height: $score-width;
$sidepane-width: 510px;
$heatmap-width: 27px;
/* Annotator styles */ /* Annotator styles */
.annotator-adder { .annotator-adder {
...@@ -42,19 +54,9 @@ ...@@ -42,19 +54,9 @@
.annotator-wrapper { .annotator-wrapper {
position: relative; position: relative;
padding-right: $heatmap-width;
} }
//STANCE COLORS
$positive: #3aab39;
$negative: #d11c2b;
$neutral: #0171ba;
//OTHER VARIABLES
$thread-padding: 1.5em;
$score-width: 40px;
$score-height: $score-width;
$sidepane-width: 510px;
//ANNOTATOR TEXT STYLES //ANNOTATOR TEXT STYLES
@mixin primarytext { @mixin primarytext {
font-weight: bold; font-weight: bold;
...@@ -116,7 +118,7 @@ $iconset: iconset_wireframe; ...@@ -116,7 +118,7 @@ $iconset: iconset_wireframe;
@include tinyshadow(-1px, 0, 0.2); @include tinyshadow(-1px, 0, 0.2);
background: hsla(0, 0, 90%, 0.4); background: hsla(0, 0, 90%, 0.4);
position: fixed; position: fixed;
width: 15px; width: $heatmap-width;
z-index: 1; z-index: 1;
} }
...@@ -163,12 +165,12 @@ $iconset: iconset_wireframe; ...@@ -163,12 +165,12 @@ $iconset: iconset_wireframe;
position: fixed; position: fixed;
top: 0; top: 0;
overflow-y: auto; overflow-y: auto;
padding-left: 15px; padding-left: $heatmap-width;
} }
} }
.hyp-sidebar.hyp-collapsed { .hyp-sidebar.hyp-collapsed {
margin-left: -15px; margin-left: -$heatmap-width;
width: 0; width: 0;
.annotator-outer { .annotator-outer {
......
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