You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

51 lines
1.0 KiB

  1. /*
  2. * 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园(http://www.learun.cn)
  3. * Copyright (c) 2013-2018 北京泉江科技有限公司
  4. * 创建人:陈彬彬
  5. * 日 期:2018.04.09
  6. * 描 述:弹层选择控件
  7. */
  8. .lr-layerselect {
  9. position: relative;
  10. width: 100%;
  11. height: 28px;
  12. line-height: 26px;
  13. border: 1px solid #ccc;
  14. padding-left: 4px;
  15. cursor: pointer;
  16. color: #999;
  17. }
  18. .lr-layerselect.selected {
  19. color: #000;
  20. }
  21. .lr-layerselect > i {
  22. position: absolute;
  23. top: 8px;
  24. right: 2px;
  25. font-size: 12px;
  26. color: #666;
  27. }
  28. .lr-layerselect .clear-btn {
  29. position: absolute;
  30. top: 0;
  31. right: 0;
  32. height: 100%;
  33. width: 40px;
  34. background-color: #ccc;
  35. text-align: center;
  36. display: none;
  37. }
  38. .lr-layerselect .clear-btn:hover {
  39. color: #666;
  40. }
  41. .lr-layerselect:hover > i {
  42. display: none;
  43. }
  44. .lr-layerselect:hover .clear-btn {
  45. display: block;
  46. }