-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/popup record selector (#221)
* added previous/next record to popup content * updated theme feature handling to allow for multiple features * fixed styling and behaviour of next/prev buttons
- Loading branch information
Showing
8 changed files
with
242 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,75 @@ | ||
.map-theme .sc-popup-header { | ||
height: 25px; | ||
padding-top: 6px; | ||
background: linear-gradient(to bottom, #3980cc 0%, #2865a2 100%); | ||
border-bottom: 2px solid #e7a614; | ||
color: #fff !important; | ||
line-height: 20px; | ||
padding-left: 6px; | ||
cursor: default; | ||
font-size: 15px; | ||
border-radius: 3px !important; | ||
height: 25px; | ||
padding-top: 6px; | ||
background: linear-gradient(to bottom, #3980cc 0%, #2865a2 100%); | ||
border-bottom: 2px solid #e7a614; | ||
color: #fff !important; | ||
line-height: 20px; | ||
padding-left: 6px; | ||
cursor: default; | ||
font-size: 15px; | ||
border-radius: 3px !important; | ||
} | ||
|
||
.map-theme .sc-popup-header-close-button { | ||
z-index: 500; | ||
/* position: absolute; | ||
top: 2px; | ||
cursor: pointer; | ||
background: url(../dijit/images/popup.png) no-repeat; */ | ||
z-index: 500; | ||
} | ||
.sc-popup-content-next-button { | ||
z-index: 500; | ||
} | ||
.sc-popup-content-prev-button { | ||
z-index: 500; | ||
} | ||
|
||
@media only screen and (max-width: 770px) { | ||
.map-theme .sc-property-report-click-more-info { | ||
width: 60% !important; | ||
} | ||
.map-theme .sc-property-report-click-more-info { | ||
width: 60% !important; | ||
} | ||
|
||
.map-theme .sc-property-report-click-close { | ||
width: 37% !important; | ||
} | ||
.map-theme .ol-popup { | ||
position: absolute; | ||
background-color: white; | ||
/* padding: 15px 25px 15px 15px; */ | ||
border: 1px solid #cccccc; | ||
bottom: 0px; | ||
top: unset; | ||
right: 0px; | ||
left: -50px; | ||
border-radius: 3px !important; | ||
width: 100%; | ||
max-width: none !important; | ||
} | ||
.map-theme .sc-property-report-click-close { | ||
width: 37% !important; | ||
} | ||
.map-theme .ol-popup { | ||
position: absolute; | ||
background-color: white; | ||
/* padding: 15px 25px 15px 15px; */ | ||
border: 1px solid #cccccc; | ||
bottom: 0px; | ||
top: unset; | ||
right: 0px; | ||
left: -50px; | ||
border-radius: 3px !important; | ||
width: 100%; | ||
max-width: none !important; | ||
} | ||
|
||
.map-theme .ol-popup-content { | ||
max-width: none; | ||
width: 100%; | ||
} | ||
.map-theme .ol-popup-content { | ||
max-width: none; | ||
width: 100%; | ||
} | ||
|
||
.map-theme .ol-selectable { | ||
transform: unset !important; | ||
position: absolute; | ||
left: 50px !important; | ||
/*top: 238px !important;*/ | ||
right: 0px !important; | ||
bottom: 0px; | ||
width: 100%; | ||
} | ||
.map-theme .ol-selectable.hidden { | ||
bottom: -1000px; | ||
} | ||
.map-theme .ol-selectable { | ||
transform: unset !important; | ||
position: absolute; | ||
left: 50px !important; | ||
/*top: 238px !important;*/ | ||
right: 0px !important; | ||
bottom: 0px; | ||
width: 100%; | ||
} | ||
.map-theme .ol-selectable.hidden { | ||
bottom: -1000px; | ||
} | ||
|
||
.map-theme .ol-popup-content { | ||
position: relative; | ||
width: 100%; | ||
max-width: none !important; | ||
z-index: 1; | ||
padding: 6px !important; | ||
background-color: #ffffff !important; | ||
overflow: scroll; | ||
/* max-height: 320px !important; */ | ||
/* min-height: 50px !important; */ | ||
} | ||
.map-theme .ol-popup-content { | ||
position: relative; | ||
width: 100%; | ||
max-width: none !important; | ||
z-index: 1; | ||
padding: 6px !important; | ||
background-color: #ffffff !important; | ||
overflow: scroll; | ||
/* max-height: 320px !important; */ | ||
/* min-height: 50px !important; */ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.