sew.css 602 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .-sew-list-container {
  2. background: white;
  3. border: 1px solid #DDD;
  4. border-radius: 3px;
  5. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  6. min-width: 180px;
  7. }
  8. .-sew-list {
  9. list-style: none;
  10. margin: 0;
  11. padding: 0;
  12. max-height: 180px;
  13. overflow: scroll;
  14. }
  15. .-sew-list-item {
  16. display: block;
  17. padding: 5px 10px;
  18. border-bottom: 1px solid #DDD;
  19. cursor: pointer;
  20. overflow: hidden;
  21. text-overflow: ellipsis;
  22. white-space: nowrap;
  23. max-width: 400px;
  24. }
  25. .-sew-list-item small {
  26. color: #afafaf;
  27. }
  28. .-sew-list-item.selected {
  29. color: white;
  30. background: #4183C4;
  31. text-decoration: none;
  32. }