Skip to content

Commit

Permalink
fix a few colors
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanTG committed Oct 12, 2024
1 parent cf2fb0e commit 21e9194
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/assets/stylesheets/application.scss.erb
Original file line number Diff line number Diff line change
Expand Up @@ -1503,7 +1503,7 @@ li.address_full {
padding: 6px 6px 6px 0px;
display: flex;
align-items: center;
font-size: 22px;
font-size: 24px;
line-height: 28px;
}

Expand Down Expand Up @@ -2380,7 +2380,7 @@ input.score {
}

.desc_show_location {
color: var(--medgrey);
color: var(--darkgrey);
font-size: 13px;
line-height: 15px;
font-family: $italic;
Expand Down
6 changes: 3 additions & 3 deletions app/views/locations/_render_update_metadata.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@
- if (l.operator_id)
%div.operator
= image_tag('icons/wrench-outline.svg', :class => 'meta_icon')
%span.medgrey Operated by:
%span.darkgrey Operated by:
- if ((l.operator.website && l.operator.website.empty?) || (!l.operator.website))
%span  #{l.operator.name}
- else
%span
=link_to "#{l.operator.name}", "#{l.operator.website}", :target => "_blank"
- if (l.operator.operator_has_email)
%div.operator_comments.medgrey (This operator receives machine comments)
%div.operator_comments.darkgrey (This operator receives machine comments)
- else
%div.operator_comments.medgrey (This operator does not receive machine comments)
%div.operator_comments.darkgrey (This operator does not receive machine comments)
- if !l.description.blank?
%div.description
= image_tag('icons/notebook-outline.svg', :class => 'meta_icon float_l')
Expand Down

0 comments on commit 21e9194

Please sign in to comment.