23 lines
386 B
CSS
23 lines
386 B
CSS
#inner-details {
|
|
|
|
}
|
|
|
|
.label {
|
|
display:block;
|
|
white-space: nowrap;
|
|
padding: 2px 4px;
|
|
background:#ddd;
|
|
opacity:0.8;
|
|
border-radius:5px;
|
|
}
|
|
|
|
span.name {
|
|
cursor: pointer;
|
|
position: absolute;
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
}
|