暫無描述
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.

style.css 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .tree {
  2. min-height:20px;
  3. padding:19px;
  4. margin-bottom:20px;
  5. background-color:#fbfbfb;
  6. border:1px solid #999;
  7. -webkit-border-radius:4px;
  8. -moz-border-radius:4px;
  9. border-radius:4px;
  10. -webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);
  11. -moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);
  12. box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05)
  13. }
  14. .tree li {
  15. list-style-type:none;
  16. margin:0;
  17. padding:10px 5px 0 5px;
  18. position:relative
  19. }
  20. .tree li::before, .tree li::after {
  21. content:'';
  22. left:-20px;
  23. position:absolute;
  24. right:auto
  25. }
  26. .tree li::before {
  27. border-left:1px solid #999;
  28. bottom:50px;
  29. height:100%;
  30. top:0;
  31. width:1px
  32. }
  33. .tree li::after {
  34. border-top:1px solid #999;
  35. height:20px;
  36. top:25px;
  37. width:25px
  38. }
  39. .tree li span {
  40. -moz-border-radius:5px;
  41. -webkit-border-radius:5px;
  42. border:1px solid #999;
  43. border-radius:5px;
  44. display:inline-block;
  45. padding:3px 8px;
  46. text-decoration:none
  47. }
  48. .tree li.parent_li>span {
  49. cursor:pointer
  50. }
  51. .tree>ul>li::before, .tree>ul>li::after {
  52. }
  53. .tree li.parent_li>span:hover, .tree li.parent_li>span:hover+ul li span {
  54. background:#eee;
  55. border:1px solid #94a0b4;
  56. color:#000
  57. }