From 30000d37d6c11b78c33cb35f15c152db766886d8 Mon Sep 17 00:00:00 2001 From: PaulJonasJost Date: Sat, 25 Jan 2025 13:52:53 +0100 Subject: [PATCH] Changed Sig Ana to Diff ana also in hiding tabs etc --- program/shinyApp/server.R | 2 +- program/shinyApp/ui.R | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/program/shinyApp/server.R b/program/shinyApp/server.R index 2964d4d3..3ee64f05 100644 --- a/program/shinyApp/server.R +++ b/program/shinyApp/server.R @@ -66,7 +66,7 @@ server <- function(input,output,session){ # Layout upon Start ---- hideTab(inputId = "tabsetPanel1", target = "Pre-processing") hideTab(inputId = "tabsetPanel1", target = "Sample Correlation") - hideTab(inputId = "tabsetPanel1", target = "Significance Analysis") + hideTab(inputId = "tabsetPanel1", target = "Differential Analysis") hideTab(inputId = "tabsetPanel1", target = "PCA") hideTab(inputId = "tabsetPanel1", target = "Heatmap") hideTab(inputId = "tabsetPanel1", target = "Single Gene Visualisations") diff --git a/program/shinyApp/ui.R b/program/shinyApp/ui.R index 60948aea..8b9a9561 100644 --- a/program/shinyApp/ui.R +++ b/program/shinyApp/ui.R @@ -185,7 +185,7 @@ ui <- shiny::fluidPage( background-color: #FD8D33 !important; /* Strong Orange */ color: white !important; } - .tabbable > .nav > li > a[data-value='Significance Analysis'] { + .tabbable > .nav > li > a[data-value='Differential Analysis'] { background-color: #FFD33547 !important; /* Lighter Yellow */ color: black !important; } @@ -213,7 +213,7 @@ ui <- shiny::fluidPage( background-color: #A208BA35 !important; /* Lighter Purple */ color: black !important; } - .tabbable > .nav > li[class=active] > a[data-value='Significance Analysis'] { + .tabbable > .nav > li[class=active] > a[data-value='Differential Analysis'] { background-color: #A208BA !important; /* Strong Purple */ color: white !important; }