File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -69,6 +69,8 @@ $grey-med: #999
69
69
// display: inline-block
70
70
// &:hover
71
71
// color: darken($grey-light, 5%)
72
+ .center
73
+ text-align : center
72
74
73
75
.land
74
76
fill : #dadada
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ def view_columns
14
14
def about ( record )
15
15
output = ""
16
16
output += [ record . first_name , record . last_name ] . join ( " " ) + " "
17
- output += '<span class="badge badge-warning"><i class="fa fa-exclamation-triangle icon-space-r "></i>Minor</span>' if record . minor?
17
+ output += '<span class="badge badge-warning"><i class="fa fa-exclamation-triangle"></i>Minor</span>' if record . minor?
18
18
output += "<br /><small>" + record . school . name + "</small>"
19
19
output . html_safe
20
20
end
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ def view_columns
26
26
27
27
def note ( record )
28
28
output = ""
29
- output += '<i class="fa fa-exclamation-triangle icon-space-r "></i> <small>Minor</small>' if record . minor?
30
- output += '<i class="fa fa-bus icon-space-r " title="Riding bus"></i>' if record . bus_list_id?
29
+ output += '<i class="fa fa-exclamation-triangle"></i> <small>Minor</small>' if record . minor?
30
+ output += '<i class="fa fa-bus" title="Riding bus"></i>' if record . bus_list_id?
31
31
output += "<small>Captain</small>" if record . is_bus_captain?
32
32
output = '<div class="center">' + output + "</div>" if output . present?
33
33
output . html_safe
You can’t perform that action at this time.
0 commit comments