parent
6814e213c7
commit
587cbbdd3d
@ -1,14 +1,50 @@
|
|||||||
$red: #C92F47;
|
$black: #3E3A38;
|
||||||
|
$gray-1: #595959;
|
||||||
|
$gray-2: #CECECE;
|
||||||
|
$gray-3: #F9F9F9;
|
||||||
|
$white: #FFFFFF;
|
||||||
|
$blue: #01788E;
|
||||||
|
$red: #C93047;
|
||||||
|
|
||||||
|
$teal: #00B0B3;
|
||||||
|
$mint: #B2D236;
|
||||||
|
|
||||||
$beige: #EFEBE1;
|
$beige: #EFEBE1;
|
||||||
|
|
||||||
|
$warning: #FF73C0;
|
||||||
|
$watch: #F096AD;
|
||||||
|
$growth: #E0BA9A;
|
||||||
|
$approval: #D0DD86;
|
||||||
|
$ideal: #C0FF73;
|
||||||
|
|
||||||
.red {
|
.red {
|
||||||
color: $red;
|
color: $red;
|
||||||
}
|
}
|
||||||
|
|
||||||
.beige-bg {
|
.bg-beige {
|
||||||
background-color: $beige;
|
background-color: $beige;
|
||||||
}
|
}
|
||||||
|
|
||||||
.white-bg {
|
.bg-white {
|
||||||
background-color: white;
|
background-color: $white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fill-warning {
|
||||||
|
fill: $warning;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fill-watch {
|
||||||
|
fill: $watch;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fill-growth {
|
||||||
|
fill: $growth;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fill-approval {
|
||||||
|
fill: $approval;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fill-ideal {
|
||||||
|
fill: $ideal;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,9 +0,0 @@
|
|||||||
module MeasureGraphParameters
|
|
||||||
module ZoneColor
|
|
||||||
WARNING = "#FF73C0"
|
|
||||||
WATCH = "#F096AD"
|
|
||||||
GROWTH = "#E0BA9A"
|
|
||||||
APPROVAL = "#D0DD86"
|
|
||||||
IDEAL = "#C0FF73"
|
|
||||||
end
|
|
||||||
end
|
|
||||||
@ -1,28 +1,29 @@
|
|||||||
<h1><%= @school.name %></h1>
|
<h1><%= @school.name %></h1>
|
||||||
|
|
||||||
<div class="beige-bg px-6 py-4">
|
<div class="fdr fjb fac">
|
||||||
<div class="fdr fjb fac">
|
<h2 class="h1">Areas Of Interest</h2>
|
||||||
<h2 class="h1">Areas Of Interest</h2>
|
<div class="fdr">
|
||||||
<div class="fdr">
|
<select class="ml-3 custom-select-lg" name="academic-year">
|
||||||
<select class="ml-3 custom-select-lg" name="academic-year">
|
<option value="<%= @academic_year %>" selected><%= format_academic_year(@academic_year) %></option>
|
||||||
<option value="<%= @academic_year %>" selected><%= format_academic_year(@academic_year) %></option>
|
</select>
|
||||||
</select>
|
|
||||||
|
|
||||||
<select class="ml-3 custom-select-lg" name="district">
|
<select class="ml-3 custom-select-lg" name="district">
|
||||||
<option value="<%= @district.slug %>" selected><%= @district.name %></option>
|
<option value="<%= @district.slug %>" selected><%= @district.name %></option>
|
||||||
</select>
|
</select>
|
||||||
|
|
||||||
<select class="ml-3 custom-select-lg" name="school">
|
<select class="ml-3 custom-select-lg" name="school">
|
||||||
<option value="<%= @school.slug %>" selected><%= @school.name %></option>
|
<option value="<%= @school.slug %>" selected><%= @school.name %></option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="bg-beige mt-4 p-5">
|
||||||
|
|
||||||
<div class="mt-4">
|
<div>
|
||||||
<h2 class="h1 red">Distance from benchmark</h2>
|
<h2 class="h1 red">Distance from benchmark</h2>
|
||||||
<p class="p">This graph shows how much a score is above or below the benchmark of any given scale.</p>
|
<p class="body-large">This graph shows how much a score is above or below the benchmark of any given scale.</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<%= render partial: "measure_bar_graph", locals: { measure_graph_row_presenters: @measure_graph_row_presenters}%>
|
<%= render partial: "measure_bar_graph", locals: { measure_graph_row_presenters: @measure_graph_row_presenters } %>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
Reference in new issue