Compare commits
7 Commits
60477682c5
...
v1.0.0
| Author | SHA1 | Date | |
|---|---|---|---|
| 7cffb9590f | |||
| 2aa85146fb | |||
| d2dfd5260e | |||
| a61347efda | |||
| 42023475c8 | |||
| 06d4e38804 | |||
| ae38af4358 |
@@ -1,6 +1,6 @@
|
||||
Package: AVSDevR.MarineNoiseRegistry
|
||||
Title: Marine Noise Registry Common Code Package
|
||||
Version: 0.1.0
|
||||
Version: 1.0.0
|
||||
Authors@R:
|
||||
person("Craig", "Williams", , "craig@avsdev.uk", role = c("aut", "cre"))
|
||||
Description: Comon code and assets for all of the Marine Noise Registry
|
||||
|
||||
@@ -157,9 +157,9 @@ MNR.GeoPlot <- R6::R6Class(
|
||||
"conservation_area_colours", conservation_area_colours,
|
||||
envir = mnr_geoplot_env
|
||||
)
|
||||
assign("conservation_areas", TRUE, envir = mnr_geoplot_env)
|
||||
assign("conservation_areas_loaded", TRUE, envir = mnr_geoplot_env)
|
||||
|
||||
invisible(self$bootConservationAreas())
|
||||
invisible(self$bootConservationAreas(db_client))
|
||||
},
|
||||
|
||||
#' @description Generates a base plotly map with optional layers included
|
||||
|
||||
@@ -17,7 +17,7 @@ use_mnr_ui <- function() {
|
||||
),
|
||||
htmltools::singleton(
|
||||
htmltools::HTML(paste0(
|
||||
"<script src='", resourcePrefix(), "js/frameHeight.js'></script>"
|
||||
"<script src='", resourcePrefix(), "/js/frameHeight.js'></script>"
|
||||
))
|
||||
)
|
||||
)
|
||||
|
||||
@@ -87,17 +87,20 @@ h6 {
|
||||
|
||||
.table.dataTable > tbody > td.active,
|
||||
.table.dataTable > tbody > tr.active td {
|
||||
background-color: #3f9c35 !important;
|
||||
color: #000000 !important;
|
||||
background-color: #6bc961 !important;
|
||||
}
|
||||
|
||||
table.dataTable > tbody > tr.selected > * {
|
||||
box-shadow: inset 0 0 0 9999px #3f9c35 !important;
|
||||
color: #000000 !important;
|
||||
box-shadow: inset 0 0 0 9999px #6bc961 !important;
|
||||
}
|
||||
|
||||
table.dataTable.hover > tbody > tr.even.selected:hover > *,
|
||||
table.dataTable.display > tbody > tr.even.selected:hover > *,
|
||||
table.dataTable.hover > tbody > tr.odd.selected:hover > *,
|
||||
table.dataTable.display > tbody > tr.odd.selected:hover > * {
|
||||
color: #FFFFFF !important;
|
||||
box-shadow: inset 0 0 0 9999px #44a939 !important;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user