@vtx/cs-map
Version:
React components for Vortex
31 lines (30 loc) • 671 B
CSS
.cs-map-tools-item {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding: 5px 8px;
border-bottom: 1px dashed #cccccc;
cursor: pointer;
font-size: 14px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.cs-map-tools-item .icon {
font-size: 16px;
margin-right: 10px;
}
.cs-map-tools-item:hover {
background: rgba(0, 128, 255, 0.15);
}
.cs-map-tools-item:last-child {
border-bottom: none;
}
.cs-map-tools-active-item {
color: #0080ff;
background: rgba(0, 128, 255, 0.15);
}