Compare commits

...

2 Commits

Author SHA1 Message Date
7a92bdd6da Increment version number to 1.0.3 2026-03-27 09:20:08 +00:00
2aaa9f03f8 Added styling for fixed columns in DT 2026-03-27 09:20:00 +00:00
2 changed files with 30 additions and 1 deletions

View File

@@ -1,6 +1,6 @@
Package: AVSDevR.MarineNoiseRegistry
Title: Marine Noise Registry Common Code Package
Version: 1.0.2
Version: 1.0.3
Authors@R:
person("Craig", "Williams", , "craig@avsdev.uk", role = c("aut", "cre"))
Description: Comon code and assets for all of the Marine Noise Registry

View File

@@ -85,3 +85,32 @@ hr {
.shiny-notification-close {
font-size: 2em !important;
}
.dt-scroll-x {
overflow-x: auto;
clear: both;
}
.dt-scroll-x table {
width: 150% !important;
}
.dt-sticky-left-border {
border-right: 3px double #000000;
}
.dt-sticky-right-border {
border-left: 3px double #000000;
}
@media(max-width:1200px) {
.dtfc-fixed-left {
position: inherit !important;
}
.dtfc-fixed-right {
position: inherit !important;
}
.dt-sticky-left-border {
border-right: 0;
}
.dt-sticky-right-border {
border-left: 0;
}
}