Skip to content

Commit c26f134

Browse files
jlge20wildmanj
authored andcommitted
Fix style issues
1 parent a006f8f commit c26f134

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

app/assets/stylesheets/_variables.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ $autolab-black-text: #212121;
99
$autolab-blue-text: #0869af;
1010
$autolab-green: #3a862d;
1111
$autolab-white: #fff;
12+
$autolab-selected-gray: #f5f5f5;
13+
$autolab-border-gray: #f4f1f1;

app/assets/stylesheets/export.scss

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1+
@import 'variables';
2+
13
table {
24
box-shadow: none !important;
3-
border: 1px solid #F4F1F1 !important;
5+
border: 1px solid $autolab-border-gray !important;
46
font-size: 17px !important;
57
}
68

@@ -9,7 +11,7 @@ tbody {
911
height: 46px !important;
1012

1113
&.checked {
12-
background-color: #f5f5f5 !important;
14+
background-color: $autolab-selected-gray !important;
1315
}
1416
}
1517

app/views/courses/_exportForm.html.erb

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<tr class="course-field checked">
88
<td>
99
<label>
10-
<input disabled=true class="cbox" type="checkbox" id="course_config_checkbox" checked >
10+
<input disabled=true class="cbox" type="checkbox" id="course_config_checkbox" checked>
1111
<span/>
1212
</label>
1313
</td>
@@ -33,9 +33,7 @@
3333
</tr>
3434
</tbody>
3535
</table>
36-
3736
<br />
38-
3937
<div class="row">
4038
<div>
4139
<a class="btn" id="export_btn" >Export</a>

0 commit comments

Comments
 (0)