Compare commits

..

2 Commits

3 changed files with 77 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
Package: AVSDevR.MarineNoiseRegistry
Title: Marine Noise Registry Common Code Package
Version: 1.0.0.9000
Version: 1.0.1
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

@@ -9,4 +9,75 @@ input[type="text"], input[type="password"], input[type="number"] {
.selectize-input input[type="text"] {
height: 27px !important;
}
}
.selectize-control .selectize-input.disabled {
cursor: not-allowed !important;
opacity: 1;
background-color: #eee;
}
.selectize-input.disabled, .selectize-input.disabled * {
cursor: not-allowed !important;
}
.table.dataTable tbody tr td.actions-col, .table.dataTable thead tr th.actions-col {
min-width: 140px;
}
.row-header {
padding-bottom: 0;
margin-bottom: 0;
margin-top: 30px;
text-decoration: underline;
}
.form-group.has-success div div.selectize-control div.selectize-input {
border-color: #00a65a;
box-shadow: none;
}
.tab-content {
border-left: 1px solid #ddd;
padding: 8px;
padding-left: 15px;
}
.noise-parameter {
display: inline-block;
width: 32%;
padding: 0px 20px 0px 0px;
}
dl.parameters {
display: grid;
grid-template-columns: max-content auto;
}
dl.parameters dt {
grid-column-start: 1;
}
dl.parameters dt::after {
content: ":";
margin-right: 10px;
}
dl.parameters dd {
grid-column-start: 2;
}
tr.deleted-row {
text-decoration: line-through;
color: #BBB;
}
hr {
color: #BBB;
}
.vr {
color: #BBB;
opacity: 1.0;
width: 2px;
}

View File

@@ -441,6 +441,10 @@ a:focus {
text-decoration: underline;
}
.form-control {
font-size: 12pt;
}
.form-group.has-success label {
color: #008549;
}