12345678910111213141516171819202122232425262728293031323334353637 |
- .-sew-list-container {
- background: white;
- border: 1px solid #DDD;
- border-radius: 3px;
- box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
- min-width: 180px;
- }
- .-sew-list {
- list-style: none;
- margin: 0;
- padding: 0;
- max-height: 180px;
- overflow: scroll;
- }
- .-sew-list-item {
- display: block;
- padding: 5px 10px;
- border-bottom: 1px solid #DDD;
- cursor: pointer;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- max-width: 400px;
- }
- .-sew-list-item small {
- color: #afafaf;
- }
- .-sew-list-item.selected {
- color: white;
- background: #4183C4;
- text-decoration: none;
- }
|