18 lines
389 B
CSS
18 lines
389 B
CSS
.selectlist-list {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.selectlist-item {
|
|
/* Icon from http://pinvoke.com/ */
|
|
background: #fff url(cross-circle.png) no-repeat left center;
|
|
border-left: solid 1px #eee;
|
|
border-top: solid 1px #eee;
|
|
border-right: solid 2px #ccc;
|
|
border-bottom: solid 2px #ccc;
|
|
cursor: pointer;
|
|
padding: 0.2em 0.3em 0.2em 2em;
|
|
margin: 1px 0;
|
|
width:150px;
|
|
} |