geoportal-data-entry-app/src/main/webapp/GeoPortalDataEntryApp.css

318 lines
5.2 KiB
CSS
Raw Normal View History

2020-10-07 17:04:13 +02:00
/** Add css rules here for your application. */
/** Example rules used by the template application (remove for your app) */
/** JUST to override the gwt-boostrap body */
body {
padding: 0px !important;
}
2020-10-07 17:04:13 +02:00
h1 {
font-size: 2em;
font-weight: bold;
color: #777777;
margin: 40px 0px 70px;
text-align: center;
2020-10-07 17:04:13 +02:00
}
.sendButton {
display: block;
font-size: 16pt;
2020-10-07 17:04:13 +02:00
}
/** Most GWT widgets already have a style name defined */
.gwt-DialogBox {
width: 400px;
2020-10-07 17:04:13 +02:00
}
.dialogVPanel {
margin: 5px;
2020-10-07 17:04:13 +02:00
}
.serverResponseLabelError {
color: red;
2020-10-07 17:04:13 +02:00
}
/** Set ids using widget.getElement().setId("idOfElement") */
#closeButton {
margin: 15px 6px 6px;
2020-10-07 17:04:13 +02:00
}
2022-07-07 18:21:34 +02:00
.red-text {
color: red !important;
}
2022-07-07 18:21:34 +02:00
.green-text {
color: green !important;
}
.my-html-table {
padding: 5px;
margin-left: 10px;
margin-bottom: 10px;
2022-09-23 12:41:32 +02:00
margin-right: 5px;
}
.my-html-table td {
padding: 5px;
border-bottom: 1px solid gray;
min-width: 100px;
}
.my-html-table td:first-child {
color: gray;
2021-08-05 11:21:39 +02:00
}
/*** TABLE GET LIST OF RECORDS***/
.table-glor {
word-wrap: break-word;
}
.table-glor td, th {
overflow: hidden !important;
}
2022-09-23 16:29:02 +02:00
.back-system-cell-b {
2022-09-19 14:48:25 +02:00
background-color: #d9edf7 !important;
}
2022-09-19 14:48:25 +02:00
2022-09-23 16:29:02 +02:00
.back-system-cell-o {
background-color: #FFE1BE !important;
}
.back-system-cell-y {
background-color: #FFEDBE !important;
}
2021-08-05 11:21:39 +02:00
.table-glor-vertical-middle td, th {
height: 50%;
vertical-align: middle !important;
}
.move-sticky {
position: -webkit-sticky;
position: sticky;
top: 0;
background-color: #f8f8f8;
border-radius: 20px;
}
2021-09-22 11:38:52 +02:00
.modal-body-custom {
max-height: 700px !important;
}
.modal-body-edit {
max-height: none !important;
}
2021-09-22 11:38:52 +02:00
.disable-div {
pointer-events: none;
2021-09-22 11:38:52 +02:00
}
2021-09-29 11:08:15 +02:00
2021-09-29 16:13:39 +02:00
.form-fieldset-edit {
margin: 10px 0px !important;
border: 1px groove #ddd !important;
padding: 10px !important;
2021-09-29 11:08:15 +02:00
}
2021-09-29 16:13:39 +02:00
.form-fieldset-edit .control-group {
margin-bottom: 15px !important;
2022-11-11 12:15:52 +01:00
}
.form-fieldset-edit .control-group > span {
padding-top: 3px !important;
padding-bottom: 3px !important;
font-size: 14px;
margin-bottom: 10px;
}
2021-09-29 16:13:39 +02:00
.table-current-content {
width: 100%;
2021-10-06 16:28:19 +02:00
background-color: #efefef !important;
2021-09-29 16:13:39 +02:00
}
.table-current-content td {
padding: 5px;
}
2021-09-30 13:06:14 +02:00
.upload-file-container .control-group {
display: inline-flex;
width: 95%;
2021-09-30 13:06:14 +02:00
}
.upload-file-container .control-group div {
margin-left: 10px;
width: 95%;
2021-09-30 13:06:14 +02:00
}
.search-textbox {
padding: 4px 14px !important;
margin-bottom: 0 !important;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
font-size: 13px !important;
font-weight: normal !important;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
border-radius: 15px !important;
width: 250px !important;
margin-top: 8px !important;
}
2021-12-02 12:25:05 +01:00
.alert_box_nav {
padding: 4px 10px !important;
margin-top: 8px !important;
margin-bottom: 10px !important;
}
2022-07-07 18:21:34 +02:00
.tree-panel {
padding: 5px;
border: 1px solid #e7e7e7;
min-width: 280px;
}
.tree-panel .gwt-TreeItem {
padding: 5px !important;
border: 1px solid #dee2e6 !important;
min-width: 270px;
font-size: 16px;
}
.tree-panel .gwt-TreeItem div {
font-size: 16px;
}
.tree-panel ul {
background: #e7e7e7;
}
.nav-toolbar-style {
margin-bottom: 5px !important;
}
.nav-toolbar-style .navbar-inner {
background-image: none !important;
box-shadow: none !important;
}
.nav-toolbar-style .container {
padding-top: 5px;
}
.actions-button-group {
margin-left: 10px;
}
.actions-button-group a {
margin-left: 10px !important;
}
.action-list-main-panel {
height: 100%;
margin: auto 0;
}
.move-sticky-no-back {
position: -webkit-sticky;
position: sticky;
top: 0;
}
2022-09-13 16:18:40 +02:00
.move-sticky-no-back .gwt-Label {
top: 0;
margin: auto 0;
}
2022-09-23 12:41:32 +02:00
.geoportal-loaders-center {
position: absolute;
left:40%;
padding: 200px 0;
z-index: 1000;
}
.geoportal-loaders-center table {
margin-bottom: 20px;
}
@keyframes fadeInOutAnimation {
0% {
opacity: 0.2;
}
100% {
opacity: 0.5;
}
}
.animate-fadeInOut {
animation: fadeInOutAnimation 1s infinite;
animation-direction: alternate;
animation-timing-function: linear;
}
.theDetailsPanel {
margin-left: 5px;
margin-right: 5px;
2022-09-23 12:41:32 +02:00
border-left: 1px solid #cdcdcd;
padding-left: 5px;
2022-09-23 12:41:32 +02:00
padding-right: 5px;
}
.theDetailsPanel .accordion-group {
border: 0 !important;
}
.box-table-diplay-project {
border: 1px solid #96a5b5;
border-radius: 5px;
margin-bottom: 5px;
word-break: break-word;
}
.box-table-diplay-project td {
padding-left: 5px;
}
.display-date {
color: red;
background-color: #f7f7f9;
padding: 2px;
border-radius: 2px;
}
.no_modal_body_max_height .modal-body {
max-height: 90% !important;
}
/** OVERRDING legend-style into 'metadata-profile-form-builder-widget' */
.legend-style {
width: auto !important;
padding-left: 10px !important;
padding-top: 0px !important;
padding-right: 10px !important;
margin-bottom: 0px !important;
border-bottom: 0px !important;
}
.legend-style small {
display: block;
font-size: 12px !important;
}
/** END OVERRDING legend-style into 'metadata-profile-form-builder-widget' */
/** OVERRDING legend-style into 'metadata-profile-form-builder-widget' */
.legend-style {
width: auto !important;
padding-left: 10px !important;
padding-top: 0px !important;
padding-right: 10px !important;
margin-bottom: 0px !important;
border-bottom: 0px !important;
}
.legend-style small {
display: block;
font-size: 12px !important;
}
/** END OVERRDING legend-style into 'metadata-profile-form-builder-widget' */