2020-12-16 16:54:41 +00:00
|
|
|
/*!
|
|
|
|
* Copyright 2020 James Lyne
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2021-01-05 22:30:55 +00:00
|
|
|
.leaflet-popup {
|
|
|
|
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
|
|
|
|
background-color: $global-background;
|
|
|
|
color: $global-text-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.leaflet-popup-content-wrapper {
|
|
|
|
border-radius: $global-border-radius;
|
|
|
|
}
|
|
|
|
|
|
|
|
.leaflet-popup-content {
|
|
|
|
margin: 1.5rem;
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
2020-12-01 23:20:38 +00:00
|
|
|
|
2021-01-05 22:30:55 +00:00
|
|
|
&.leaflet-popup--chat {
|
|
|
|
.leaflet-popup-content {
|
|
|
|
margin: 0.5rem 1rem;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
}
|
2021-01-07 13:49:00 +00:00
|
|
|
|
|
|
|
@media print {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-12-01 23:20:38 +00:00
|
|
|
}
|
|
|
|
|