Skip to content

Commit

Permalink
add question mark explanation to help; increase size and color of que…
Browse files Browse the repository at this point in the history
…stion marks
  • Loading branch information
LeaSeep committed Nov 5, 2024
1 parent a340ec9 commit 10e63a5
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
5 changes: 5 additions & 0 deletions program/shinyApp/R/C.R
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,11 @@ guide <<- Cicerone$
description = "These are the different tabs currently available. You can switch between them by clicking on the tab names. Each tab has a different purpose. Note, that more tabs will appear after the mandatory tabs Data selection and Pre-processing (not visible yet).
As soon as the Pre-processing is done the analysis tabs will appear - those do not have to be completed in a specific order - they work independently from each other."
)$
step(
el = "firstQ",
title = "Question Marks",
description = "Click on theese to get more help on the particular tagged item. (Do not click on this during this guide, you can try it out afterwards) "
)$
step(
el = "UsefulLinks",
title = "Useful Links",
Expand Down
2 changes: 1 addition & 1 deletion program/shinyApp/R/data_selection/ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ data_selection_sidebar_panel <- sidebarPanel(
label = HTML('Upload data matrix <br/><small>(rows entities, cols samples) <br/><a href="airway-read-counts-LS.csv" download>Download example data (Transcriptomics, human)</a></small>'),
accept = c(".csv", ".xlsx"),
width = "80%"
) %>% helper(type = "markdown", content = "DataSelection_MetaData"),
) %>% helper(type = "markdown", content = "DataSelection_MetaData",style = "font-size: 24px;"),
shiny::fileInput(
inputId = "metadataInput",
label = HTML("Upload your Meta Data Sheet <small>(currently replaces sample annotation)</small>"),
Expand Down
4 changes: 4 additions & 0 deletions program/shinyApp/ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,10 @@ ui <- shiny::fluidPage(
width: 90%;
max-width: 90%;
}
.shinyhelper-container {
font-size: 24px;
color: darkred !important;
}
#sidebar_data_selection {
background-color: #70BF4F47;
}
Expand Down

0 comments on commit 10e63a5

Please sign in to comment.