Skip to content

Commit

Permalink
Update testModal.css
Browse files Browse the repository at this point in the history
added new changes to testModal.css
  • Loading branch information
DavidArmahJr authored Apr 29, 2024
1 parent 252063e commit 2c63239
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion omf/static/geoJsonMap/v3/extensions/testModal.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,28 @@
#modalInsert {
align-items: center;
background-color: rgba(0,0,0,0.4);
display: none;
/* The modalInsert div needs a height in order for inner divs to be able to use percentage values for max-height */
height: 100%; /* DO NOT CHANGE THIS */
justify-content: center;
position: absolute;
/*top: calc(var(--headerHeight));*/
top: 0;
width: 100%;
/* z-index is is needed to cover the sideNav */
z-index: 2;

}
#modalInsert.visible {
display: flex;
}

/* Support for renderReadOnlyModal */
div.leaflet-popup-content div.js-div--modal.featureEditModal {
border-radius: 0px;
}
table.plainTable td, table.plainTable th {
border: 1px solid black;
border: 0px solid black;
}
div.js-div--modal.featureEditModal table.table--modal.plainTable td:nth-child(2) {
max-width: initial;
Expand All @@ -12,3 +31,4 @@ div.js-div--modal.featureEditModal table.table--modal.plainTable td:nth-child(2)
table.table--modal.plainTable td, table.table--modal.plainTable th {
padding: .25rem;
}

0 comments on commit 2c63239

Please sign in to comment.