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;
|
||||
|
||||
$warning: #FF73C0;
|
||||
$watch: #F096AD;
|
||||
$growth: #E0BA9A;
|
||||
$approval: #D0DD86;
|
||||
$ideal: #C0FF73;
|
||||
|
||||
.red {
|
||||
color: $red;
|
||||
}
|
||||
|
||||
.beige-bg {
|
||||
.bg-beige {
|
||||
background-color: $beige;
|
||||
}
|
||||
|
||||
.white-bg {
|
||||
background-color: white;
|
||||
.bg-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>
|
||||
|
||||
<div class="beige-bg px-6 py-4">
|
||||
<div class="fdr fjb fac">
|
||||
<h2 class="h1">Areas Of Interest</h2>
|
||||
<div class="fdr">
|
||||
<select class="ml-3 custom-select-lg" name="academic-year">
|
||||
<option value="<%= @academic_year %>" selected><%= format_academic_year(@academic_year) %></option>
|
||||
</select>
|
||||
<div class="fdr fjb fac">
|
||||
<h2 class="h1">Areas Of Interest</h2>
|
||||
<div class="fdr">
|
||||
<select class="ml-3 custom-select-lg" name="academic-year">
|
||||
<option value="<%= @academic_year %>" selected><%= format_academic_year(@academic_year) %></option>
|
||||
</select>
|
||||
|
||||
<select class="ml-3 custom-select-lg" name="district">
|
||||
<option value="<%= @district.slug %>" selected><%= @district.name %></option>
|
||||
</select>
|
||||
<select class="ml-3 custom-select-lg" name="district">
|
||||
<option value="<%= @district.slug %>" selected><%= @district.name %></option>
|
||||
</select>
|
||||
|
||||
<select class="ml-3 custom-select-lg" name="school">
|
||||
<option value="<%= @school.slug %>" selected><%= @school.name %></option>
|
||||
</select>
|
||||
</div>
|
||||
<select class="ml-3 custom-select-lg" name="school">
|
||||
<option value="<%= @school.slug %>" selected><%= @school.name %></option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bg-beige mt-4 p-5">
|
||||
|
||||
<div class="mt-4">
|
||||
<div>
|
||||
<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>
|
||||
|
||||
<%= 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>
|
||||
|
||||
Loading…
Reference in new issue