Skip to content

Commit

Permalink
resolved #358 (incorrect titles) and makes top loading bar more promi…
Browse files Browse the repository at this point in the history
…nent
  • Loading branch information
mdorf committed Nov 19, 2024
1 parent 2c8a366 commit 59b4b1a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/assets/stylesheets/bioportal.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.turbo-progress-bar {
height: 5px;
background-color: var(--admin-color);
height: 10px;
background-color: #ffffff;
}

.tabs-container .tab-items > div button{
Expand Down
2 changes: 1 addition & 1 deletion app/assets/stylesheets/theme-variables.scss.erb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
} %>

<% ui_theme = $UI_THEME.to_s.parameterize %>
<% selected_theme_key = themes.key?(ui_theme) ? ui_theme : "ontoportal" %>
<% selected_theme_key = themes.key?(ui_theme) ? ui_theme : 'ontoportal' %>
<% selected_theme = themes[selected_theme_key] %>

:root {
Expand Down
2 changes: 1 addition & 1 deletion app/helpers/application_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ def get_link_for_ont_ajax(ont_acronym)

###END ruby equivalent of JS code in bp_ajax_controller.
def ontology_viewer_page_name(ontology_name, concept_name_title, page)
ontology_name + concept_name_title + " - #{page.capitalize}"
"#{ontology_name} - #{concept_name_title} - #{page.capitalize}"
end

end

0 comments on commit 59b4b1a

Please sign in to comment.