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.
 
 
 
 
 

758 lines
24 KiB

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