style.css 32 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141
  1. /* jsTree default theme */
  2. .jstree-node,
  3. .jstree-children,
  4. .jstree-container-ul {
  5. display: block;
  6. margin: 0;
  7. padding: 0;
  8. list-style-type: none;
  9. list-style-image: none;
  10. }
  11. .jstree-node {
  12. white-space: nowrap;
  13. }
  14. .jstree-anchor {
  15. display: inline-block;
  16. color: #333;
  17. white-space: nowrap;
  18. padding: 0 4px 0 1px;
  19. margin: 0;
  20. vertical-align: top;
  21. }
  22. .jstree-anchor:focus {
  23. outline: 0;
  24. }
  25. .jstree-anchor,
  26. .jstree-anchor:link,
  27. .jstree-anchor:visited,
  28. .jstree-anchor:hover,
  29. .jstree-anchor:active {
  30. text-decoration: none;
  31. color: inherit;
  32. }
  33. .jstree-icon {
  34. display: inline-block;
  35. text-decoration: none;
  36. margin: 0;
  37. padding: 0;
  38. vertical-align: top;
  39. text-align: center;
  40. }
  41. .jstree-icon:empty {
  42. display: inline-block;
  43. text-decoration: none;
  44. margin: 0;
  45. padding: 0;
  46. vertical-align: top;
  47. text-align: center;
  48. }
  49. .jstree-ocl {
  50. cursor: pointer;
  51. }
  52. .jstree-leaf > .jstree-ocl {
  53. cursor: default;
  54. }
  55. .jstree .jstree-open > .jstree-children {
  56. display: block;
  57. }
  58. .jstree .jstree-closed > .jstree-children,
  59. .jstree .jstree-leaf > .jstree-children {
  60. display: none;
  61. }
  62. .jstree-anchor > .jstree-themeicon {
  63. margin-right: 2px;
  64. }
  65. .jstree-no-icons .jstree-themeicon,
  66. .jstree-anchor > .jstree-themeicon-hidden {
  67. display: none;
  68. }
  69. .jstree-rtl .jstree-anchor {
  70. padding: 0 1px 0 4px;
  71. }
  72. .jstree-rtl .jstree-anchor > .jstree-themeicon {
  73. margin-left: 2px;
  74. margin-right: 0;
  75. }
  76. .jstree-rtl .jstree-node {
  77. margin-left: 0;
  78. }
  79. .jstree-rtl .jstree-container-ul > .jstree-node {
  80. margin-right: 0;
  81. }
  82. .jstree-wholerow-ul {
  83. position: relative;
  84. display: inline-block;
  85. min-width: 100%;
  86. }
  87. .jstree-wholerow-ul .jstree-leaf > .jstree-ocl {
  88. cursor: pointer;
  89. }
  90. .jstree-wholerow-ul .jstree-anchor,
  91. .jstree-wholerow-ul .jstree-icon {
  92. position: relative;
  93. }
  94. .jstree-wholerow-ul .jstree-wholerow {
  95. width: 100%;
  96. cursor: pointer;
  97. position: absolute;
  98. left: 0;
  99. -webkit-user-select: none;
  100. -moz-user-select: none;
  101. -ms-user-select: none;
  102. user-select: none;
  103. }
  104. .vakata-context {
  105. display: none;
  106. }
  107. .vakata-context,
  108. .vakata-context ul {
  109. margin: 0;
  110. padding: 2px;
  111. position: absolute;
  112. background: #f5f5f5;
  113. border: 1px solid #979797;
  114. -moz-box-shadow: 5px 5px 4px -4px #666666;
  115. -webkit-box-shadow: 2px 2px 2px #999999;
  116. box-shadow: 2px 2px 2px #999999;
  117. }
  118. .vakata-context ul {
  119. list-style: none;
  120. left: 100%;
  121. margin-top: -2.7em;
  122. margin-left: -4px;
  123. }
  124. .vakata-context .vakata-context-right ul {
  125. left: auto;
  126. right: 100%;
  127. margin-left: auto;
  128. margin-right: -4px;
  129. }
  130. .vakata-context li {
  131. list-style: none;
  132. display: inline;
  133. }
  134. .vakata-context li > a {
  135. display: block;
  136. padding: 0 2em 0 2em;
  137. text-decoration: none;
  138. width: auto;
  139. color: black;
  140. white-space: nowrap;
  141. line-height: 2.4em;
  142. -moz-text-shadow: 1px 1px 0 white;
  143. -webkit-text-shadow: 1px 1px 0 white;
  144. text-shadow: 1px 1px 0 white;
  145. -moz-border-radius: 1px;
  146. -webkit-border-radius: 1px;
  147. border-radius: 1px;
  148. }
  149. .vakata-context li > a:hover {
  150. position: relative;
  151. background-color: #e8eff7;
  152. -moz-box-shadow: 0 0 2px #0a6aa1;
  153. -webkit-box-shadow: 0 0 2px #0a6aa1;
  154. box-shadow: 0 0 2px #0a6aa1;
  155. }
  156. .vakata-context li > a.vakata-context-parent {
  157. background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAIORI4JlrqN1oMSnmmZDQUAOw==");
  158. background-position: right center;
  159. background-repeat: no-repeat;
  160. }
  161. .vakata-context li > a:focus {
  162. outline: 0;
  163. }
  164. .vakata-context .vakata-context-hover > a {
  165. position: relative;
  166. background-color: #e8eff7;
  167. -moz-box-shadow: 0 0 2px #0a6aa1;
  168. -webkit-box-shadow: 0 0 2px #0a6aa1;
  169. box-shadow: 0 0 2px #0a6aa1;
  170. }
  171. .vakata-context .vakata-context-separator > a,
  172. .vakata-context .vakata-context-separator > a:hover {
  173. background: white;
  174. border: 0;
  175. border-top: 1px solid #e2e3e3;
  176. height: 1px;
  177. min-height: 1px;
  178. max-height: 1px;
  179. padding: 0;
  180. margin: 0 0 0 2.4em;
  181. border-left: 1px solid #e0e0e0;
  182. -moz-text-shadow: 0 0 0 transparent;
  183. -webkit-text-shadow: 0 0 0 transparent;
  184. text-shadow: 0 0 0 transparent;
  185. -moz-box-shadow: 0 0 0 transparent;
  186. -webkit-box-shadow: 0 0 0 transparent;
  187. box-shadow: 0 0 0 transparent;
  188. -moz-border-radius: 0;
  189. -webkit-border-radius: 0;
  190. border-radius: 0;
  191. }
  192. .vakata-context .vakata-contextmenu-disabled a,
  193. .vakata-context .vakata-contextmenu-disabled a:hover {
  194. color: silver;
  195. background-color: transparent;
  196. border: 0;
  197. box-shadow: 0 0 0;
  198. }
  199. .vakata-context li > a > i {
  200. text-decoration: none;
  201. display: inline-block;
  202. width: 2.4em;
  203. height: 2.4em;
  204. background: transparent;
  205. margin: 0 0 0 -2em;
  206. vertical-align: top;
  207. text-align: center;
  208. line-height: 2.4em;
  209. }
  210. .vakata-context li > a > i:empty {
  211. width: 2.4em;
  212. line-height: 2.4em;
  213. }
  214. .vakata-context li > a .vakata-contextmenu-sep {
  215. display: inline-block;
  216. width: 1px;
  217. height: 2.4em;
  218. background: white;
  219. margin: 0 0.5em 0 0;
  220. border-left: 1px solid #e2e3e3;
  221. }
  222. .vakata-context .vakata-contextmenu-shortcut {
  223. font-size: 0.8em;
  224. color: silver;
  225. opacity: 0.5;
  226. display: none;
  227. }
  228. .vakata-context-rtl ul {
  229. left: auto;
  230. right: 100%;
  231. margin-left: auto;
  232. margin-right: -4px;
  233. }
  234. .vakata-context-rtl li > a.vakata-context-parent {
  235. background-image: url("data:image/gif;base64,R0lGODlhCwAHAIAAACgoKP///yH5BAEAAAEALAAAAAALAAcAAAINjI+AC7rWHIsPtmoxLAA7");
  236. background-position: left center;
  237. background-repeat: no-repeat;
  238. }
  239. .vakata-context-rtl .vakata-context-separator > a {
  240. margin: 0 2.4em 0 0;
  241. border-left: 0;
  242. border-right: 1px solid #e2e3e3;
  243. }
  244. .vakata-context-rtl .vakata-context-left ul {
  245. right: auto;
  246. left: 100%;
  247. margin-left: -4px;
  248. margin-right: auto;
  249. }
  250. .vakata-context-rtl li > a > i {
  251. margin: 0 -2em 0 0;
  252. }
  253. .vakata-context-rtl li > a .vakata-contextmenu-sep {
  254. margin: 0 0 0 0.5em;
  255. border-left-color: white;
  256. background: #e2e3e3;
  257. }
  258. #jstree-marker {
  259. position: absolute;
  260. top: 0;
  261. left: 0;
  262. margin: -5px 0 0 0;
  263. padding: 0;
  264. border-right: 0;
  265. border-top: 5px solid transparent;
  266. border-bottom: 5px solid transparent;
  267. border-left: 5px solid;
  268. width: 0;
  269. height: 0;
  270. font-size: 0;
  271. line-height: 0;
  272. }
  273. #jstree-dnd {
  274. line-height: 16px;
  275. margin: 0;
  276. padding: 4px;
  277. }
  278. #jstree-dnd .jstree-icon,
  279. #jstree-dnd .jstree-copy {
  280. display: inline-block;
  281. text-decoration: none;
  282. margin: 0 2px 0 0;
  283. padding: 0;
  284. width: 16px;
  285. height: 16px;
  286. }
  287. #jstree-dnd .jstree-ok {
  288. background: green;
  289. }
  290. #jstree-dnd .jstree-er {
  291. background: red;
  292. }
  293. #jstree-dnd .jstree-copy {
  294. margin: 0 2px 0 2px;
  295. }
  296. .jstree-proton .jstree-node,
  297. .jstree-proton .jstree-icon {
  298. background-repeat: no-repeat;
  299. background-color: transparent;
  300. }
  301. .jstree-proton .jstree-anchor,
  302. .jstree-proton .jstree-wholerow {
  303. transition: background-color 0.15s, box-shadow 0.15s, color 0.15s;
  304. }
  305. .jstree-proton .jstree-hovered {
  306. background: #76b6ec;
  307. color: #ffffff;
  308. border-radius: 3px;
  309. box-shadow: inset 0 0 1px #76b6ec;
  310. }
  311. .jstree-proton .jstree-clicked {
  312. background: #3392e3;
  313. color: #ffffff;
  314. border-radius: 3px;
  315. box-shadow: inset 0 0 1px #3392e3;
  316. }
  317. .jstree-proton .jstree-no-icons .jstree-anchor > .jstree-themeicon {
  318. display: none;
  319. }
  320. .jstree-proton .jstree-disabled {
  321. background: transparent;
  322. color: #666666;
  323. }
  324. .jstree-proton .jstree-disabled.jstree-hovered {
  325. background: transparent;
  326. box-shadow: none;
  327. }
  328. .jstree-proton .jstree-disabled.jstree-clicked {
  329. background: #efefef;
  330. }
  331. .jstree-proton .jstree-disabled > .jstree-icon {
  332. opacity: 0.8;
  333. filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'jstree-grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#jstree-grayscale");
  334. /* Firefox 10+ *
  335. filter: gray;
  336. /* IE6-9 */
  337. -webkit-filter: grayscale(100%);
  338. /* Chrome 19+ & Safari 6+ */
  339. }
  340. .jstree-proton .jstree-search {
  341. font-style: italic;
  342. color: #8b0000;
  343. font-weight: bold;
  344. }
  345. .jstree-proton .jstree-no-checkboxes .jstree-checkbox {
  346. display: none !important;
  347. }
  348. .jstree-proton.jstree-checkbox-no-clicked .jstree-clicked {
  349. background: transparent;
  350. color: inherit;
  351. box-shadow: none;
  352. }
  353. .jstree-proton.jstree-checkbox-no-clicked .jstree-clicked.jstree-hovered {
  354. background: #76b6ec;
  355. color: #ffffff;
  356. }
  357. .jstree-proton.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked {
  358. background: transparent;
  359. color: inherit;
  360. }
  361. .jstree-proton.jstree-checkbox-no-clicked > .jstree-wholerow-ul .jstree-wholerow-clicked.jstree-wholerow-hovered {
  362. background: #76b6ec;
  363. color: #ffffff;
  364. }
  365. .jstree-proton > .jstree-striped {
  366. background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAAkCAMAAAB/qqA+AAAABlBMVEUAAAAAAAClZ7nPAAAAAnRSTlMNAMM9s3UAAAAXSURBVHjajcEBAQAAAIKg/H/aCQZ70AUBjAATb6YPDgAAAABJRU5ErkJggg==") left top repeat;
  367. }
  368. .jstree-proton > .jstree-wholerow-ul .jstree-hovered,
  369. .jstree-proton > .jstree-wholerow-ul .jstree-clicked {
  370. background: transparent;
  371. box-shadow: none;
  372. border-radius: 0;
  373. }
  374. .jstree-proton .jstree-wholerow {
  375. -moz-box-sizing: border-box;
  376. -webkit-box-sizing: border-box;
  377. box-sizing: border-box;
  378. }
  379. .jstree-proton .jstree-wholerow-hovered {
  380. background: #76b6ec;
  381. }
  382. .jstree-proton .jstree-wholerow-clicked {
  383. background: #3392e3;
  384. background: -moz-linear-gradient(top, #3392e3 0%, #3392e3 100%);
  385. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3392e3), color-stop(100%, #3392e3));
  386. background: -webkit-linear-gradient(top, #3392e3 0%, #3392e3 100%);
  387. background: -o-linear-gradient(top, #3392e3 0%, #3392e3 100%);
  388. background: -ms-linear-gradient(top, #3392e3 0%, #3392e3 100%);
  389. background: linear-gradient(to bottom, #3392e3 0%, #3392e3 100%);
  390. /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='@color1', endColorstr='@color2',GradientType=0 );*/
  391. }
  392. .jstree-proton .jstree-node {
  393. min-height: 22px;
  394. line-height: 22px;
  395. margin-left: 22px;
  396. min-width: 22px;
  397. }
  398. .jstree-proton .jstree-anchor {
  399. line-height: 22px;
  400. margin: 1px 0 2px;
  401. height: 22px;
  402. }
  403. .jstree-proton .jstree-icon {
  404. width: 22px;
  405. height: 22px;
  406. line-height: 22px;
  407. }
  408. .jstree-proton .jstree-icon:empty {
  409. width: 22px;
  410. height: 22px;
  411. line-height: 22px;
  412. }
  413. .jstree-proton.jstree-rtl .jstree-node {
  414. margin-right: 22px;
  415. }
  416. .jstree-proton .jstree-wholerow {
  417. height: 22px;
  418. }
  419. .jstree-proton .jstree-node,
  420. .jstree-proton .jstree-icon {
  421. background-size: 320px 96px;
  422. background-image: url("32px.png");
  423. }
  424. .jstree-proton .jstree-node {
  425. background-position: -293px -5px;
  426. background-repeat: repeat-y;
  427. }
  428. .jstree-proton .jstree-last {
  429. background: transparent;
  430. }
  431. .jstree-proton .jstree-open > .jstree-ocl {
  432. background-position: -133px -5px;
  433. }
  434. .jstree-proton .jstree-closed > .jstree-ocl {
  435. background-position: -101px -5px;
  436. }
  437. .jstree-proton .jstree-leaf > .jstree-ocl {
  438. background-position: -69px -5px;
  439. }
  440. .jstree-proton .jstree-themeicon {
  441. background-position: -261px -7px;
  442. }
  443. .jstree-proton > .jstree-no-dots .jstree-node,
  444. .jstree-proton > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  445. background: transparent;
  446. }
  447. .jstree-proton > .jstree-no-dots .jstree-open > .jstree-ocl {
  448. background-position: -37px -5px;
  449. }
  450. .jstree-proton > .jstree-no-dots .jstree-closed > .jstree-ocl {
  451. background-position: -5px -5px;
  452. }
  453. .jstree-proton .jstree-disabled {
  454. background: transparent;
  455. }
  456. .jstree-proton .jstree-disabled.jstree-hovered {
  457. background: transparent;
  458. }
  459. .jstree-proton .jstree-disabled.jstree-clicked {
  460. background: #efefef;
  461. }
  462. .jstree-proton .jstree-checkbox {
  463. background-position: -165px -5px;
  464. }
  465. .jstree-proton .jstree-checkbox:hover {
  466. background-position: -165px -37px;
  467. }
  468. .jstree-proton.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
  469. .jstree-proton .jstree-checked > .jstree-checkbox {
  470. background-position: -229px -5px;
  471. }
  472. .jstree-proton.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
  473. .jstree-proton .jstree-checked > .jstree-checkbox:hover {
  474. background-position: -229px -37px;
  475. }
  476. .jstree-proton .jstree-anchor > .jstree-undetermined {
  477. background-position: -197px -5px;
  478. }
  479. .jstree-proton .jstree-anchor > .jstree-undetermined:hover {
  480. background-position: -197px -37px;
  481. }
  482. .jstree-proton > .jstree-striped {
  483. background-size: auto 44px;
  484. }
  485. .jstree-proton.jstree-rtl .jstree-node {
  486. background-size: 320px 96px;
  487. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
  488. background-position: 100% 1px;
  489. background-repeat: repeat-y;
  490. }
  491. .jstree-proton.jstree-rtl .jstree-last {
  492. background: transparent;
  493. }
  494. .jstree-proton.jstree-rtl .jstree-open > .jstree-ocl {
  495. background-position: -133px -37px;
  496. }
  497. .jstree-proton.jstree-rtl .jstree-closed > .jstree-ocl {
  498. background-position: -101px -37px;
  499. }
  500. .jstree-proton.jstree-rtl .jstree-leaf > .jstree-ocl {
  501. background-position: -69px -37px;
  502. }
  503. .jstree-proton.jstree-rtl > .jstree-no-dots .jstree-node,
  504. .jstree-proton.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  505. background: transparent;
  506. }
  507. .jstree-proton.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
  508. background-position: -37px -37px;
  509. }
  510. .jstree-proton.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
  511. background-position: -5px -37px;
  512. }
  513. .jstree-proton .jstree-themeicon-custom {
  514. background-color: transparent;
  515. background-size: 320px 96px;
  516. background-image: none;
  517. background-position: 0 0;
  518. }
  519. .jstree-proton > .jstree-container-ul .jstree-loading > .jstree-ocl {
  520. background: url("throbber.gif") center center no-repeat;
  521. }
  522. .jstree-proton .jstree-file {
  523. background: url("32px.png") -101px -69px no-repeat;
  524. }
  525. .jstree-proton .jstree-folder {
  526. background: url("32px.png") -261px -5px no-repeat;
  527. }
  528. .jstree-proton > .jstree-container-ul > .jstree-node {
  529. margin-left: 0;
  530. margin-right: 0;
  531. }
  532. #jstree-dnd.jstree-proton {
  533. line-height: 22px;
  534. padding: 0 4px;
  535. }
  536. #jstree-dnd.jstree-proton .jstree-ok,
  537. #jstree-dnd.jstree-proton .jstree-er {
  538. background-size: 320px 96px;
  539. background-image: url("32px.png");
  540. background-repeat: no-repeat;
  541. background-color: transparent;
  542. }
  543. #jstree-dnd.jstree-proton i {
  544. background: transparent;
  545. width: 22px;
  546. height: 22px;
  547. line-height: 22px;
  548. }
  549. #jstree-dnd.jstree-proton .jstree-ok {
  550. background-position: -5px -69px;
  551. }
  552. #jstree-dnd.jstree-proton .jstree-er {
  553. background-position: -37px -69px;
  554. }
  555. .jstree-proton.jstree-rtl .jstree-node {
  556. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
  557. }
  558. .jstree-proton.jstree-rtl .jstree-last {
  559. background: transparent;
  560. }
  561. .jstree-proton-small .jstree-node {
  562. min-height: 18px;
  563. line-height: 18px;
  564. margin-left: 18px;
  565. min-width: 18px;
  566. }
  567. .jstree-proton-small .jstree-anchor {
  568. line-height: 18px;
  569. margin: 1px 0 2px;
  570. height: 18px;
  571. }
  572. .jstree-proton-small .jstree-icon {
  573. width: 18px;
  574. height: 18px;
  575. line-height: 18px;
  576. }
  577. .jstree-proton-small .jstree-icon:empty {
  578. width: 18px;
  579. height: 18px;
  580. line-height: 18px;
  581. }
  582. .jstree-proton-small.jstree-rtl .jstree-node {
  583. margin-right: 18px;
  584. }
  585. .jstree-proton-small .jstree-wholerow {
  586. height: 18px;
  587. }
  588. .jstree-proton-small .jstree-node,
  589. .jstree-proton-small .jstree-icon {
  590. background-size: 320px 96px;
  591. background-image: url("32px.png");
  592. }
  593. .jstree-proton-small .jstree-node {
  594. background-position: -295px -7px;
  595. background-repeat: repeat-y;
  596. }
  597. .jstree-proton-small .jstree-last {
  598. background: transparent;
  599. }
  600. .jstree-proton-small .jstree-open > .jstree-ocl {
  601. background-position: -135px -7px;
  602. }
  603. .jstree-proton-small .jstree-closed > .jstree-ocl {
  604. background-position: -103px -7px;
  605. }
  606. .jstree-proton-small .jstree-leaf > .jstree-ocl {
  607. background-position: -71px -7px;
  608. }
  609. .jstree-proton-small .jstree-themeicon {
  610. background-position: -263px -9px;
  611. }
  612. .jstree-proton-small > .jstree-no-dots .jstree-node,
  613. .jstree-proton-small > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  614. background: transparent;
  615. }
  616. .jstree-proton-small > .jstree-no-dots .jstree-open > .jstree-ocl {
  617. background-position: -39px -7px;
  618. }
  619. .jstree-proton-small > .jstree-no-dots .jstree-closed > .jstree-ocl {
  620. background-position: -7px -7px;
  621. }
  622. .jstree-proton-small .jstree-disabled {
  623. background: transparent;
  624. }
  625. .jstree-proton-small .jstree-disabled.jstree-hovered {
  626. background: transparent;
  627. }
  628. .jstree-proton-small .jstree-disabled.jstree-clicked {
  629. background: #efefef;
  630. }
  631. .jstree-proton-small .jstree-checkbox {
  632. background-position: -167px -7px;
  633. }
  634. .jstree-proton-small .jstree-checkbox:hover {
  635. background-position: -167px -39px;
  636. }
  637. .jstree-proton-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
  638. .jstree-proton-small .jstree-checked > .jstree-checkbox {
  639. background-position: -231px -7px;
  640. }
  641. .jstree-proton-small.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
  642. .jstree-proton-small .jstree-checked > .jstree-checkbox:hover {
  643. background-position: -231px -39px;
  644. }
  645. .jstree-proton-small .jstree-anchor > .jstree-undetermined {
  646. background-position: -199px -7px;
  647. }
  648. .jstree-proton-small .jstree-anchor > .jstree-undetermined:hover {
  649. background-position: -199px -39px;
  650. }
  651. .jstree-proton-small > .jstree-striped {
  652. background-size: auto 36px;
  653. }
  654. .jstree-proton-small.jstree-rtl .jstree-node {
  655. background-size: 320px 96px;
  656. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
  657. background-position: 100% 1px;
  658. background-repeat: repeat-y;
  659. }
  660. .jstree-proton-small.jstree-rtl .jstree-last {
  661. background: transparent;
  662. }
  663. .jstree-proton-small.jstree-rtl .jstree-open > .jstree-ocl {
  664. background-position: -135px -39px;
  665. }
  666. .jstree-proton-small.jstree-rtl .jstree-closed > .jstree-ocl {
  667. background-position: -103px -39px;
  668. }
  669. .jstree-proton-small.jstree-rtl .jstree-leaf > .jstree-ocl {
  670. background-position: -71px -39px;
  671. }
  672. .jstree-proton-small.jstree-rtl > .jstree-no-dots .jstree-node,
  673. .jstree-proton-small.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  674. background: transparent;
  675. }
  676. .jstree-proton-small.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
  677. background-position: -39px -39px;
  678. }
  679. .jstree-proton-small.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
  680. background-position: -7px -39px;
  681. }
  682. .jstree-proton-small .jstree-themeicon-custom {
  683. background-color: transparent;
  684. background-size: 320px 96px;
  685. background-image: none;
  686. background-position: 0 0;
  687. }
  688. .jstree-proton-small > .jstree-container-ul .jstree-loading > .jstree-ocl {
  689. background: url("throbber.gif") center center no-repeat;
  690. }
  691. .jstree-proton-small .jstree-file {
  692. background: url("32px.png") -103px -71px no-repeat;
  693. }
  694. .jstree-proton-small .jstree-folder {
  695. background: url("32px.png") -263px -7px no-repeat;
  696. }
  697. .jstree-proton-small > .jstree-container-ul > .jstree-node {
  698. margin-left: 0;
  699. margin-right: 0;
  700. }
  701. #jstree-dnd.jstree-proton-small {
  702. line-height: 18px;
  703. padding: 0 4px;
  704. }
  705. #jstree-dnd.jstree-proton-small .jstree-ok,
  706. #jstree-dnd.jstree-proton-small .jstree-er {
  707. background-size: 320px 96px;
  708. background-image: url("32px.png");
  709. background-repeat: no-repeat;
  710. background-color: transparent;
  711. }
  712. #jstree-dnd.jstree-proton-small i {
  713. background: transparent;
  714. width: 18px;
  715. height: 18px;
  716. line-height: 18px;
  717. }
  718. #jstree-dnd.jstree-proton-small .jstree-ok {
  719. background-position: -7px -71px;
  720. }
  721. #jstree-dnd.jstree-proton-small .jstree-er {
  722. background-position: -39px -71px;
  723. }
  724. .jstree-proton-small.jstree-rtl .jstree-node {
  725. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAACAQMAAABv1h6PAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMHBgAAiABBI4gz9AAAAABJRU5ErkJggg==");
  726. }
  727. .jstree-proton-small.jstree-rtl .jstree-last {
  728. background: transparent;
  729. }
  730. .jstree-proton-large .jstree-node {
  731. min-height: 32px;
  732. line-height: 32px;
  733. margin-left: 32px;
  734. min-width: 32px;
  735. }
  736. .jstree-proton-large .jstree-anchor {
  737. line-height: 32px;
  738. margin: 1px 0 2px;
  739. height: 32px;
  740. }
  741. .jstree-proton-large .jstree-icon {
  742. width: 32px;
  743. height: 32px;
  744. line-height: 32px;
  745. }
  746. .jstree-proton-large .jstree-icon:empty {
  747. width: 32px;
  748. height: 32px;
  749. line-height: 32px;
  750. }
  751. .jstree-proton-large.jstree-rtl .jstree-node {
  752. margin-right: 32px;
  753. }
  754. .jstree-proton-large .jstree-wholerow {
  755. height: 32px;
  756. }
  757. .jstree-proton-large .jstree-node,
  758. .jstree-proton-large .jstree-icon {
  759. background-size: 320px 96px;
  760. background-image: url("32px.png");
  761. }
  762. .jstree-proton-large .jstree-node {
  763. background-position: -288px 0px;
  764. background-repeat: repeat-y;
  765. }
  766. .jstree-proton-large .jstree-last {
  767. background: transparent;
  768. }
  769. .jstree-proton-large .jstree-open > .jstree-ocl {
  770. background-position: -128px 0px;
  771. }
  772. .jstree-proton-large .jstree-closed > .jstree-ocl {
  773. background-position: -96px 0px;
  774. }
  775. .jstree-proton-large .jstree-leaf > .jstree-ocl {
  776. background-position: -64px 0px;
  777. }
  778. .jstree-proton-large .jstree-themeicon {
  779. background-position: -256px -2px;
  780. }
  781. .jstree-proton-large > .jstree-no-dots .jstree-node,
  782. .jstree-proton-large > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  783. background: transparent;
  784. }
  785. .jstree-proton-large > .jstree-no-dots .jstree-open > .jstree-ocl {
  786. background-position: -32px 0px;
  787. }
  788. .jstree-proton-large > .jstree-no-dots .jstree-closed > .jstree-ocl {
  789. background-position: 0px 0px;
  790. }
  791. .jstree-proton-large .jstree-disabled {
  792. background: transparent;
  793. }
  794. .jstree-proton-large .jstree-disabled.jstree-hovered {
  795. background: transparent;
  796. }
  797. .jstree-proton-large .jstree-disabled.jstree-clicked {
  798. background: #efefef;
  799. }
  800. .jstree-proton-large .jstree-checkbox {
  801. background-position: -160px 0px;
  802. }
  803. .jstree-proton-large .jstree-checkbox:hover {
  804. background-position: -160px -32px;
  805. }
  806. .jstree-proton-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
  807. .jstree-proton-large .jstree-checked > .jstree-checkbox {
  808. background-position: -224px 0px;
  809. }
  810. .jstree-proton-large.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
  811. .jstree-proton-large .jstree-checked > .jstree-checkbox:hover {
  812. background-position: -224px -32px;
  813. }
  814. .jstree-proton-large .jstree-anchor > .jstree-undetermined {
  815. background-position: -192px 0px;
  816. }
  817. .jstree-proton-large .jstree-anchor > .jstree-undetermined:hover {
  818. background-position: -192px -32px;
  819. }
  820. .jstree-proton-large > .jstree-striped {
  821. background-size: auto 64px;
  822. }
  823. .jstree-proton-large.jstree-rtl .jstree-node {
  824. background-size: 320px 96px;
  825. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAACAQMAAAB49I5GAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjAAMOBgAAGAAJMwQHdQAAAABJRU5ErkJggg==");
  826. background-position: 100% 1px;
  827. background-repeat: repeat-y;
  828. }
  829. .jstree-proton-large.jstree-rtl .jstree-last {
  830. background: transparent;
  831. }
  832. .jstree-proton-large.jstree-rtl .jstree-open > .jstree-ocl {
  833. background-position: -128px -32px;
  834. }
  835. .jstree-proton-large.jstree-rtl .jstree-closed > .jstree-ocl {
  836. background-position: -96px -32px;
  837. }
  838. .jstree-proton-large.jstree-rtl .jstree-leaf > .jstree-ocl {
  839. background-position: -64px -32px;
  840. }
  841. .jstree-proton-large.jstree-rtl > .jstree-no-dots .jstree-node,
  842. .jstree-proton-large.jstree-rtl > .jstree-no-dots .jstree-leaf > .jstree-ocl {
  843. background: transparent;
  844. }
  845. .jstree-proton-large.jstree-rtl > .jstree-no-dots .jstree-open > .jstree-ocl {
  846. background-position: -32px -32px;
  847. }
  848. .jstree-proton-large.jstree-rtl > .jstree-no-dots .jstree-closed > .jstree-ocl {
  849. background-position: 0px -32px;
  850. }
  851. .jstree-proton-large .jstree-themeicon-custom {
  852. background-color: transparent;
  853. background-size: 320px 96px;
  854. background-image: none;
  855. background-position: 0 0;
  856. }
  857. .jstree-proton-large > .jstree-container-ul .jstree-loading > .jstree-ocl {
  858. background: url("throbber.gif") center center no-repeat;
  859. }
  860. .jstree-proton-large .jstree-file {
  861. background: url("32px.png") -96px -64px no-repeat;
  862. }
  863. .jstree-proton-large .jstree-folder {
  864. background: url("32px.png") -256px 0px no-repeat;
  865. }
  866. .jstree-proton-large > .jstree-container-ul > .jstree-node {
  867. margin-left: 0;
  868. margin-right: 0;
  869. }
  870. #jstree-dnd.jstree-proton-large {
  871. line-height: 32px;
  872. padding: 0 4px;
  873. }
  874. #jstree-dnd.jstree-proton-large .jstree-ok,
  875. #jstree-dnd.jstree-proton-large .jstree-er {
  876. background-size: 320px 96px;
  877. background-image: url("32px.png");
  878. background-repeat: no-repeat;
  879. background-color: transparent;
  880. }
  881. #jstree-dnd.jstree-proton-large i {
  882. background: transparent;
  883. width: 32px;
  884. height: 32px;
  885. line-height: 32px;
  886. }
  887. #jstree-dnd.jstree-proton-large .jstree-ok {
  888. background-position: 0px -64px;
  889. }
  890. #jstree-dnd.jstree-proton-large .jstree-er {
  891. background-position: -32px -64px;
  892. }
  893. .jstree-proton-large.jstree-rtl .jstree-node {
  894. background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAACAQMAAAAD0EyKAAAABlBMVEUAAAAdHRvEkCwcAAAAAXRSTlMAQObYZgAAAAxJREFUCNdjgIIGBgABCgCBvVLXcAAAAABJRU5ErkJggg==");
  895. }
  896. .jstree-proton-large.jstree-rtl .jstree-last {
  897. background: transparent;
  898. }
  899. @media (max-width: 768px) {
  900. #jstree-dnd.jstree-dnd-responsive {
  901. line-height: 30px;
  902. font-weight: bold;
  903. font-size: 1.1em;
  904. text-shadow: 1px 1px white;
  905. }
  906. #jstree-dnd.jstree-dnd-responsive > i {
  907. background: transparent;
  908. width: 30px;
  909. height: 30px;
  910. }
  911. #jstree-dnd.jstree-dnd-responsive > .jstree-ok {
  912. background-image: url("30px.png");
  913. background-position: 0 -150px;
  914. background-size: 90px 180px;
  915. }
  916. #jstree-dnd.jstree-dnd-responsive > .jstree-er {
  917. background-image: url("30px.png");
  918. background-position: -30px -150px;
  919. background-size: 90px 180px;
  920. }
  921. #jstree-marker.jstree-dnd-responsive {
  922. border-left-width: 10px;
  923. border-top-width: 10px;
  924. border-bottom-width: 10px;
  925. margin-top: -10px;
  926. }
  927. }
  928. @media (max-width: 768px) {
  929. .jstree-proton-responsive {
  930. /*
  931. .jstree-open > .jstree-ocl,
  932. .jstree-closed > .jstree-ocl {
  933. border-radius:20px;
  934. background-color:white;
  935. }
  936. */
  937. }
  938. .jstree-proton-responsive .jstree-container-ul {
  939. overflow: hidden;
  940. }
  941. .jstree-proton-responsive .jstree-icon {
  942. background-image: url("30px.png");
  943. background-size: 90px 180px;
  944. }
  945. .jstree-proton-responsive .jstree-node,
  946. .jstree-proton-responsive .jstree-leaf > .jstree-ocl {
  947. background: transparent;
  948. }
  949. .jstree-proton-responsive .jstree-node {
  950. min-height: 30px;
  951. line-height: 30px;
  952. margin-left: 30px;
  953. min-width: 30px;
  954. white-space: nowrap;
  955. }
  956. .jstree-proton-responsive .jstree-anchor {
  957. line-height: 38px;
  958. height: 38px;
  959. margin: 0;
  960. }
  961. .jstree-proton-responsive .jstree-icon,
  962. .jstree-proton-responsive .jstree-icon:empty {
  963. margin-top: 4px;
  964. width: 30px;
  965. height: 30px;
  966. line-height: 30px;
  967. }
  968. .jstree-proton-responsive > .jstree-container-ul > .jstree-node {
  969. margin-left: 0;
  970. }
  971. .jstree-proton-responsive.jstree-rtl .jstree-node {
  972. margin-left: 0;
  973. margin-right: 30px;
  974. }
  975. .jstree-proton-responsive.jstree-rtl .jstree-container-ul > .jstree-node {
  976. margin-right: 0;
  977. }
  978. .jstree-proton-responsive .jstree-ocl,
  979. .jstree-proton-responsive .jstree-themeicon,
  980. .jstree-proton-responsive .jstree-checkbox {
  981. background-size: 90px 180px;
  982. }
  983. .jstree-proton-responsive .jstree-leaf > .jstree-ocl {
  984. background: transparent;
  985. }
  986. .jstree-proton-responsive .jstree-open > .jstree-ocl {
  987. background-position: 0 0px !important;
  988. }
  989. .jstree-proton-responsive .jstree-closed > .jstree-ocl {
  990. background-position: 0 -30px !important;
  991. }
  992. .jstree-proton-responsive.jstree-rtl .jstree-closed > .jstree-ocl {
  993. background-position: -30px 0px !important;
  994. }
  995. .jstree-proton-responsive .jstree-themeicon {
  996. background-position: -30px -30px;
  997. }
  998. .jstree-proton-responsive .jstree-checkbox,
  999. .jstree-proton-responsive .jstree-checkbox:hover {
  1000. background-position: -30px -60px;
  1001. }
  1002. .jstree-proton-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox,
  1003. .jstree-proton-responsive.jstree-checkbox-selection .jstree-clicked > .jstree-checkbox:hover,
  1004. .jstree-proton-responsive .jstree-checked > .jstree-checkbox,
  1005. .jstree-proton-responsive .jstree-checked > .jstree-checkbox:hover {
  1006. background-position: 0 -60px;
  1007. }
  1008. .jstree-proton-responsive .jstree-anchor > .jstree-undetermined,
  1009. .jstree-proton-responsive .jstree-anchor > .jstree-undetermined:hover {
  1010. background-position: 0 -90px;
  1011. }
  1012. .jstree-proton-responsive > .jstree-striped {
  1013. background: transparent;
  1014. }
  1015. .jstree-proton-responsive .jstree-wholerow-ul li {
  1016. position: relative;
  1017. }
  1018. .jstree-proton-responsive .jstree-wholerow-ul .jstree-wholerow {
  1019. position: absolute;
  1020. top: 0;
  1021. left: -1000px;
  1022. right: -1000px;
  1023. width: auto;
  1024. height: 100%;
  1025. }
  1026. .jstree-proton-responsive .jstree-wholerow {
  1027. border-top: 1px solid rgba(0, 0, 0, 0.05);
  1028. background: rgba(0, 0, 0, 0.02);
  1029. height: 30px;
  1030. }
  1031. .jstree-proton-responsive .jstree-wholerow-hovered {
  1032. background: #76b6ec;
  1033. }
  1034. .jstree-proton-responsive .jstree-wholerow-clicked {
  1035. background: #3392e3;
  1036. }
  1037. .jstree-proton-responsive .jstree-children .jstree-open + .jstree-open {
  1038. box-shadow: none;
  1039. }
  1040. .jstree-proton-responsive .jstree-node,
  1041. .jstree-proton-responsive .jstree-icon,
  1042. .jstree-proton-responsive .jstree-node > .jstree-ocl,
  1043. .jstree-proton-responsive .jstree-themeicon,
  1044. .jstree-proton-responsive .jstree-checkbox {
  1045. background-image: url("30px.png");
  1046. background-size: 90px 180px;
  1047. }
  1048. .jstree-proton-responsive .jstree-node {
  1049. background-position: -60px 0;
  1050. background-repeat: repeat-y;
  1051. }
  1052. .jstree-proton-responsive .jstree-last {
  1053. background: transparent;
  1054. }
  1055. .jstree-proton-responsive .jstree-leaf > .jstree-ocl {
  1056. background-position: -30px -90px;
  1057. }
  1058. .jstree-proton-responsive .jstree-last > .jstree-ocl {
  1059. background-position: -30px -120px;
  1060. }
  1061. .jstree-proton-responsive .jstree-themeicon-custom {
  1062. background-color: transparent;
  1063. background-image: none;
  1064. background-position: 0 0;
  1065. }
  1066. .jstree-proton-responsive .jstree-file {
  1067. background: url("30px.png") 0 -120px no-repeat;
  1068. background-size: 90px 180px;
  1069. }
  1070. .jstree-proton-responsive .jstree-folder {
  1071. background: url("30px.png") -30px -30px no-repeat;
  1072. background-size: 90px 180px;
  1073. }
  1074. .jstree-proton-responsive > .jstree-container-ul > .jstree-node {
  1075. margin-left: 0;
  1076. margin-right: 0;
  1077. }
  1078. }
  1079. @font-face {
  1080. font-family: 'Titillium Web';
  1081. src: url('fonts/titillium/titilliumweb-extralight-webfont.eot');
  1082. src: url('fonts/titillium/titilliumweb-extralight-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/titillium/titilliumweb-extralight-webfont.woff') format('woff'), url('fonts/titillium/titilliumweb-extralight-webfont.ttf') format('truetype'), url('fonts/titillium/titilliumweb-extralight-webfont.svg#titillium_webthin') format('svg');
  1083. font-weight: 300;
  1084. font-style: normal;
  1085. }
  1086. @font-face {
  1087. font-family: 'Titillium Web';
  1088. src: url('fonts/titillium/titilliumweb-regular-webfont.eot');
  1089. src: url('fonts/titillium/titilliumweb-regular-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/titillium/titilliumweb-regular-webfont.woff') format('woff'), url('fonts/titillium/titilliumweb-regular-webfont.ttf') format('truetype'), url('fonts/titillium/titilliumweb-regular-webfont.svg#titillium_webregular') format('svg');
  1090. font-weight: 400;
  1091. font-style: normal;
  1092. }
  1093. @font-face {
  1094. font-family: 'Titillium Web';
  1095. src: url('fonts/titillium/titilliumweb-bold-webfont.eot');
  1096. src: url('fonts/titillium/titilliumweb-bold-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/titillium/titilliumweb-bold-webfont.woff') format('woff'), url('fonts/titillium/titilliumweb-bold-webfont.ttf') format('truetype'), url('fonts/titillium/titilliumweb-bold-webfont.svg#titillium_webbold') format('svg');
  1097. font-weight: 700;
  1098. font-style: normal;
  1099. }
  1100. @media screen and (-webkit-min-device-pixel-ratio: 0) {
  1101. @font-face {
  1102. font-family: 'Titillium Web';
  1103. src: url('fonts/titillium/titilliumweb-extralight-webfont.svg#titillium_webthin') format('svg');
  1104. font-weight: 300;
  1105. font-style: normal;
  1106. }
  1107. @font-face {
  1108. font-family: 'Titillium Web';
  1109. src: url('fonts/titillium/titilliumweb-regular-webfont.svg#titillium_webregular') format('svg');
  1110. font-weight: 400;
  1111. font-style: normal;
  1112. }
  1113. @font-face {
  1114. font-family: 'Titillium Web';
  1115. src: url('fonts/titillium/titilliumweb-bold-webfont.svg#titillium_webbold') format('svg');
  1116. font-weight: 700;
  1117. font-style: normal;
  1118. }
  1119. }
  1120. .jstree-proton {
  1121. font-family: 'Titillium Web', sans-serif, Arial, sans-serif;
  1122. }
  1123. .jstree-wrapper .jstree-container-ul .jstree-node:not(.jstree-leaf) {
  1124. display: block;
  1125. clear: both;
  1126. }
  1127. .jstree-wrapper .jstree-leaf {
  1128. float: left;
  1129. margin-left: 0;
  1130. padding-left: 24px;
  1131. /*width: 80px;*/
  1132. clear: none;
  1133. color: #777;
  1134. }
  1135. .jstree-wrapper .jstree-leaf:not(first-child) {
  1136. background: none;
  1137. }
  1138. .jstree-wrapper .jstree-leaf > .jstree-icon, #treeview .jstree-leaf .jstree-themeicon {
  1139. display: none;
  1140. }