123456789101112131415161718192021222324252627282930313233343536 |
- .jvectormap-label {
- position: absolute;
- display: none;
- border: solid 1px #CDCDCD;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- background: #292929;
- color: white;
- font-size: 10px!important;
- padding: 3px;
- z-index: 9999;
- }
- .jvectormap-zoomin, .jvectormap-zoomout {
- position: absolute;
- left: 10px;
- -webkit-border-radius: 3px;
- -moz-border-radius: 3px;
- border-radius: 3px;
- background: #292929;
- padding: 5px;
- color: white;
- cursor: pointer;
- line-height: 10px;
- text-align: center;
- font-weight: bold;
- }
- .jvectormap-zoomin {
- top: 10px;
- }
- .jvectormap-zoomout {
- top: 35px;
- }
|