|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- /*
- * 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园(http://www.learun.cn)
- * Copyright (c) 2013-2018 北京泉江科技有限公司
- * 创建人:陈彬彬
- * 日 期:2017.03.16
- * 描 述:树组件样式
- */
- .lr-tree {
- /*overflow-y: auto;*/
- }
-
- .lr-tree ul,
- .lr-tree li {
- list-style-type: none;
- margin: 0px;
- padding: 0px;
- }
-
- .lr-tree-icon,
- .lr-tree-ec-icon,
- .lr-tree-node-cb,
- .lr-tree-node-icon {
- border: 0 none;
- height: 18px;
- margin: 0;
- padding: 0;
- margin-top: 3px;
- vertical-align: top;
- width: 16px;
- background-repeat: no-repeat;
- }
- .lr-tree-node-cb {
- height: 16px;
- padding: 2px;
- margin-top: 4.5px;
- margin-right: 5px;
- }
-
- ul.lr-tree-node-ct {
- line-height: 0;
- zoom: 1;
- }
-
- .lr-tree-node-expanded > .lr-tree-ec-icon {
- background-image: url(/Content/images/learuntree/arrows.gif) !important;
- background: transparent no-repeat -16px 0;
- }
-
- .lr-tree-node-expanded > .lr-tree-ec-icon:hover {
- background: transparent no-repeat -48px 0;
- }
-
- .lr-tree-node-collapsed > .lr-tree-ec-icon {
- background-image: url(/Content/images/learuntree/arrows.gif) !important;
- background: transparent no-repeat 0px 0;
- }
-
- .lr-tree-node-collapsed > .lr-tree-ec-icon:hover {
- background: transparent no-repeat -32px 0;
- }
-
- .lr-tree-node {
- white-space: nowrap;
- color: #000;
- }
-
- .lr-tree-node {
- color: #000;
- }
-
- .lr-tree-node i {
- font-size: 13px;
- width: 13px;
- color: #666666;
- }
-
- .lr-tree-node a {
- text-decoration: none;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- -khtml-user-select: none;
- user-select: none;
-
- -kthml-user-focus: normal;
- -moz-user-focus: normal;
- -moz-outline: 0 none;
- outline: 0 none;
- }
-
- .lr-tree-node a span {
- text-decoration: none;
- padding: 1px 3px 1px 2px;
- }
-
- .lr-tree-node a:hover {
- text-decoration: none;
- }
-
- .lr-tree-node .lr-tree-selected {
- background-color: #2F94EE !important;
- color: #fff;
- }
-
- .lr-tree-node .lr-tree-selected a span {
- color: #fff;
- }
-
- .lr-tree-node .lr-tree-selected i {
- color: #fff;
- }
-
- .lr-tree-node-el {
- position:relative;
- line-height: 25px;
- cursor: default;
- cursor: pointer;
- }
-
- .lr-tree-node-el:hover {
- background-color: #eee;
- }
-
- .lr-tree-loading {
- position: absolute;
- top: 3px;
- right: 5px;
- display:none;
- }
- .lr-tree-loading > img {
- height: 14px;
- width: 14px;
- }
-
|