nestable-rtl.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581
  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. .dd-item, .dd-empty, .dd-placeholder {
  348. display: block;
  349. position: relative;
  350. margin: 0;
  351. padding: 0;
  352. min-height: 20px;
  353. font-size: 13px;
  354. line-height: 20px; }
  355. .dd-empty, .dd-placeholder {
  356. margin: 5px 0;
  357. padding: 0;
  358. min-height: 30px;
  359. background: #f2fbff;
  360. border: 1px dashed #b6bcbf;
  361. -webkit-box-sizing: border-box;
  362. box-sizing: border-box; }
  363. #nestable-output, #nestable2-output {
  364. width: 100%;
  365. height: 7em;
  366. font-size: 0.75em;
  367. line-height: 1.333333em;
  368. font-family: Consolas, monospace;
  369. padding: 5px;
  370. -webkit-box-sizing: border-box;
  371. box-sizing: border-box; }
  372. .dd {
  373. position: relative;
  374. display: block;
  375. margin: 0;
  376. padding: 0;
  377. max-width: 600px;
  378. list-style: none;
  379. font-size: 13px;
  380. line-height: 20px; }
  381. .dd-list {
  382. display: block;
  383. position: relative;
  384. margin: 0;
  385. padding: 0;
  386. list-style: none; }
  387. .dd-list .dd-list {
  388. padding-right: 30px; }
  389. .dd-item > button {
  390. display: block;
  391. position: relative;
  392. cursor: pointer;
  393. float: right;
  394. width: 25px;
  395. height: 20px;
  396. margin: 5px 0;
  397. padding: 0;
  398. text-indent: 100%;
  399. white-space: nowrap;
  400. overflow: hidden;
  401. border: 0;
  402. background: transparent;
  403. font-size: 12px;
  404. line-height: 1;
  405. text-align: center;
  406. font-weight: bold; }
  407. .dd-item > button:before {
  408. content: ' +';
  409. display: block;
  410. position: absolute;
  411. width: 100%;
  412. text-align: center;
  413. text-indent: 0; }
  414. .dd-item > button[data-action="collapse"]:before {
  415. content: '-'; }
  416. .dd-empty {
  417. border: 1px dashed #bbb;
  418. min-height: 100px;
  419. background-color: #e5e5e5;
  420. background-image: linear-gradient(-45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff), linear-gradient(-45deg, #fff 25%, transparent 25%, transparent 75%, #fff 75%, #fff);
  421. background-size: 60px 60px;
  422. background-position: 100% 0, 30px 30px; }
  423. .dd-handle {
  424. display: block;
  425. height: 30px;
  426. margin: 5px 0;
  427. padding: 5px 10px;
  428. color: #333;
  429. text-decoration: none;
  430. font-weight: bold;
  431. border: 1px solid #ccc;
  432. background: #fafafa;
  433. background: -webkit-gradient(linear, right top, right bottom, color-stop(0, #fafafa), to(#eee));
  434. background: linear-gradient(to bottom, #fafafa 0, #eee 100%);
  435. border-radius: 3px;
  436. -webkit-box-sizing: border-box;
  437. box-sizing: border-box; }
  438. .dd-handle:hover {
  439. color: #2ea8e5;
  440. background: #fff; }
  441. .dd-dragel {
  442. position: absolute;
  443. pointer-events: none;
  444. z-index: 9999; }
  445. .dd-dragel > .dd-item .dd-handle {
  446. margin-top: 0; }
  447. .dd-dragel > .dd3-item > .dd3-content {
  448. margin: 0; }
  449. .dd-dragel .dd-handle {
  450. -webkit-box-shadow: -2px 4px 6px 0 rgba(0, 0, 0, 0.1);
  451. box-shadow: -2px 4px 6px 0 rgba(0, 0, 0, 0.1); }
  452. .nestable-lists {
  453. display: block;
  454. clear: both;
  455. padding: 30px 0;
  456. width: 100%;
  457. border: 0;
  458. border-top: 2px solid #ddd;
  459. border-bottom: 2px solid #ddd; }
  460. #nestable-menu {
  461. padding: 0;
  462. margin: 20px 0; }
  463. #nestable2 .dd-handle {
  464. color: #fff;
  465. border: 1px solid #999;
  466. background: #bbb;
  467. background: -webkit-gradient(linear, right top, right bottom, color-stop(0, #bbb), to(#999));
  468. background: linear-gradient(to bottom, #bbb 0, #999 100%); }
  469. #nestable2 .dd-handle:hover {
  470. background: #bbb; }
  471. #nestable2 .dd-item > button:before {
  472. color: #fff; }
  473. @media only screen and (min-width: 700px) {
  474. .dd {
  475. float: right;
  476. width: 48%; }
  477. .dd + .dd {
  478. margin-right: 2%; } }
  479. .dd3-content {
  480. display: block;
  481. height: 30px;
  482. margin: 5px 0;
  483. padding: 5px 40px 5px 10px;
  484. color: #333;
  485. text-decoration: none;
  486. font-weight: bold;
  487. border: 1px solid #ccc;
  488. background: #fafafa;
  489. background: -webkit-gradient(linear, right top, right bottom, color-stop(0, #fafafa), to(#eee));
  490. background: linear-gradient(to bottom, #fafafa 0, #eee 100%);
  491. border-radius: 3px;
  492. -webkit-box-sizing: border-box;
  493. box-sizing: border-box; }
  494. .dd3-content:hover {
  495. color: #2ea8e5;
  496. background: #fff; }
  497. .dd3-handle {
  498. position: absolute;
  499. margin: 0;
  500. right: 0;
  501. top: 0;
  502. cursor: pointer;
  503. width: 30px;
  504. text-indent: 100%;
  505. white-space: nowrap;
  506. overflow: hidden;
  507. border: 1px solid #aaa;
  508. background: #ddd;
  509. background: -webkit-gradient(linear, right top, right bottom, color-stop(0, #ddd), to(#bbb));
  510. background: linear-gradient(to bottom, #ddd 0, #bbb 100%);
  511. border-top-left-radius: 0;
  512. border-bottom-left-radius: 0; }
  513. .dd3-handle:before {
  514. content: '≡';
  515. display: block;
  516. position: absolute;
  517. right: 0;
  518. top: 3px;
  519. width: 100%;
  520. text-align: center;
  521. text-indent: 0;
  522. color: #fff;
  523. font-size: 20px;
  524. font-weight: normal; }
  525. .dd3-handle:hover {
  526. background: #ddd; }
  527. .dd-collapsed .dd-list {
  528. display: none; }
  529. .dd-hover > .dd-handle {
  530. background: #2ea8e5 !important; }
  531. .dd3-item > button {
  532. margin-right: 30px; }