treeview-rtl.css 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. @charset "UTF-8";
  2. /* #BOOTSTRAP AND MIXINS - Base Unmodified Bootstrap file with theme mixins
  3. ========================================================================== */
  4. /*---------------------------------------------------
  5. SASS ELements (based on LESS Elements 0.9 http://lesselements.com)
  6. -------------------------------- -------------------
  7. LESS ELEMENTS made by Dmitry Fadeyev (http://fadeyev.net)
  8. SASS port by Samuel Beek (http://samuelbeek.com)
  9. ---------------------------------------------------*/
  10. /*------------------------
  11. Usage
  12. h1 {
  13. font-size: rem(32);
  14. }
  15. OR:
  16. h1 {
  17. font-size: rem(32px);
  18. }
  19. ------------------------*/
  20. /*------------------------
  21. FADE IN
  22. e.g. @include fadeIn( 2s );
  23. ------------------------*/
  24. /*------------------------
  25. mixin that calculates if text needs to be light or dark
  26. depending on the background color passed.
  27. From this W3C document: http://www.webmasterworld.com/r.cgi?f=88&d=9769&url=http://www.w3.org/TR/AERT#color-contrast
  28. usage:
  29. @include text-contrast($bgcolor)
  30. Color brightness is determined by the following formula:
  31. ((Red value X 299) + (Green value X 587) + (Blue value X 114)) / 1000
  32. ------------------------*/
  33. /*------------------------
  34. color factory
  35. eg: @include paint($blue-grey-50, bg-blue-grey-50);
  36. ------------------------*/
  37. /* backface visibility */
  38. /* generate theme button */
  39. /* #BASE - Base Variable file along with font library, and colors.
  40. ========================================================================== */
  41. /* THEME COLORs
  42. ========================================================================== */
  43. /* Looks good on chrome default color profile */
  44. /* looks good in sRGB but washed up on chrome default
  45. $color-primary: #826bb0;
  46. $color-success: #31cb55;
  47. $color-info: #5e93ec;
  48. $color-warning: #eec559;
  49. $color-danger: #dc4b92;
  50. $color-fusion: darken(desaturate(adjust-hue($color-primary, 5), 80%), 25%); */
  51. /* Color Polarity
  52. ========================================================================== */
  53. /* PAINTBUCKET MIXER
  54. ========================================================================== */
  55. /* the grays */
  56. /* the sapphires */
  57. /* the emeralds */
  58. /* the amethyths */
  59. /* the topaz */
  60. /* the rubies */
  61. /* the graphites */
  62. /* Define universal border difition (div outlines, etc)
  63. ========================================================================== */
  64. /* MOBILE BREAKPOINT & GUTTERS (contains some bootstrap responsive overrides)
  65. ========================================================================== */
  66. /* define when mobile menu activates, here we are declearing (lg) so it targets the one after it */
  67. /* bootstrap reference xs: 0, sm: 544px, md: 768px, lg: 992px, xl: 1200px*/
  68. /* global var used for spacing*/
  69. /* Uniform Padding variable */
  70. /* Heads up! This is a global scoped variable - changing may impact the whole template */
  71. /* BOOTSTRAP OVERRIDES (bootstrap variables)
  72. ========================================================================== */
  73. /* usage: theme-colors("primary"); */
  74. /* forms */
  75. /*$input-height: calc(2.25rem + 1px); //I had to add this because the input gruops was having improper height for some reason... */
  76. /* links */
  77. /* checkbox */
  78. /*$custom-file-height-inner: calc(2.25rem - 1px);*/
  79. /* not part of bootstrap variable */
  80. /* custom checkbox */
  81. /* custom range */
  82. /* select */
  83. /* badge */
  84. /* cards */
  85. /*border radius*/
  86. /* alert */
  87. /* toast */
  88. /* breadcrumb */
  89. /* input button */
  90. /* nav link */
  91. /* nav, tabs, pills */
  92. /* tables */
  93. /* dropdowns */
  94. /* dropdowns sizes */
  95. /* popovers */
  96. /* tooltips */
  97. /* modal */
  98. /* reference guide
  99. http://www.standardista.com/px-to-rem-conversion-if-root-font-size-is-16px/
  100. 8px = 0.5rem
  101. 9px = 0.5625rem
  102. 10px = 0.625rem
  103. 11px = 0.6875rem
  104. 12px = 0.75rem
  105. 13px = 0.8125rem
  106. 14px = 0.875rem
  107. 15px = 0.9375rem
  108. 16px = 1rem (base)
  109. 17px = 1.0625rem
  110. 18px = 1.125rem
  111. 19px = 1.1875rem
  112. 20px = 1.25rem
  113. 21px = 1.3125rem
  114. 22px = 1.375rem
  115. 24px = 1.5rem
  116. 25px = 1.5625rem
  117. 26px = 1.625rem
  118. 28px = 1.75rem
  119. 30px = 1.875rem
  120. 32px = 2rem
  121. 34px = 2.125rem
  122. 36px = 2.25rem
  123. 38px = 2.375rem
  124. 40px = 2.5rem
  125. */
  126. /* Fonts */
  127. /* carousel */
  128. /* BASE VARS
  129. ========================================================================== */
  130. /* font vars below will auto change to rem values using function rem($value)*/
  131. /* 11px */
  132. /* 12px */
  133. /* 12.5px */
  134. /* 14px */
  135. /* 15px */
  136. /* 16px */
  137. /* 28px */
  138. /* Font Family
  139. ========================================================================== */
  140. /*hint: you can also try the font called 'Poppins' by replacing the font 'Roboto' */
  141. /* ANIMATIONS
  142. ========================================================================== */
  143. /* this addresses all animation related to nav hide to nav minify */
  144. /* Z-INDEX declearation
  145. ========================================================================== */
  146. /* we adjust bootstrap z-index to be higher than our higest z-index*/
  147. /* CUSTOM ICON PREFIX
  148. ========================================================================== */
  149. /* PRINT CSS (landscape or portrait)
  150. ========================================================================== */
  151. /* landscape or portrait */
  152. /* auto, letter */
  153. /* Common Element Variables
  154. ========================================================================== */
  155. /* Z-index decleartion "birds eye view"
  156. ========================================================================== */
  157. /* Components
  158. ========================================================================== */
  159. /* PAGE HEADER STUFF
  160. ========================================================================== */
  161. /* colors */
  162. /* height */
  163. /* logo */
  164. /* try not to go beywond the width of $main_nav_width value */
  165. /* you may need to change this depending on your logo design */
  166. /* adjust this as you see fit : left, right, center */
  167. /* icon font size (not button) */
  168. /* search input box */
  169. /* suggestion: #ccced0*/
  170. /* btn */
  171. /* dropdown: app list */
  172. /* badge */
  173. /* COMPONENTS & MODS */
  174. /* NAVIGATION STUFF
  175. Guide:
  176. aside.page-sidebar ($nav-width, $nav-background)
  177. .page-logo
  178. .primary-nav
  179. .info-card
  180. ul.nav-menu
  181. li
  182. a (parent level-0..., $nav-link-color, $nav-link-hover-color, $nav-link-hover-bg-color, $nav-link-hover-left-border-color)
  183. icon
  184. span
  185. collapse-sign
  186. ul.nav-menu-sub-one
  187. li
  188. a ($nav-level-1... $nav-sub-link-height)
  189. span
  190. collapse-sign
  191. ul.nav-menu-sub-two
  192. li
  193. a ($nav-level-2... $nav-sub-link-height)
  194. span
  195. p.nav-title ($nav-title-*...)
  196. ========================================================================== */
  197. /* main navigation */
  198. /* left panel */
  199. /* nav parent level-0 */
  200. /* nav icon sizes */
  201. /* badge default */
  202. /* all child */
  203. /* nav title */
  204. /* nav Minify */
  205. /* when the menu pops on hover */
  206. /* navigation Width */
  207. /* partial visibility of the menu */
  208. /* top navigation */
  209. /* nav Info Card (appears below the logo) */
  210. /* width is auto */
  211. /* nav DL labels for all child */
  212. /* will be pulled to left as a negative value */
  213. /* MISC Settings
  214. ========================================================================== */
  215. /* List Table */
  216. /* PAGE SETTINGS
  217. ========================================================================== */
  218. /* PAGE BREADCRUMB
  219. ========================================================================== */
  220. /* PAGE COMPONENT PANELS
  221. ========================================================================== */
  222. /* PAGE COMPONENT PROGRESSBARS
  223. ========================================================================== */
  224. /* PAGE COMPONENT MESSENGER
  225. ========================================================================== */
  226. /* FOOTER
  227. ========================================================================== */
  228. /* GLOBALS
  229. ========================================================================== */
  230. /* ACCESSIBILITIES */
  231. /* SHORTCUT BUTTON (appears on bottom right of the page) */
  232. @import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");
  233. body {
  234. font-family: "Roboto", "Helvetica Neue", Helvetica, Arial;
  235. font-size: 0.8125rem;
  236. letter-spacing: 0.1px; }
  237. .page-content {
  238. color: #666666; }
  239. h1, h2, h3, h4, h5, h6 {
  240. line-height: 1.3;
  241. font-weight: 400; }
  242. strong {
  243. font-weight: 500; }
  244. h1 small,
  245. h2 small,
  246. h3 small,
  247. h4 small,
  248. h5 small,
  249. h6 small,
  250. .h1 small,
  251. .h2 small,
  252. .h3 small,
  253. .h4 small,
  254. .h5 small,
  255. .h6 small {
  256. font-weight: 300;
  257. display: block;
  258. font-size: 0.9375rem;
  259. line-height: 1.5;
  260. margin: 2px 0 1.5rem; }
  261. h2 small,
  262. h3 small,
  263. .h2 small,
  264. .h3 small {
  265. font-size: 0.9375rem; }
  266. h4 small,
  267. .h4 small {
  268. font-size: 0.875rem; }
  269. h5 small,
  270. h6 small,
  271. .h5 small,
  272. .h6 small {
  273. font-size: 0.8125rem; }
  274. /* contrast text */
  275. .text-contrast {
  276. color: #333333; }
  277. /* text-gradient */
  278. .text-gradient {
  279. background: -webkit-gradient(linear, right top, right bottom, color-stop(25%, #6e4e9e), color-stop(50%, #62468d), color-stop(75%, #0c7cd5), to(#0960a5));
  280. background: linear-gradient(-180deg, #6e4e9e 25%, #62468d 50%, #0c7cd5 75%, #0960a5 100%);
  281. color: #886ab5;
  282. background-clip: text;
  283. text-fill-color: transparent;
  284. -webkit-background-clip: text;
  285. -webkit-text-fill-color: transparent;
  286. text-shadow: none; }
  287. /* looking for font size? Check _helpers.scss */
  288. /* PLACEHOLDER
  289. =============================================
  290. EXAMPLE:
  291. %bg-image {
  292. width: 100%;
  293. background-position: center center;
  294. background-size: cover;
  295. background-repeat: no-repeat;
  296. }
  297. .image-one {
  298. @extend %bg-image;
  299. background-image:url(/img/image-one.jpg");
  300. }
  301. RESULT:
  302. .image-one, .image-two {
  303. width: 100%;
  304. background-position: center center;
  305. background-size: cover;
  306. background-repeat: no-repeat;
  307. }
  308. */
  309. /*
  310. %shadow-hover {
  311. box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 0 2px rgba(0,0,0,0.24);
  312. transition: all 0.2s ease-in-out;
  313. &:hover {
  314. box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 -1px 6px rgba(0,0,0,0.23);
  315. }
  316. }
  317. */
  318. /*%fixed-header-shadow {
  319. @include box-shadow(0 2px 2px -1px rgba(0,0,0,.1));
  320. }*/
  321. /* %selected-dot {
  322. &:before {
  323. content: " ";
  324. display: block;
  325. border-radius: 50%;
  326. background: inherit;
  327. background-image: none;
  328. border: 2px solid rgba(0,0,0,0.2);
  329. position: absolute;
  330. top: 15px;
  331. left: 15px;
  332. height: 20px;
  333. width: 20px;
  334. }
  335. &:after {
  336. content: " ";
  337. height: inherit;
  338. width: inherit;
  339. border: 5px solid rgba(0,0,0,0.1);
  340. position: absolute;
  341. left: 0;
  342. top: 0;
  343. border-radius: 50%;
  344. }
  345. }*/
  346. /* patterns */
  347. .tree li:after, .tree li:before {
  348. content: '';
  349. right: -20px;
  350. position: absolute;
  351. left: auto; }
  352. .tree li.parent_li > span:hover, .tree li.parent_li > span:hover + ul li span {
  353. background: #eee;
  354. border: 1px solid #94a0b4;
  355. color: #000; }
  356. .tree {
  357. min-height: 20px;
  358. border-radius: 4px; }
  359. .tree li {
  360. list-style-type: none;
  361. margin: 0;
  362. padding: 5px;
  363. position: relative; }
  364. .tree li:after {
  365. border-top: 1px solid #999;
  366. height: 20px;
  367. top: 18px;
  368. width: 25px; }
  369. .tree li:before {
  370. border-right: 1px solid #999;
  371. bottom: 50px;
  372. height: 100%;
  373. top: -11px;
  374. width: 1px;
  375. -webkit-transition: "border-color 0.1s ease 0.1s";
  376. transition: "border-color 0.1s ease 0.1s"; }
  377. .tree li span {
  378. border: 1px dotted #999;
  379. border-radius: 5px;
  380. display: inline-block;
  381. padding: 3px 8px;
  382. text-decoration: none;
  383. -webkit-transition: color .2s ease .1s,background-color .2s ease .1s,border-color .3s ease .2s;
  384. transition: color .2s ease .1s,background-color .2s ease .1s,border-color .3s ease .2s; }
  385. .tree li:last-child::before {
  386. height: 30px; }
  387. .tree li.parent_li > span {
  388. cursor: pointer;
  389. padding: 7px; }
  390. .tree li.parent_li > span:hover {
  391. background-color: #df8505;
  392. border: 1px solid #c67605;
  393. color: #fff; }
  394. .tree li.parent_li > span:hover + ul li::before {
  395. border-right-color: #f89406; }
  396. .tree li.parent_li > span:hover + ul li::after {
  397. border-top-color: #f89406; }
  398. .tree li.parent_li > span:hover + ul li span {
  399. background: #fddfb3 !important;
  400. border: 1px solid #faa937;
  401. color: #000; }
  402. .tree > ul {
  403. padding-right: 0; }
  404. .tree > ul > li::after {
  405. border: 0; }
  406. .tree > ul > li:before {
  407. border: 0; }
  408. .tree .fa.icon-minus-sign:before {
  409. content: "" !important; }
  410. .tree .fa.icon-plus-sign:before {
  411. content: "" !important; }
  412. .tree ul ul {
  413. padding-right: 34px;
  414. padding-top: 10px; }
  415. .tree ul ul li:hover {
  416. background: rgba(0, 0, 0, 0.015); }