Dashboard sipadu mbip
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.

treeview.css 32KB

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