1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
.popup-menu-boxpointer.kimpanel-popup-boxpointer {
/* you may customize pointer box here */
}
.popup-menu-content.kimpanel-popup-content {
/* you may customize pointer box here */
padding: 0.4em;
}
.kimpanel-label {
font-family:sans;
font-weight:normal;
padding: 0.3em;
}
.kimpanel-candidate-item {
cursor: pointer;
}
.kimpanel-candidate-item:hover {
border-radius: 4px;
background-color: rgba(200,200,200,0.33);
}
.kimpanel-candidate-item:active {
border-radius: 4px;
background-color: rgba(200,200,200,0.33);
}
.kimpanel-candidate-item:active:hover {
border-radius: 4px;
background-color: rgba(200,200,200,0.15);
}
.minwidth-zero {
min-width: 0;
}
.icon-disable {
color:rgba(150,150,150,0.5);
}
|