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.
 
 
 
 
 

764 lines
24 KiB

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