AdminLTE/build/scss/plugins/_mapael.scss
REJack 6773bd1772
further scss changes
- changed /* comments to // (to avoid displaying in compiled css file)
- added .alert-primary
- removed _label.scss (due renamed to badge with BS4)
- reworked bg-*, bg-gradient-*, custom-switch-*, custom-range-* as mixin
- changed control-sidebar-light border color to main-header border
- renamed `.direct-chat-info` to `.direct-chat-infos` (not theme color, its a extra block inside direct-chat & updated demo files
- enhanced direct-chat with all colors
- added `.dropdown-menu-xl`
- reworked color-palette in pages/UI/general
- changed `Block Quotes Pulled Right` to `Secondary Block Quotes` in pages/UI/general
- removed `@-webkit-keyframes flipInX` due autoprefixer
- enhanced demo.js with additional colors for sidebar & renamed `Navbar border` to `No Navbar border`
2019-07-18 16:22:11 +02:00

71 lines
1.3 KiB
SCSS

//
// Plugins: jQuery Mapael
//
.mapael {
.map {
position: relative;
}
.mapTooltip {
@include reset-text();
@include border-radius($tooltip-border-radius);
@include font-size($tooltip-font-size);
background-color: $tooltip-bg;
color: $tooltip-color;
display: block;
max-width: $tooltip-max-width;
padding: $tooltip-padding-y $tooltip-padding-x;
position: absolute;
text-align: center;
word-wrap: break-word;
z-index: $zindex-tooltip;
}
.myLegend {
background-color: $gray-100;
border: 1px solid $gray-500;
padding: 10px;
width: 600px;
}
.zoomButton {
background-color: $button-default-background-color;
border: 1px solid $button-default-border-color;
border-radius: $btn-border-radius;
color: $button-default-color;
cursor: pointer;
font-weight: bold;
height: 16px;
left: 10px;
line-height: 14px;
padding-left: 1px;
position: absolute;
text-align: center;
top: 0;
user-select: none;
width: 16px;
&:hover,
&:active,
&.hover {
background-color: darken($button-default-background-color, 5%);
color: darken($button-default-color, 10%);
}
}
.zoomReset {
line-height: 12px;
top: 10px;
}
.zoomIn {
top: 30px;
}
.zoomOut {
top: 50px;
}
}