2014-04-07 00:33:49 +00:00
|
|
|
|
html,body {
|
2014-12-31 14:54:48 +00:00
|
|
|
|
height: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
2014-04-07 00:33:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-26 03:05:07 +00:00
|
|
|
|
#map {
|
2014-04-07 00:33:49 +00:00
|
|
|
|
height: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-14 01:47:11 +00:00
|
|
|
|
#map.fp-overFeature {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-07 23:10:53 +00:00
|
|
|
|
#map.fp-clickHandler {
|
|
|
|
|
cursor: crosshair;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-26 03:05:07 +00:00
|
|
|
|
.fp-map {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fp-map-disabled-cover {
|
2014-04-07 00:33:49 +00:00
|
|
|
|
background-color: #888;
|
|
|
|
|
opacity: 0.7;
|
|
|
|
|
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
|
|
|
|
|
filter: alpha(opacity=70);
|
|
|
|
|
-moz-opacity: 0.7;
|
|
|
|
|
-khtml-opacity: 0.7;
|
2014-12-26 03:05:07 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
2014-04-07 00:33:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-26 03:05:07 +00:00
|
|
|
|
.fp-map-loading {
|
|
|
|
|
position:absolute;
|
|
|
|
|
top:0;
|
|
|
|
|
left:0;
|
|
|
|
|
right:0;
|
|
|
|
|
bottom:0;
|
|
|
|
|
padding:10px;
|
|
|
|
|
background: #fff;
|
|
|
|
|
z-index:100000;
|
|
|
|
|
font-size:1.5em;
|
|
|
|
|
font-weight:bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fp-toolbox {
|
2014-04-07 00:33:49 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 10px;
|
|
|
|
|
right: 10px;
|
2016-10-04 12:43:57 +00:00
|
|
|
|
opacity: .5;
|
|
|
|
|
transition: opacity .7s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fp-toolbox:hover {
|
|
|
|
|
opacity: 1;
|
2014-04-07 00:33:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-06-11 22:19:50 +00:00
|
|
|
|
@media print {
|
|
|
|
|
.fp-toolbox {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-07 23:10:53 +00:00
|
|
|
|
.error,.success,.warning,.info {
|
|
|
|
|
padding: 8px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
border: 1px solid;
|
|
|
|
|
font-weight: bold;
|
2014-12-27 02:47:40 +00:00
|
|
|
|
white-space: pre-line;
|
2014-04-07 23:10:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-07 00:33:49 +00:00
|
|
|
|
.error {
|
|
|
|
|
background-color: #f2dede;
|
|
|
|
|
color: #a94442;
|
2014-04-07 23:10:53 +00:00
|
|
|
|
border-color: #ebccd1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.success {
|
|
|
|
|
background-color: #dff0d8;
|
|
|
|
|
border-color: #d6e9c6;
|
|
|
|
|
color: #3c763d;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.info {
|
|
|
|
|
background-color: #d9edf7;
|
|
|
|
|
border-color: #bce8f1;
|
|
|
|
|
color: #31708f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.warning {
|
|
|
|
|
background-color: #fcf8e3;
|
|
|
|
|
border-color: #faebcc;
|
|
|
|
|
color: #8a6d3b;
|
2014-04-07 00:33:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dl {
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dt {
|
2014-12-14 16:09:56 +00:00
|
|
|
|
display: inline-block;
|
2014-04-07 00:33:49 +00:00
|
|
|
|
font-weight: bold;
|
2014-04-09 23:37:18 +00:00
|
|
|
|
margin: 5px 0 0 0;
|
2014-04-07 00:33:49 +00:00
|
|
|
|
padding: 0;
|
2014-12-14 16:09:56 +00:00
|
|
|
|
width: 29%;
|
2014-12-26 03:05:07 +00:00
|
|
|
|
vertical-align: top;
|
2014-12-14 16:09:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dt:after {
|
|
|
|
|
content: ":\a0";
|
2014-04-07 00:33:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-09 23:37:18 +00:00
|
|
|
|
dd {
|
2014-12-14 16:09:56 +00:00
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 69%;
|
|
|
|
|
margin: 5px 0 0 0;
|
2014-04-09 23:37:18 +00:00
|
|
|
|
padding: 0;
|
2014-12-26 03:05:07 +00:00
|
|
|
|
vertical-align: top;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-31 02:26:45 +00:00
|
|
|
|
dd :first-child,td :first-child {
|
2014-12-26 03:05:07 +00:00
|
|
|
|
margin-top: 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-31 02:26:45 +00:00
|
|
|
|
dd :last-child,td :last-child {
|
2014-12-26 03:05:07 +00:00
|
|
|
|
margin-bottom: 0;
|
2014-04-09 23:37:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
dd input, dd textarea {
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-19 00:37:30 +00:00
|
|
|
|
dd input.inline {
|
|
|
|
|
width: 10em;
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-09 23:37:18 +00:00
|
|
|
|
dl:after {
|
|
|
|
|
clear: left;
|
|
|
|
|
display: block;
|
|
|
|
|
content: " ";
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-04 13:52:16 +00:00
|
|
|
|
.checkbox.disabled label {
|
|
|
|
|
color: #aaa;
|
2014-12-14 03:43:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-07 00:33:49 +00:00
|
|
|
|
tr.selected td {
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table {
|
|
|
|
|
width: 100%;
|
2014-12-12 02:26:55 +00:00
|
|
|
|
border-spacing: 0;
|
|
|
|
|
border-collapse: collapse;
|
2014-04-07 00:33:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-31 18:18:10 +00:00
|
|
|
|
table th.sort {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
table th.sort .ui-icon {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-12 02:26:55 +00:00
|
|
|
|
table.border td, table.border th {
|
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
|
padding: .5em;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-29 02:39:15 +00:00
|
|
|
|
table.border thead th, table.border thead.td {
|
2014-12-14 03:43:05 +00:00
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-29 02:39:15 +00:00
|
|
|
|
table.border td.move,table.border th.move {
|
|
|
|
|
border: none;
|
|
|
|
|
padding: 0;
|
|
|
|
|
background: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-12 02:26:55 +00:00
|
|
|
|
table.border input, table.border textarea, table.border select {
|
|
|
|
|
width: 100%;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-04 13:52:16 +00:00
|
|
|
|
.td-buttons {
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
width: 1px;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-26 03:05:07 +00:00
|
|
|
|
.messages {
|
2014-04-07 23:10:53 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 10px;
|
|
|
|
|
width: 50%;
|
|
|
|
|
left: 25%;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-26 03:05:07 +00:00
|
|
|
|
.messages p {
|
2014-04-07 23:10:53 +00:00
|
|
|
|
font-size: 1.5em;
|
|
|
|
|
margin:0 0 10px 0;
|
|
|
|
|
position: relative;
|
|
|
|
|
box-shadow: 0 0 15px;
|
|
|
|
|
border-radius: 5px;
|
2014-12-27 02:47:40 +00:00
|
|
|
|
white-space: normal;
|
2014-04-07 23:10:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-26 03:05:07 +00:00
|
|
|
|
.messages .close-button {
|
2014-04-07 23:10:53 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 5px;
|
|
|
|
|
right: 5px;
|
|
|
|
|
color: inherit;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
textarea {
|
|
|
|
|
height: 5em;
|
2014-04-09 23:27:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-27 17:39:50 +00:00
|
|
|
|
.fp-popup {
|
2014-04-09 23:27:12 +00:00
|
|
|
|
background: #fff;
|
|
|
|
|
position:absolute;
|
|
|
|
|
width: 350px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
box-shadow: 0 0 10px #888;
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-27 17:39:50 +00:00
|
|
|
|
.fp-popup-hidden {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fp-popup .content {
|
2016-10-04 11:01:40 +00:00
|
|
|
|
height: 200px;
|
2014-04-09 23:27:12 +00:00
|
|
|
|
overflow: auto;
|
2016-10-04 11:01:40 +00:00
|
|
|
|
padding-bottom: 1.5em;
|
|
|
|
|
border-radius: 10px;
|
2014-04-09 23:27:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-27 17:39:50 +00:00
|
|
|
|
.fp-popup:before {
|
|
|
|
|
content: "";
|
|
|
|
|
position: absolute;
|
|
|
|
|
border: 0;
|
|
|
|
|
border-style: solid;
|
|
|
|
|
border-color: transparent #fff;
|
|
|
|
|
display: block;
|
|
|
|
|
width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fp-popup-bottom {
|
2014-12-31 02:24:47 +00:00
|
|
|
|
margin-top: 51px;
|
2014-04-27 17:39:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fp-popup-bottom:before {
|
|
|
|
|
top: -50px;
|
|
|
|
|
border-top-width: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fp-popup-right {
|
|
|
|
|
margin-left: -30px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fp-popup-right:before {
|
|
|
|
|
left: 30px;
|
|
|
|
|
border-left-width: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fp-popup-top {
|
|
|
|
|
margin-top: -264px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fp-popup-top:before {
|
|
|
|
|
bottom: -50px;
|
|
|
|
|
border-bottom-width: 50px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fp-popup-left {
|
|
|
|
|
margin-left: -319px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fp-popup-left:before {
|
|
|
|
|
right: 30px;
|
|
|
|
|
border-right-width: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fp-popup .buttons {
|
2014-04-09 23:27:12 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
background: #fff;
|
|
|
|
|
bottom: 0;
|
2016-10-04 11:01:40 +00:00
|
|
|
|
left: 0;
|
|
|
|
|
right: 15px;
|
|
|
|
|
padding: 5px 10px;
|
2014-04-09 23:27:12 +00:00
|
|
|
|
box-shadow: 0 0 10px #fff;
|
2016-10-04 11:01:40 +00:00
|
|
|
|
border-bottom-left-radius: 10px;
|
2014-04-09 23:27:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-27 17:39:50 +00:00
|
|
|
|
.fp-popup .close-button {
|
2014-04-09 23:27:12 +00:00
|
|
|
|
position: absolute;
|
|
|
|
|
top: 10px;
|
|
|
|
|
right: 20px;
|
|
|
|
|
text-decoration: none;
|
2014-04-14 02:43:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.pos,.distance {
|
2016-10-04 11:01:40 +00:00
|
|
|
|
color: #888;
|
2014-04-14 03:47:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-04-27 16:01:16 +00:00
|
|
|
|
#colour-picker {
|
|
|
|
|
background: #fafafa;
|
|
|
|
|
width: 171px;
|
|
|
|
|
padding: 5px;
|
|
|
|
|
border: 1px solid #666;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
box-shadow: 5px 5px 5px rgba(0,0,0,0.3);
|
|
|
|
|
list-style-type: none;
|
|
|
|
|
margin: 0;
|
|
|
|
|
position: absolute;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#colour-picker li {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
margin: 2px;
|
|
|
|
|
width: 13px;
|
|
|
|
|
height: 13px;
|
|
|
|
|
padding: 0;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
border: 1px solid #aaa;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#colour-picker li:hover {
|
|
|
|
|
border-color: #000;
|
2014-04-27 17:39:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-14 18:13:16 +00:00
|
|
|
|
.olMap .fmControlLoading {
|
2014-12-27 16:16:54 +00:00
|
|
|
|
top: auto;
|
|
|
|
|
bottom: 7px;
|
|
|
|
|
left: 102px;
|
2014-12-14 18:13:16 +00:00
|
|
|
|
right: auto;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-30 14:56:16 +00:00
|
|
|
|
.fp-map-label {
|
|
|
|
|
position: absolute;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
z-index: 1010;
|
|
|
|
|
border: 1px solid #000;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
padding: 3px 6px;
|
2014-12-30 14:59:57 +00:00
|
|
|
|
opacity: .7;
|
2014-12-30 14:56:16 +00:00
|
|
|
|
font-weight: bold;
|
|
|
|
|
}
|
|
|
|
|
|
2016-02-28 17:23:54 +00:00
|
|
|
|
.type-select {
|
|
|
|
|
position: absolute;
|
|
|
|
|
bottom: .5em;
|
|
|
|
|
right: 1em;
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-27 17:39:50 +00:00
|
|
|
|
|
|
|
|
|
/********* z-index **************/
|
|
|
|
|
|
|
|
|
|
/* jQuery popup has a z-index of 100 */
|
|
|
|
|
/* OpenLayers Controls have z-index: 1008 (inside the map viewport) */
|
|
|
|
|
|
2014-12-26 03:05:07 +00:00
|
|
|
|
.fp-map-disabled-cover {
|
2014-04-27 17:39:50 +00:00
|
|
|
|
z-index: 10001;
|
|
|
|
|
}
|
|
|
|
|
|
2014-12-26 03:05:07 +00:00
|
|
|
|
.messages {
|
2014-04-27 17:39:50 +00:00
|
|
|
|
z-index: 10002;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#colour-picker {
|
2016-10-04 07:37:11 +00:00
|
|
|
|
z-index: 1500;
|
2014-04-27 17:39:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#map .fp-popup {
|
|
|
|
|
z-index: 1007;
|
2014-12-27 02:47:21 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.fp-toolbox {
|
|
|
|
|
z-index: 1020;
|
2015-06-11 22:19:50 +00:00
|
|
|
|
}
|