From 3e1ce61a0ee4c522aeb08ee63257eecd496d7fa9 Mon Sep 17 00:00:00 2001 From: Bilel KIHAL Date: Thu, 11 Apr 2024 19:34:27 +0200 Subject: [PATCH 1/4] fix search page search button style --- app/assets/stylesheets/search.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/search.scss b/app/assets/stylesheets/search.scss index 6135a122c..e66312f7e 100644 --- a/app/assets/stylesheets/search.scss +++ b/app/assets/stylesheets/search.scss @@ -12,7 +12,8 @@ .search-page-input{ position: relative; - padding-bottom: 80px; + padding-bottom: 30px; + display: flex; .search-container{ top:65px; } From 5cd1e61ad3577e6a352bc5c2d56d348dd7775eb7 Mon Sep 17 00:00:00 2001 From: Bilel KIHAL Date: Thu, 11 Apr 2024 19:35:50 +0200 Subject: [PATCH 2/4] fix search page json button style --- app/views/search/index.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/search/index.html.haml b/app/views/search/index.html.haml index 40897be99..28ecbf2ee 100644 --- a/app/views/search/index.html.haml +++ b/app/views/search/index.html.haml @@ -37,7 +37,7 @@ .search-page-number-of-results = "#{t('search.match_in')} #{@search_results.length} #{t('search.ontologies')}" %div.d-flex - .search-page-json.mx-4 + .search-page-json.mx-4.mt-1 = search_json_link .search-page-advanced-button.show-options{class: "#{@advanced_options_open ? 'd-none' : ''}",'data': {'action': 'click->reveal-component#show', 'reveal-component-target': 'showButton'}} .icon From 0f8af5d8f47eafe9b92bc99243c06f0e355c68b6 Mon Sep 17 00:00:00 2001 From: Bilel KIHAL Date: Thu, 11 Apr 2024 19:36:08 +0200 Subject: [PATCH 3/4] update concepts mappings table style --- app/assets/stylesheets/mappings.scss | 3 +++ app/views/mappings/_mapping_table.html.haml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/mappings.scss b/app/assets/stylesheets/mappings.scss index 070fafea7..d490dd8b6 100644 --- a/app/assets/stylesheets/mappings.scss +++ b/app/assets/stylesheets/mappings.scss @@ -75,4 +75,7 @@ div#map_from_concept_details_table, div#map_to_concept_details_table { #concept_mappings_table { width: 100%; } +#concept_mappings_table .chip_button_container_clickable{ + white-space: nowrap; +} diff --git a/app/views/mappings/_mapping_table.html.haml b/app/views/mappings/_mapping_table.html.haml index e4600ca17..ad31dcd85 100644 --- a/app/views/mappings/_mapping_table.html.haml +++ b/app/views/mappings/_mapping_table.html.haml @@ -12,7 +12,7 @@ = check_box_tag "delete_mappings_permission", @delete_mapping_permission, @delete_mapping_permission, style: "display: none;" %div#concept_mappings_tables_div = render_alerts_container(MappingsController) - %table#concept_mappings_table.zebra{width: "100%", style:'word-break: break-word'} + %table#concept_mappings_table.table-content-stripped.table-content{width: "100%", style:'word-break: break-word'} %thead %tr %th= t("mappings.mapping_table.mapping_to") From fee6825dccf11e1f7221ecfa36e123536773fa33 Mon Sep 17 00:00:00 2001 From: Bilel KIHAL Date: Thu, 11 Apr 2024 22:02:03 +0200 Subject: [PATCH 4/4] add back chip button overflow wraping in concepts mappings table --- app/assets/stylesheets/mappings.scss | 3 --- 1 file changed, 3 deletions(-) diff --git a/app/assets/stylesheets/mappings.scss b/app/assets/stylesheets/mappings.scss index d490dd8b6..070fafea7 100644 --- a/app/assets/stylesheets/mappings.scss +++ b/app/assets/stylesheets/mappings.scss @@ -75,7 +75,4 @@ div#map_from_concept_details_table, div#map_to_concept_details_table { #concept_mappings_table { width: 100%; } -#concept_mappings_table .chip_button_container_clickable{ - white-space: nowrap; -}