ui.fancytree.css 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663
  1. /*!
  2. * Fancytree "Lion" skin.
  3. *
  4. * DON'T EDIT THE CSS FILE DIRECTLY, since it is automatically generated from
  5. * the LESS templates.
  6. */
  7. /*
  8. Lion colors:
  9. gray highlight bar: #D4D4D4
  10. blue highlight-bar and -border #3875D7
  11. */
  12. /*******************************************************************************
  13. * Common Styles for Fancytree Skins.
  14. *
  15. * This section is automatically generated from the `skin-common.less` template.
  16. ******************************************************************************/
  17. /*------------------------------------------------------------------------------
  18. * Helpers
  19. *----------------------------------------------------------------------------*/
  20. .ui-helper-hidden {
  21. display: none;
  22. }
  23. /*------------------------------------------------------------------------------
  24. * Container and UL / LI
  25. *----------------------------------------------------------------------------*/
  26. ul.fancytree-container {
  27. font-family: tahoma, arial, helvetica;
  28. font-size: 10pt;
  29. white-space: nowrap;
  30. padding: 3px;
  31. margin: 0;
  32. background-color: white;
  33. border: 1px dotted gray;
  34. min-height: 0%;
  35. position: relative;
  36. }
  37. ul.fancytree-container ul {
  38. padding: 0 0 0 16px;
  39. margin: 0;
  40. }
  41. ul.fancytree-container ul > li:before {
  42. content: none;
  43. }
  44. ul.fancytree-container li {
  45. list-style-image: none;
  46. list-style-position: outside;
  47. list-style-type: none;
  48. -moz-background-clip: border;
  49. -moz-background-inline-policy: continuous;
  50. -moz-background-origin: padding;
  51. background-attachment: scroll;
  52. background-color: transparent;
  53. background-position: 0px 0px;
  54. background-repeat: repeat-y;
  55. background-image: none;
  56. margin: 0;
  57. }
  58. ul.fancytree-container li.fancytree-lastsib {
  59. background-image: none;
  60. }
  61. .ui-fancytree-disabled ul.fancytree-container {
  62. opacity: 0.5;
  63. background-color: silver;
  64. }
  65. ul.fancytree-connectors.fancytree-container li {
  66. background-image: url("../skin-lion/vline.gif");
  67. background-position: 0 0;
  68. }
  69. ul.fancytree-container li.fancytree-lastsib,
  70. ul.fancytree-no-connector > li {
  71. background-image: none;
  72. }
  73. li.fancytree-animating {
  74. position: relative;
  75. }
  76. /*------------------------------------------------------------------------------
  77. * Common icon definitions
  78. *----------------------------------------------------------------------------*/
  79. span.fancytree-empty,
  80. span.fancytree-vline,
  81. span.fancytree-expander,
  82. span.fancytree-icon,
  83. span.fancytree-checkbox,
  84. span.fancytree-drag-helper-img,
  85. #fancytree-drop-marker {
  86. width: 16px;
  87. height: 16px;
  88. display: inline-block;
  89. vertical-align: top;
  90. background-repeat: no-repeat;
  91. background-position: left;
  92. background-image: url("../skin-lion/icons.gif");
  93. background-position: 0px 0px;
  94. }
  95. span.fancytree-icon,
  96. span.fancytree-checkbox,
  97. span.fancytree-expander,
  98. span.fancytree-custom-icon {
  99. margin-top: 0px;
  100. }
  101. /* Used by icon option: */
  102. span.fancytree-custom-icon {
  103. width: 16px;
  104. height: 16px;
  105. display: inline-block;
  106. margin-left: 3px;
  107. background-position: 0px 0px;
  108. }
  109. /* Used by 'icon' node option: */
  110. img.fancytree-icon {
  111. width: 16px;
  112. height: 16px;
  113. margin-left: 3px;
  114. margin-top: 0px;
  115. vertical-align: top;
  116. border-style: none;
  117. }
  118. /*------------------------------------------------------------------------------
  119. * Expander icon
  120. *
  121. * Note: IE6 doesn't correctly evaluate multiples class names,
  122. * so we create combined class names that can be used in the CSS.
  123. *
  124. * Prefix: fancytree-exp-
  125. * 1st character: 'e': expanded, 'c': collapsed, 'n': no children
  126. * 2nd character (optional): 'd': lazy (Delayed)
  127. * 3rd character (optional): 'l': Last sibling
  128. *----------------------------------------------------------------------------*/
  129. span.fancytree-expander {
  130. cursor: pointer;
  131. }
  132. .fancytree-exp-n span.fancytree-expander,
  133. .fancytree-exp-nl span.fancytree-expander {
  134. background-image: none;
  135. cursor: default;
  136. }
  137. .fancytree-connectors .fancytree-exp-n span.fancytree-expander,
  138. .fancytree-connectors .fancytree-exp-nl span.fancytree-expander {
  139. background-image: url("../skin-lion/icons.gif");
  140. margin-top: 0;
  141. }
  142. .fancytree-connectors .fancytree-exp-n span.fancytree-expander,
  143. .fancytree-connectors .fancytree-exp-n span.fancytree-expander:hover {
  144. background-position: 0px -64px;
  145. }
  146. .fancytree-connectors .fancytree-exp-nl span.fancytree-expander,
  147. .fancytree-connectors .fancytree-exp-nl span.fancytree-expander:hover {
  148. background-position: -16px -64px;
  149. }
  150. .fancytree-exp-c span.fancytree-expander {
  151. background-position: 0px -80px;
  152. }
  153. .fancytree-exp-c span.fancytree-expander:hover {
  154. background-position: -16px -80px;
  155. }
  156. .fancytree-exp-cl span.fancytree-expander {
  157. background-position: 0px -96px;
  158. }
  159. .fancytree-exp-cl span.fancytree-expander:hover {
  160. background-position: -16px -96px;
  161. }
  162. .fancytree-exp-cd span.fancytree-expander {
  163. background-position: -64px -80px;
  164. }
  165. .fancytree-exp-cd span.fancytree-expander:hover {
  166. background-position: -80px -80px;
  167. }
  168. .fancytree-exp-cdl span.fancytree-expander {
  169. background-position: -64px -96px;
  170. }
  171. .fancytree-exp-cdl span.fancytree-expander:hover {
  172. background-position: -80px -96px;
  173. }
  174. .fancytree-exp-e span.fancytree-expander,
  175. .fancytree-exp-ed span.fancytree-expander {
  176. background-position: -32px -80px;
  177. }
  178. .fancytree-exp-e span.fancytree-expander:hover,
  179. .fancytree-exp-ed span.fancytree-expander:hover {
  180. background-position: -48px -80px;
  181. }
  182. .fancytree-exp-el span.fancytree-expander,
  183. .fancytree-exp-edl span.fancytree-expander {
  184. background-position: -32px -96px;
  185. }
  186. .fancytree-exp-el span.fancytree-expander:hover,
  187. .fancytree-exp-edl span.fancytree-expander:hover {
  188. background-position: -48px -96px;
  189. }
  190. /* Fade out expanders, when container is not hovered or active */
  191. .fancytree-fade-expander span.fancytree-expander {
  192. transition: opacity 1.5s;
  193. opacity: 0;
  194. }
  195. .fancytree-fade-expander:hover span.fancytree-expander,
  196. .fancytree-fade-expander.fancytree-treefocus span.fancytree-expander,
  197. .fancytree-fade-expander .fancytree-treefocus span.fancytree-expander,
  198. .fancytree-fade-expander [class*='fancytree-statusnode-'] span.fancytree-expander {
  199. transition: opacity 0.6s;
  200. opacity: 1;
  201. }
  202. /*------------------------------------------------------------------------------
  203. * Checkbox icon
  204. *----------------------------------------------------------------------------*/
  205. span.fancytree-checkbox {
  206. margin-left: 3px;
  207. background-position: 0px -32px;
  208. }
  209. span.fancytree-checkbox:hover {
  210. background-position: -16px -32px;
  211. }
  212. span.fancytree-checkbox.fancytree-radio {
  213. background-position: 0px -48px;
  214. }
  215. span.fancytree-checkbox.fancytree-radio:hover {
  216. background-position: -16px -48px;
  217. }
  218. .fancytree-partsel span.fancytree-checkbox {
  219. background-position: -64px -32px;
  220. }
  221. .fancytree-partsel span.fancytree-checkbox:hover {
  222. background-position: -80px -32px;
  223. }
  224. .fancytree-partsel span.fancytree-checkbox.fancytree-radio {
  225. background-position: -64px -48px;
  226. }
  227. .fancytree-partsel span.fancytree-checkbox.fancytree-radio:hover {
  228. background-position: -80px -48px;
  229. }
  230. .fancytree-selected span.fancytree-checkbox {
  231. background-position: -32px -32px;
  232. }
  233. .fancytree-selected span.fancytree-checkbox:hover {
  234. background-position: -48px -32px;
  235. }
  236. .fancytree-selected span.fancytree-checkbox.fancytree-radio {
  237. background-position: -32px -48px;
  238. }
  239. .fancytree-selected span.fancytree-checkbox.fancytree-radio:hover {
  240. background-position: -48px -48px;
  241. }
  242. .fancytree-unselectable span.fancytree-checkbox {
  243. opacity: 0.4;
  244. filter: alpha(opacity=40);
  245. }
  246. .fancytree-unselectable span.fancytree-checkbox:hover {
  247. background-position: 0px -32px;
  248. }
  249. .fancytree-unselectable.fancytree-partsel span.fancytree-checkbox:hover {
  250. background-position: -64px -32px;
  251. }
  252. .fancytree-unselectable.fancytree-selected span.fancytree-checkbox:hover {
  253. background-position: -32px -32px;
  254. }
  255. /*------------------------------------------------------------------------------
  256. * Node type icon
  257. * Note: IE6 doesn't correctly evaluate multiples class names,
  258. * so we create combined class names that can be used in the CSS.
  259. *
  260. * Prefix: fancytree-ico-
  261. * 1st character: 'e': expanded, 'c': collapsed
  262. * 2nd character (optional): 'f': folder
  263. *----------------------------------------------------------------------------*/
  264. span.fancytree-icon {
  265. margin-left: 3px;
  266. background-position: 0px 0px;
  267. }
  268. /* Documents */
  269. .fancytree-ico-c span.fancytree-icon:hover {
  270. background-position: -16px 0px;
  271. }
  272. .fancytree-has-children.fancytree-ico-c span.fancytree-icon {
  273. background-position: -32px 0px;
  274. }
  275. .fancytree-has-children.fancytree-ico-c span.fancytree-icon:hover {
  276. background-position: -48px 0px;
  277. }
  278. .fancytree-ico-e span.fancytree-icon {
  279. background-position: -64px 0px;
  280. }
  281. .fancytree-ico-e span.fancytree-icon:hover {
  282. background-position: -80px 0px;
  283. }
  284. /* Folders */
  285. .fancytree-ico-cf span.fancytree-icon {
  286. background-position: 0px -16px;
  287. }
  288. .fancytree-ico-cf span.fancytree-icon:hover {
  289. background-position: -16px -16px;
  290. }
  291. .fancytree-has-children.fancytree-ico-cf span.fancytree-icon {
  292. background-position: -32px -16px;
  293. }
  294. .fancytree-has-children.fancytree-ico-cf span.fancytree-icon:hover {
  295. background-position: -48px -16px;
  296. }
  297. .fancytree-ico-ef span.fancytree-icon {
  298. background-position: -64px -16px;
  299. }
  300. .fancytree-ico-ef span.fancytree-icon:hover {
  301. background-position: -80px -16px;
  302. }
  303. .fancytree-loading span.fancytree-expander,
  304. .fancytree-loading span.fancytree-expander:hover,
  305. .fancytree-statusnode-loading span.fancytree-icon,
  306. .fancytree-statusnode-loading span.fancytree-icon:hover {
  307. background-image: url("../skin-lion/loading.gif");
  308. background-position: 0px 0px;
  309. }
  310. /* Status node icons */
  311. .fancytree-statusnode-error span.fancytree-icon,
  312. .fancytree-statusnode-error span.fancytree-icon:hover {
  313. background-position: 0px -112px;
  314. }
  315. /*------------------------------------------------------------------------------
  316. * Node titles and highlighting
  317. *----------------------------------------------------------------------------*/
  318. span.fancytree-node {
  319. /* See #117 */
  320. display: inherit;
  321. width: 100%;
  322. margin-top: 1px;
  323. min-height: 16px;
  324. }
  325. span.fancytree-title {
  326. color: black;
  327. cursor: pointer;
  328. display: inline-block;
  329. vertical-align: top;
  330. min-height: 16px;
  331. padding: 0 3px 0 3px;
  332. margin: 0px 0 0 3px;
  333. border: 1px solid transparent;
  334. -webkit-border-radius: 0px;
  335. -moz-border-radius: 0px;
  336. -ms-border-radius: 0px;
  337. -o-border-radius: 0px;
  338. border-radius: 0px;
  339. }
  340. span.fancytree-node.fancytree-error span.fancytree-title {
  341. color: red;
  342. }
  343. /*------------------------------------------------------------------------------
  344. * Drag'n'drop support
  345. *----------------------------------------------------------------------------*/
  346. div.fancytree-drag-helper span.fancytree-childcounter,
  347. div.fancytree-drag-helper span.fancytree-dnd-modifier {
  348. display: inline-block;
  349. color: #fff;
  350. background: #337ab7;
  351. border: 1px solid gray;
  352. min-width: 10px;
  353. height: 10px;
  354. line-height: 1;
  355. vertical-align: baseline;
  356. border-radius: 10px;
  357. padding: 2px;
  358. text-align: center;
  359. font-size: 9px;
  360. }
  361. div.fancytree-drag-helper span.fancytree-childcounter {
  362. position: absolute;
  363. top: -6px;
  364. right: -6px;
  365. }
  366. div.fancytree-drag-helper span.fancytree-dnd-modifier {
  367. background: #5cb85c;
  368. border: none;
  369. font-weight: bolder;
  370. }
  371. div.fancytree-drag-helper.fancytree-drop-accept span.fancytree-drag-helper-img {
  372. background-position: -32px -112px;
  373. }
  374. div.fancytree-drag-helper.fancytree-drop-reject span.fancytree-drag-helper-img {
  375. background-position: -16px -112px;
  376. }
  377. /*** Drop marker icon *********************************************************/
  378. #fancytree-drop-marker {
  379. width: 32px;
  380. position: absolute;
  381. background-position: 0px -128px;
  382. margin: 0;
  383. }
  384. #fancytree-drop-marker.fancytree-drop-after,
  385. #fancytree-drop-marker.fancytree-drop-before {
  386. width: 64px;
  387. background-position: 0px -144px;
  388. }
  389. #fancytree-drop-marker.fancytree-drop-copy {
  390. background-position: -64px -128px;
  391. }
  392. #fancytree-drop-marker.fancytree-drop-move {
  393. background-position: -32px -128px;
  394. }
  395. /*** Source node while dragging ***********************************************/
  396. span.fancytree-drag-source.fancytree-drag-remove {
  397. opacity: 0.15;
  398. }
  399. /*** Target node while dragging cursor is over it *****************************/
  400. /*------------------------------------------------------------------------------
  401. * 'rtl' option
  402. *----------------------------------------------------------------------------*/
  403. .fancytree-container.fancytree-rtl .fancytree-title {
  404. /*unicode-bidi: bidi-override;*/
  405. /* optional: reverse title letters */
  406. }
  407. .fancytree-container.fancytree-rtl span.fancytree-connector,
  408. .fancytree-container.fancytree-rtl span.fancytree-expander,
  409. .fancytree-container.fancytree-rtl span.fancytree-icon,
  410. .fancytree-container.fancytree-rtl span.fancytree-drag-helper-img,
  411. .fancytree-container.fancytree-rtl #fancytree-drop-marker {
  412. background-image: url("../skin-lion/icons-rtl.gif");
  413. }
  414. .fancytree-container.fancytree-rtl .fancytree-exp-n span.fancytree-expander,
  415. .fancytree-container.fancytree-rtl .fancytree-exp-nl span.fancytree-expander {
  416. background-image: none;
  417. }
  418. .fancytree-container.fancytree-rtl.fancytree-connectors .fancytree-exp-n span.fancytree-expander,
  419. .fancytree-container.fancytree-rtl.fancytree-connectors .fancytree-exp-nl span.fancytree-expander {
  420. background-image: url("../skin-lion/icons-rtl.gif");
  421. }
  422. ul.fancytree-container.fancytree-rtl ul {
  423. padding: 0 16px 0 0;
  424. }
  425. ul.fancytree-container.fancytree-rtl.fancytree-connectors li {
  426. background-position: right 0;
  427. background-image: url("../skin-lion/vline-rtl.gif");
  428. }
  429. ul.fancytree-container.fancytree-rtl li.fancytree-lastsib,
  430. ul.fancytree-container.fancytree-rtl.fancytree-no-connector > li {
  431. background-image: none;
  432. }
  433. /*------------------------------------------------------------------------------
  434. * 'table' extension
  435. *----------------------------------------------------------------------------*/
  436. table.fancytree-ext-table {
  437. border-collapse: collapse;
  438. }
  439. table.fancytree-ext-table span.fancytree-node {
  440. display: inline-block;
  441. box-sizing: border-box;
  442. }
  443. /*------------------------------------------------------------------------------
  444. * 'columnview' extension
  445. *----------------------------------------------------------------------------*/
  446. table.fancytree-ext-columnview tbody tr td {
  447. position: relative;
  448. border: 1px solid gray;
  449. vertical-align: top;
  450. overflow: auto;
  451. }
  452. table.fancytree-ext-columnview tbody tr td > ul {
  453. padding: 0;
  454. }
  455. table.fancytree-ext-columnview tbody tr td > ul li {
  456. list-style-image: none;
  457. list-style-position: outside;
  458. list-style-type: none;
  459. -moz-background-clip: border;
  460. -moz-background-inline-policy: continuous;
  461. -moz-background-origin: padding;
  462. background-attachment: scroll;
  463. background-color: transparent;
  464. background-position: 0px 0px;
  465. background-repeat: repeat-y;
  466. background-image: none;
  467. /* no v-lines */
  468. margin: 0;
  469. }
  470. table.fancytree-ext-columnview span.fancytree-node {
  471. position: relative;
  472. /* allow positioning of embedded spans */
  473. display: inline-block;
  474. }
  475. table.fancytree-ext-columnview span.fancytree-node.fancytree-expanded {
  476. background-color: #CBE8F6;
  477. }
  478. table.fancytree-ext-columnview .fancytree-has-children span.fancytree-cv-right {
  479. position: absolute;
  480. right: 3px;
  481. background-position: 0px -80px;
  482. }
  483. table.fancytree-ext-columnview .fancytree-has-children span.fancytree-cv-right:hover {
  484. background-position: -16px -80px;
  485. }
  486. /*------------------------------------------------------------------------------
  487. * 'filter' extension
  488. *----------------------------------------------------------------------------*/
  489. .fancytree-ext-filter-dimm span.fancytree-node span.fancytree-title {
  490. color: silver;
  491. font-weight: lighter;
  492. }
  493. .fancytree-ext-filter-dimm tr.fancytree-submatch span.fancytree-title,
  494. .fancytree-ext-filter-dimm span.fancytree-node.fancytree-submatch span.fancytree-title {
  495. color: black;
  496. font-weight: normal;
  497. }
  498. .fancytree-ext-filter-dimm tr.fancytree-match span.fancytree-title,
  499. .fancytree-ext-filter-dimm span.fancytree-node.fancytree-match span.fancytree-title {
  500. color: black;
  501. font-weight: bold;
  502. }
  503. .fancytree-ext-filter-hide tr.fancytree-hide,
  504. .fancytree-ext-filter-hide span.fancytree-node.fancytree-hide {
  505. display: none;
  506. }
  507. .fancytree-ext-filter-hide tr.fancytree-submatch span.fancytree-title,
  508. .fancytree-ext-filter-hide span.fancytree-node.fancytree-submatch span.fancytree-title {
  509. color: silver;
  510. font-weight: lighter;
  511. }
  512. .fancytree-ext-filter-hide tr.fancytree-match span.fancytree-title,
  513. .fancytree-ext-filter-hide span.fancytree-node.fancytree-match span.fancytree-title {
  514. color: black;
  515. font-weight: normal;
  516. }
  517. /* Hide expanders if all child nodes are hidden by filter */
  518. .fancytree-ext-filter-hide-expanders tr.fancytree-match span.fancytree-expander,
  519. .fancytree-ext-filter-hide-expanders span.fancytree-node.fancytree-match span.fancytree-expander {
  520. visibility: hidden;
  521. }
  522. .fancytree-ext-filter-hide-expanders tr.fancytree-submatch span.fancytree-expander,
  523. .fancytree-ext-filter-hide-expanders span.fancytree-node.fancytree-submatch span.fancytree-expander {
  524. visibility: visible;
  525. }
  526. .fancytree-ext-childcounter span.fancytree-icon,
  527. .fancytree-ext-filter span.fancytree-icon {
  528. position: relative;
  529. }
  530. .fancytree-ext-childcounter span.fancytree-childcounter,
  531. .fancytree-ext-filter span.fancytree-childcounter {
  532. color: #fff;
  533. background: #777;
  534. border: 1px solid gray;
  535. position: absolute;
  536. top: -6px;
  537. right: -6px;
  538. min-width: 10px;
  539. height: 10px;
  540. line-height: 1;
  541. vertical-align: baseline;
  542. border-radius: 10px;
  543. padding: 2px;
  544. text-align: center;
  545. font-size: 9px;
  546. }
  547. /*------------------------------------------------------------------------------
  548. * 'wide' extension
  549. *----------------------------------------------------------------------------*/
  550. ul.fancytree-ext-wide {
  551. position: relative;
  552. min-width: 100%;
  553. z-index: 2;
  554. -webkit-box-sizing: border-box;
  555. -moz-box-sizing: border-box;
  556. box-sizing: border-box;
  557. }
  558. ul.fancytree-ext-wide span.fancytree-node > span {
  559. position: relative;
  560. z-index: 2;
  561. }
  562. ul.fancytree-ext-wide span.fancytree-node span.fancytree-title {
  563. position: absolute;
  564. z-index: 1;
  565. left: 0px;
  566. min-width: 100%;
  567. margin-left: 0;
  568. margin-right: 0;
  569. -webkit-box-sizing: border-box;
  570. -moz-box-sizing: border-box;
  571. box-sizing: border-box;
  572. }
  573. /*------------------------------------------------------------------------------
  574. * 'fixed' extension
  575. *----------------------------------------------------------------------------*/
  576. .fancytree-ext-fixed-wrapper .fancytree-ext-fixed-hidden {
  577. display: none;
  578. }
  579. .fancytree-ext-fixed-wrapper div.fancytree-ext-fixed-scroll-border-bottom {
  580. border-bottom: 3px solid rgba(0, 0, 0, 0.75);
  581. }
  582. .fancytree-ext-fixed-wrapper div.fancytree-ext-fixed-scroll-border-right {
  583. border-right: 3px solid rgba(0, 0, 0, 0.75);
  584. }
  585. .fancytree-ext-fixed-wrapper div.fancytree-ext-fixed-wrapper-tl {
  586. position: absolute;
  587. overflow: hidden;
  588. z-index: 3;
  589. top: 0px;
  590. left: 0px;
  591. }
  592. .fancytree-ext-fixed-wrapper div.fancytree-ext-fixed-wrapper-tr {
  593. position: absolute;
  594. overflow: hidden;
  595. z-index: 2;
  596. top: 0px;
  597. }
  598. .fancytree-ext-fixed-wrapper div.fancytree-ext-fixed-wrapper-bl {
  599. position: absolute;
  600. overflow: hidden;
  601. z-index: 2;
  602. left: 0px;
  603. }
  604. .fancytree-ext-fixed-wrapper div.fancytree-ext-fixed-wrapper-br {
  605. position: absolute;
  606. overflow: scroll;
  607. z-index: 1;
  608. }
  609. /*******************************************************************************
  610. * Styles specific to this skin.
  611. *
  612. * This section is automatically generated from the `ui-fancytree.less` template.
  613. ******************************************************************************/
  614. /*******************************************************************************
  615. * Node titles
  616. */
  617. span.fancytree-title {
  618. border: 1px solid transparent;
  619. border-radius: 0;
  620. }
  621. span.fancytree-focused span.fancytree-title {
  622. outline: 1px dotted black;
  623. }
  624. span.fancytree-selected span.fancytree-title,
  625. span.fancytree-active span.fancytree-title {
  626. background-color: #D4D4D4;
  627. }
  628. span.fancytree-selected span.fancytree-title {
  629. font-style: italic;
  630. }
  631. .fancytree-treefocus span.fancytree-selected span.fancytree-title,
  632. .fancytree-treefocus span.fancytree-active span.fancytree-title {
  633. color: white;
  634. background-color: #3875D7;
  635. }
  636. /*******************************************************************************
  637. * 'table' extension
  638. */
  639. table.fancytree-ext-table {
  640. border-collapse: collapse;
  641. }
  642. table.fancytree-ext-table tbody tr.fancytree-focused {
  643. background-color: #99DEFD;
  644. }
  645. table.fancytree-ext-table tbody tr.fancytree-active {
  646. background-color: royalblue;
  647. }
  648. table.fancytree-ext-table tbody tr.fancytree-selected {
  649. background-color: #99DEFD;
  650. }
  651. /*******************************************************************************
  652. * 'columnview' extension
  653. */
  654. table.fancytree-ext-columnview tbody tr td {
  655. border: 1px solid gray;
  656. }
  657. table.fancytree-ext-columnview span.fancytree-node.fancytree-expanded {
  658. background-color: #ccc;
  659. }
  660. table.fancytree-ext-columnview span.fancytree-node.fancytree-active {
  661. background-color: royalblue;
  662. }