style.css 32 KB

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