Skip to content

Commit c8a8ea8

Browse files
authored
Merge pull request #872 from insightsengineering/1505-ui-changes@main
Final UI and bslib changes
2 parents e8dc0e8 + e90a3c4 commit c8a8ea8

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

R/tm_a_pca.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1118,7 +1118,6 @@ srv_a_pca <- function(id, data, reporter, filter_panel_api, dat, plot_height, pl
11181118

11191119
validation()
11201120
tags$div(
1121-
class = "overflow-scroll",
11221121
uiOutput(session$ns("tbl_importance_ui")),
11231122
uiOutput(session$ns("tbl_eigenvector_ui")),
11241123
teal.widgets::plot_with_settings_ui(id = session$ns("pca_plot"))

R/tm_file_viewer.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,6 @@ ui_viewer <- function(id, ...) {
115115
ns("tree"),
116116
dragAndDrop = FALSE,
117117
sort = FALSE,
118-
wholerow = TRUE,
119118
theme = "proton",
120119
multiple = FALSE
121120
)

R/tm_outliers.R

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,10 @@ ui_outliers <- function(id, ...) {
238238
teal.widgets::standard_layout(
239239
output = teal.widgets::white_small_well(
240240
uiOutput(ns("total_outliers")),
241-
DT::dataTableOutput(ns("summary_table")),
241+
tags$div(
242+
style = "overflow: auto;",
243+
DT::dataTableOutput(ns("summary_table"))
244+
),
242245
uiOutput(ns("total_missing")),
243246
tags$br(), tags$hr(),
244247
tabsetPanel(

inst/css/custom.css

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,6 @@
4949
display: block;
5050
}
5151

52-
.overflow-scroll {
53-
overflow: scroll;
54-
}
55-
5652
.w-10 {
5753
width: 10%;
5854
}
@@ -82,6 +78,6 @@
8278
}
8379

8480
.embed_pdf {
85-
height:600px;
86-
width:100%
81+
height: 600px;
82+
width: 100%;
8783
}

0 commit comments

Comments
 (0)