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.

lr-contextmenu.css 859 B

4 years ago
12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园(http://www.learun.cn)
  3. * Copyright (c) 2013-2018 北京泉江科技有限公司
  4. * 创建人:陈彬彬
  5. * 日 期:2017.03.22
  6. * 描 述:右键菜单样式表
  7. */
  8. .lr-contextmenu-wrap {
  9. position:absolute;
  10. top:0;
  11. left:0;
  12. background-color:#fff;
  13. border:1px solid #ccc;
  14. border-radius:4px;
  15. min-width: 120px;
  16. padding:5px 0px;
  17. -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
  18. box-shadow: 0 6px 12px rgba(0,0,0,.175);
  19. z-index:1000;
  20. display:none;
  21. }
  22. .lr-contextmenu-ul>li>a
  23. {
  24. display: block;
  25. padding: 2px 10px;
  26. clear: both;
  27. font-weight: 400;
  28. line-height: 1.42857143;
  29. color: #777;
  30. white-space: nowrap;
  31. }
  32. .lr-contextmenu-ul>li>a:hover {
  33. color: #262626;
  34. text-decoration: none;
  35. background-color: #f5f5f5;
  36. }