Skip to content

Commit

Permalink
Merge branch 'main' into propagations-august-2024
Browse files Browse the repository at this point in the history
  • Loading branch information
walkowif authored Aug 14, 2024
2 parents caf75e5 + 4d64b76 commit fdb1041
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ default_language_version:
python: python3
repos:
- repo: https://github.com/lorenzwalthert/precommit
rev: v0.4.2
rev: v0.4.3
hooks:
- id: style-files
name: Style code with `styler`
Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: teal.reporter
Title: Reporting Tools for 'shiny' Modules
Version: 0.3.1.9010
Date: 2024-06-12
Version: 0.3.1.9011
Date: 2024-08-14
Authors@R: c(
person("Dawid", "Kaledkowski", , "dawid.kaledkowski@roche.com", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-9533-457X")),
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# teal.reporter 0.3.1.9010
# teal.reporter 0.3.1.9011

### Enhancements

Expand Down
2 changes: 1 addition & 1 deletion R/Previewer.R
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ reporter_previewer_srv <- function(id,
shiny::tags$div(
id = "previewer_reporter_buttons",
class = "previewer_buttons_line",
previewer_buttons_list[previewer_buttons]
lapply(previewer_buttons_list[previewer_buttons], shiny::tags$div)
)
)
})
Expand Down
18 changes: 9 additions & 9 deletions inst/css/Previewer.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/* teal.reporter Previewer css */

/* highlight the icon when hover */
span.preview_card_control i:hover {
span.preview_card_control i:hover {
color: blue;
}

.previewer_buttons_line {
display: flex;
justify-content: end;
flex-wrap: wrap;
margin-right: 10px;
}

Expand All @@ -19,20 +19,20 @@ a.disabled {
text-decoration: none;
}

a[id$=download_data].disabled,
a[id$=download_data_prev].disabled {
a[id$="download_data"].disabled,
a[id$="download_data_prev"].disabled {
border: 0;
color: white;
background-color: darkgrey;
}

/* icons in the previewer */
.icon_previewer {
float:right;
margin-left:10px;
margin-right:10px;
margin-top:10px;
color:#337ab7;
float: right;
margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
color: #337ab7;
}

/* prevents oversizing elements covered by shinybusy::block */
Expand Down

0 comments on commit fdb1041

Please sign in to comment.