Skip to content

Commit

Permalink
Remove underline from links; rename OK/NOK to $$$
Browse files Browse the repository at this point in the history
  • Loading branch information
cepe authored and qarol committed Jun 6, 2024
1 parent 4e4a007 commit 8ca4c50
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions app/assets/stylesheets/flatly/_bootswatch.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic&
}
// Navbar =====================================================================


.navbar {
border-width: 0;

Expand Down Expand Up @@ -78,8 +79,8 @@ $web-font-path: "https://fonts.googleapis.com/css?family=Lato:400,700,400italic&
table,
.table {

a:not(.btn) {
text-decoration: underline;
a:hover {
text-decoration: none;
}

.dropdown-menu a {
Expand Down
4 changes: 2 additions & 2 deletions app/helpers/application_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ def user_status(user)

def user_fin(user)
if user.fin?
content_tag :label, 'OK', class: 'label label-success', style: 'cursor:pointer'
content_tag :label, '$$$', class: 'label label-success', style: 'cursor:pointer'
else
content_tag :label, 'NOK', class: 'label label-danger', style: 'cursor:pointer'
content_tag :label, '$$$', class: 'label label-danger', style: 'cursor:pointer'
end
end

Expand Down

0 comments on commit 8ca4c50

Please sign in to comment.