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.

custom.css 21KB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903
  1. @charset "UTF-8";
  2. /* STRUCTURE */
  3. /* line 3, ../../sass/backend/custom.scss */
  4. body {
  5. font-size: 0.9rem;
  6. }
  7. /* line 4, ../../sass/backend/custom.scss */
  8. [class*="sidebar-dark-"] .nav-sidebar > .nav-item.menu-open, [class*="sidebar-dark-"] .nav-sidebar > .nav-item:hover {
  9. background: rgba(255, 255, 255, 0.1);
  10. }
  11. /* line 6, ../../sass/backend/custom.scss */
  12. .align-center {
  13. text-align: center;
  14. }
  15. /* line 7, ../../sass/backend/custom.scss */
  16. .align-left {
  17. text-align: left;
  18. }
  19. /* line 8, ../../sass/backend/custom.scss */
  20. .align-right {
  21. text-align: right;
  22. }
  23. /* line 10, ../../sass/backend/custom.scss */
  24. .hidden {
  25. display: none;
  26. }
  27. /* line 12, ../../sass/backend/custom.scss */
  28. .select2-container--default .select2-results__option[aria-disabled=true] {
  29. display: none;
  30. }
  31. /* line 16, ../../sass/backend/custom.scss */
  32. .field-collection-item-action {
  33. font-size: 2rem;
  34. font-weight: bold;
  35. margin-left: 4px;
  36. width: 7%;
  37. text-align: center;
  38. display: inline-block;
  39. line-height: 2.2rem;
  40. }
  41. /* line 25, ../../sass/backend/custom.scss */
  42. .field-collection-item-row .form-control {
  43. width: 92%;
  44. float: left;
  45. }
  46. /* line 30, ../../sass/backend/custom.scss */
  47. .card-tools h5 {
  48. margin-bottom: 0px;
  49. }
  50. /* line 32, ../../sass/backend/custom.scss */
  51. a.link-as-text {
  52. color: #333;
  53. }
  54. /***************************************** ADMIN SIDEBAR ***************************************/
  55. /* line 36, ../../sass/backend/custom.scss */
  56. .main-sidebar p {
  57. font-size: 0.8rem;
  58. }
  59. /* line 37, ../../sass/backend/custom.scss */
  60. .main-sidebar .sidebar {
  61. padding-left: 0px;
  62. padding-right: 0px;
  63. padding-top: 114px;
  64. }
  65. /* line 38, ../../sass/backend/custom.scss */
  66. .main-sidebar .nav-link {
  67. padding: .4rem .5rem .4rem .7rem;
  68. }
  69. /* line 40, ../../sass/backend/custom.scss */
  70. body#pdl-body .wrapper .main-sidebar {
  71. bottom: 0;
  72. float: none;
  73. height: 100vh;
  74. left: 0;
  75. position: fixed;
  76. top: 0;
  77. }
  78. /* line 41, ../../sass/backend/custom.scss */
  79. body#pdl-body .wrapper .content-wrapper {
  80. margin-top: 0;
  81. padding-top: 57px;
  82. }
  83. /* line 42, ../../sass/backend/custom.scss */
  84. .sidebar {
  85. overflow-y: auto;
  86. }
  87. /* line 45, ../../sass/backend/custom.scss */
  88. #lc-flash-messages {
  89. display: none;
  90. }
  91. /* line 47, ../../sass/backend/custom.scss */
  92. .main-sidebar .logo-long {
  93. padding: 8px 0;
  94. text-align: center;
  95. }
  96. /* line 48, ../../sass/backend/custom.scss */
  97. .main-sidebar .logo-long img {
  98. height: 40px;
  99. display: inline-block;
  100. }
  101. /* line 49, ../../sass/backend/custom.scss */
  102. .sidebar-collapse .main-sidebar .logo-long span {
  103. display: none;
  104. }
  105. /* line 50, ../../sass/backend/custom.scss */
  106. .sidebar-collapse .main-sidebar:hover .logo-long span {
  107. display: inline-block;
  108. }
  109. /* line 52, ../../sass/backend/custom.scss */
  110. .table.datatable-simple .highlight {
  111. background: var(--teal);
  112. }
  113. /* line 53, ../../sass/backend/custom.scss */
  114. .datatable-field-search.small {
  115. width: 50px;
  116. }
  117. /* line 55, ../../sass/backend/custom.scss */
  118. .dataTables_length, .dataTables_filter {
  119. padding: .75rem 1.25rem 0.25rem;
  120. }
  121. /* line 57, ../../sass/backend/custom.scss */
  122. table.fixedHeader-floating {
  123. margin-top: 0px !important;
  124. }
  125. /* line 58, ../../sass/backend/custom.scss */
  126. table th.sorting_asc, table th.sorting_desc {
  127. border-top: 3px solid var(--success);
  128. }
  129. /* line 59, ../../sass/backend/custom.scss */
  130. .card-body table.lc-table-list th.sorted, table th.sorting_asc, table th.sorting_desc {
  131. border-top: 2px solid var(--success);
  132. }
  133. /*.card-body table.lc-table-list th{border-top:3px solid var(--success);}*/
  134. /* line 61, ../../sass/backend/custom.scss */
  135. table th.filtered {
  136. border-top: 3px solid var(--primary);
  137. }
  138. /* line 64, ../../sass/backend/custom.scss */
  139. .lc-table-list thead a {
  140. color: #212529;
  141. }
  142. /* line 65, ../../sass/backend/custom.scss */
  143. .table-filters-line th {
  144. font-weight: 400;
  145. position: relative;
  146. }
  147. /* line 67, ../../sass/backend/custom.scss */
  148. #list_filter_id {
  149. width: 60px;
  150. }
  151. /* line 68, ../../sass/backend/custom.scss */
  152. .lc-table-list .date-range {
  153. width: 130px;
  154. }
  155. /* line 70, ../../sass/backend/custom.scss */
  156. th.actions, td.actions {
  157. white-space: nowrap;
  158. text-align: right;
  159. }
  160. /* line 72, ../../sass/backend/custom.scss */
  161. .table td, .table th {
  162. padding: 0.35rem;
  163. }
  164. /* line 73, ../../sass/backend/custom.scss */
  165. .delivery-field .form-group {
  166. display: inline-block;
  167. margin-bottom: 0px;
  168. margin-right: 15px;
  169. }
  170. /* line 74, ../../sass/backend/custom.scss */
  171. .delivery-field .form-group .form-control {
  172. width: 150px;
  173. }
  174. /* line 76, ../../sass/backend/custom.scss */
  175. table th input {
  176. width: 100%;
  177. }
  178. /* line 77, ../../sass/backend/custom.scss */
  179. table th .select2-container--default .select2-selection--single {
  180. padding: 0.3rem 0.4rem;
  181. }
  182. /************************ LOGIN PAGE *********************/
  183. /* line 80, ../../sass/backend/custom.scss */
  184. .login-logo {
  185. display: block;
  186. margin: auto;
  187. }
  188. /************************ form error *********************/
  189. /* line 83, ../../sass/backend/custom.scss */
  190. .form-sent .form-control:invalid {
  191. border-color: #dc3545;
  192. padding-right: 2.25rem;
  193. background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  194. background-repeat: no-repeat;
  195. background-position: center right calc(.375em + .1875rem);
  196. background-size: calc(.75em + .375rem) calc(.75em + .375rem);
  197. }
  198. /* line 84, ../../sass/backend/custom.scss */
  199. .form-sent select.form-control:invalid + .select2 .select2-selection {
  200. border-color: #dc3545;
  201. }
  202. /* line 85, ../../sass/backend/custom.scss */
  203. .form-sent select.form-control:invalid + .select2 .select2-selection b {
  204. border-color: #dc3545 transparent transparent transparent;
  205. }
  206. /*CUSTOM Checkbox
  207. /* Customize the label (the container) */
  208. /* line 90, ../../sass/backend/custom.scss */
  209. .form-check-label {
  210. display: block;
  211. position: relative;
  212. padding-left: 26px;
  213. cursor: pointer;
  214. -webkit-user-select: none;
  215. -moz-user-select: none;
  216. -ms-user-select: none;
  217. user-select: none;
  218. }
  219. /* Hide the browser's default checkbox */
  220. /* line 92, ../../sass/backend/custom.scss */
  221. .form-check-label input {
  222. position: absolute;
  223. opacity: 0;
  224. cursor: pointer;
  225. height: 0;
  226. width: 0;
  227. }
  228. /* Create a custom checkbox */
  229. /* line 95, ../../sass/backend/custom.scss */
  230. .form-check {
  231. padding-left: 0px;
  232. }
  233. /* line 97, ../../sass/backend/custom.scss */
  234. .form-sent .form-check-label input:invalid ~ .checkmark {
  235. border-color: #dc3545;
  236. }
  237. /* line 98, ../../sass/backend/custom.scss */
  238. .form-check-label input:disabled ~ .checkmark {
  239. display: none;
  240. }
  241. /* line 99, ../../sass/backend/custom.scss */
  242. .form-check-label input ~ .checkmark {
  243. position: absolute;
  244. top: 0;
  245. left: 0;
  246. height: 18px;
  247. width: 18px;
  248. background-color: #eee;
  249. border: 1px solid var(--primary);
  250. }
  251. /* line 100, ../../sass/backend/custom.scss */
  252. .form-check-label.big input ~ .checkmark {
  253. height: 21px;
  254. width: 21px;
  255. }
  256. /* line 101, ../../sass/backend/custom.scss */
  257. .form-check-label input[type="checkbox"] ~ .checkmark {
  258. top: 2px;
  259. }
  260. /* line 102, ../../sass/backend/custom.scss */
  261. .form-check-label input[type="radio"] ~ .checkmark {
  262. top: 3px;
  263. border-radius: 50%;
  264. }
  265. /* line 103, ../../sass/backend/custom.scss */
  266. .form-check-label:hover input ~ .checkmark {
  267. background-color: #ccc;
  268. }
  269. /* When the checkbox is checked, add a blue background */
  270. /* line 105, ../../sass/backend/custom.scss */
  271. .form-check-label input:checked ~ .checkmark {
  272. background-color: var(--primary);
  273. }
  274. /* Create the checkmark/indicator (hidden when not checked) */
  275. /* line 107, ../../sass/backend/custom.scss */
  276. .form-check-label .checkmark:after {
  277. content: "";
  278. position: absolute;
  279. display: none;
  280. }
  281. /* Show the checkmark when checked */
  282. /* line 109, ../../sass/backend/custom.scss */
  283. .form-check-label input:checked ~ .checkmark:after {
  284. display: block;
  285. }
  286. /* Style the checkmark/indicator */
  287. /* line 111, ../../sass/backend/custom.scss */
  288. .form-check-label .checkmark:after {
  289. left: 7px;
  290. top: 3px;
  291. width: 6px;
  292. height: 11px;
  293. border: solid white;
  294. border-width: 0 3px 3px 0;
  295. -webkit-transform: rotate(45deg);
  296. -ms-transform: rotate(45deg);
  297. transform: rotate(45deg);
  298. }
  299. /* line 112, ../../sass/backend/custom.scss */
  300. .form-check-label input[type="checkbox"] ~ .checkmark:after {
  301. left: 6px;
  302. top: 2px;
  303. width: 6px;
  304. height: 10px;
  305. border: solid white;
  306. border-width: 0 3px 3px 0;
  307. -webkit-transform: rotate(45deg);
  308. -ms-transform: rotate(45deg);
  309. transform: rotate(45deg);
  310. }
  311. /* line 113, ../../sass/backend/custom.scss */
  312. .form-check-label input[type="radio"] ~ .checkmark:after {
  313. top: 4px;
  314. left: 4px;
  315. width: 8px;
  316. height: 8px;
  317. border-radius: 50%;
  318. background: white;
  319. }
  320. /* line 115, ../../sass/backend/custom.scss */
  321. .form-check-label.big input[type="checkbox"] ~ .checkmark:after {
  322. left: 7px;
  323. top: 3px;
  324. width: 6px;
  325. height: 11px;
  326. }
  327. /* Create a custom radio button */
  328. /* line 119, ../../sass/backend/custom.scss */
  329. .product-categories .parent .form-group.field-checkbox .form-check-label {
  330. padding-left: 0px;
  331. font-style: italic;
  332. }
  333. /* line 120, ../../sass/backend/custom.scss */
  334. .product-categories .children .form-group.field-checkbox {
  335. margin-left: 20px;
  336. }
  337. /* line 121, ../../sass/backend/custom.scss */
  338. .product-categories .form-group {
  339. margin-bottom: 0.15rem;
  340. }
  341. /* line 122, ../../sass/backend/custom.scss */
  342. .lc-deleted-field {
  343. display: none;
  344. }
  345. /* line 123, ../../sass/backend/custom.scss */
  346. .lc-offline-field {
  347. opacity: 0.5;
  348. }
  349. /* line 124, ../../sass/backend/custom.scss */
  350. .lc-offline-field label::after {
  351. content: ' [hors ligne]';
  352. }
  353. /* Général */
  354. /* line 130, ../../sass/backend/custom.scss */
  355. .btn.action-save {
  356. float: right;
  357. margin-left: 10px;
  358. }
  359. /* line 131, ../../sass/backend/custom.scss */
  360. .button-action a.float-right {
  361. margin-left: 10px;
  362. }
  363. /* line 133, ../../sass/backend/custom.scss */
  364. .input-group-text {
  365. padding: 0.25rem 0.75rem;
  366. }
  367. /* line 137, ../../sass/backend/custom.scss */
  368. .col-form-label {
  369. font-weight: bold;
  370. }
  371. /* line 139, ../../sass/backend/custom.scss */
  372. #toast-container.toast-top-right {
  373. top: 60px;
  374. }
  375. /* SIDEBAR */
  376. /* line 142, ../../sass/backend/custom.scss */
  377. .main-header.navbar {
  378. padding: 0;
  379. min-height: 57px;
  380. }
  381. /* line 143, ../../sass/backend/custom.scss */
  382. .lc-navbar li {
  383. border-left: 1px solid #e0e0e0;
  384. padding: 0.5rem 1.5rem;
  385. }
  386. /* line 144, ../../sass/backend/custom.scss */
  387. .lc-navbar li label {
  388. margin-bottom: 0;
  389. vertical-align: middle;
  390. font-weight: normal !important;
  391. }
  392. /* line 146, ../../sass/backend/custom.scss */
  393. #switch-merchant {
  394. min-width: 170px;
  395. }
  396. /* Sortable */
  397. /* line 152, ../../sass/backend/custom.scss */
  398. .ui-sortable-helper {
  399. display: table;
  400. }
  401. /* line 153, ../../sass/backend/custom.scss */
  402. .ui-state-highlight {
  403. background: #eee;
  404. }
  405. /* line 154, ../../sass/backend/custom.scss */
  406. .lc-sortable div:last-child {
  407. display: none;
  408. }
  409. /* Ckfinder */
  410. /*
  411. .lc-ckfinder-wrap{width: 240px; height: 170px; position: relative;}
  412. .lc-ckfinder-wrap .lc-ckfinder-illu-wrap{position:relative; : 100%; height: 139px; display: flex; align-items: center; justify-content: center; background: #eee; background-size: contain;}
  413. .lc-ckfinder-wrap .lc-ckfinder-illu{width: 100%; height: 100%; background-size: contain; position: absolute; top: 0; left: 0;z-index: 1; background-repeat: no-repeat; background-position: center center; }
  414. .lc-ckfinder-wrap .lc-ckfinder-illu-wrap i{font-size: 5rem;}
  415. .lc-ckfinder-wrap .lc-ckfinder-remove{border: 0px; font-size: 1.8rem; position: absolute;z-index: 2; color:#dc3545; top: -20px; right: -20px; background: 0; display: none;}
  416. .lc-ckfinder-wrap .lc-ckfinder-button{width: 100%; bottom: 0px; left: 0; position: absolute;}
  417. */
  418. /* VUES JS */
  419. /* line 169, ../../sass/backend/custom.scss */
  420. .nav-item .btn {
  421. padding-right: 15px;
  422. position: relative;
  423. }
  424. /* line 170, ../../sass/backend/custom.scss */
  425. .nav-item .btn .invalid-form {
  426. display: none;
  427. position: absolute;
  428. top: -7px;
  429. right: -6px;
  430. color: #dc3545;
  431. background: #fff;
  432. border-radius: 10px;
  433. font-size: 1.2rem;
  434. }
  435. /* line 171, ../../sass/backend/custom.scss */
  436. .nav-item.has-invalid .btn .invalid-form {
  437. display: inline-block;
  438. z-index: 2;
  439. }
  440. /* ProductFamily */
  441. /* line 176, ../../sass/backend/custom.scss */
  442. .field-unit-quantity {
  443. border-bottom: 2px dotted #eee;
  444. padding-bottom: 10px;
  445. margin-bottom: 20px;
  446. }
  447. /* line 177, ../../sass/backend/custom.scss */
  448. .field-reduction-apply {
  449. border-top: 2px dotted #eee;
  450. padding-top: 10px;
  451. margin-top: 20px;
  452. }
  453. /* line 179, ../../sass/backend/custom.scss */
  454. .new-productfamily #nav-params,
  455. .edit-productfamily #nav-params {
  456. margin-bottom: 30px;
  457. }
  458. /* line 184, ../../sass/backend/custom.scss */
  459. .new-productfamily #nav-params .btn,
  460. .edit-productfamily #nav-params .btn {
  461. margin-left: 20px;
  462. }
  463. /* line 189, ../../sass/backend/custom.scss */
  464. .new-productfamily #product-categories .row,
  465. .edit-productfamily #product-categories .row {
  466. padding: 10px;
  467. }
  468. /* line 194, ../../sass/backend/custom.scss */
  469. .new-productfamily #product-categories .form-group,
  470. .edit-productfamily #product-categories .form-group {
  471. width: 100%;
  472. padding: 4px;
  473. }
  474. /* line 200, ../../sass/backend/custom.scss */
  475. .new-productfamily #product-categories .children,
  476. .edit-productfamily #product-categories .children {
  477. margin-left: 20px;
  478. width: 100%;
  479. }
  480. /* line 206, ../../sass/backend/custom.scss */
  481. .new-productfamily ul.products,
  482. .edit-productfamily ul.products {
  483. padding: 0px;
  484. list-style-type: none;
  485. }
  486. /* line 212, ../../sass/backend/custom.scss */
  487. .new-productfamily ul.products li.product,
  488. .edit-productfamily ul.products li.product {
  489. padding: 0px;
  490. margin-bottom: 20px;
  491. position: relative;
  492. }
  493. /* line 219, ../../sass/backend/custom.scss */
  494. .new-productfamily ul.products li.add,
  495. .edit-productfamily ul.products li.add {
  496. text-align: right;
  497. }
  498. /* line 224, ../../sass/backend/custom.scss */
  499. .autoresize textarea {
  500. height: auto;
  501. min-height: 38px;
  502. }
  503. /* line 226, ../../sass/backend/custom.scss */
  504. .field-price .input-group.buyingPrice input, .field-price .input-group.buyingPrice .input-group-text {
  505. font-weight: bold;
  506. border-color: #222;
  507. }
  508. /* line 227, ../../sass/backend/custom.scss */
  509. .field-price .input-group.buyingPriceByRefUnit input, .field-price .input-group.buyingPriceByRefUnit .input-group-text {
  510. font-weight: bold;
  511. border-color: #222;
  512. }
  513. /* line 228, ../../sass/backend/custom.scss */
  514. .field-price .input-group.priceWithTax input, .field-price .input-group.priceWithTax .input-group-text {
  515. font-weight: bold;
  516. border-color: #222;
  517. }
  518. /* line 229, ../../sass/backend/custom.scss */
  519. .field-price .input-group.priceByRefUnitWithTax input, .field-price .input-group.priceByRefUnitWithTax .input-group-text {
  520. font-weight: bold;
  521. border-color: #222;
  522. }
  523. /* line 230, ../../sass/backend/custom.scss */
  524. .input-group.multiplyingFactor input, .input-group.multiplyingFactor .input-group-text {
  525. font-weight: bold;
  526. border-color: #222;
  527. }
  528. /* ORDER */
  529. /* line 236, ../../sass/backend/custom.scss */
  530. .table-order-summary {
  531. width: 100%;
  532. }
  533. /* line 239, ../../sass/backend/custom.scss */
  534. .order-product-item.redelivery {
  535. background: rgba(18, 104, 253, 0.38) !important;
  536. }
  537. /*.select2-container--bootstrap .select2-selection{max-width: none;}*/
  538. /*.order-product-item{margin: 15px 0; padding: 0;}*/
  539. /* Product */
  540. /* line 244, ../../sass/backend/custom.scss */
  541. .product-form-modal {
  542. display: none;
  543. }
  544. /* line 245, ../../sass/backend/custom.scss */
  545. .product-form.modal .form-check-label {
  546. font-style: italic;
  547. color: #666;
  548. text-align: left;
  549. }
  550. /* line 246, ../../sass/backend/custom.scss */
  551. .products-collection-table .inherited {
  552. color: #888;
  553. font-style: italic;
  554. font-weight: initial;
  555. }
  556. /* line 247, ../../sass/backend/custom.scss */
  557. .products-collection-table td {
  558. position: relative;
  559. }
  560. /* line 248, ../../sass/backend/custom.scss */
  561. .card-body.p-0 .products-collection-table tbody > tr > td:first-of-type, .card-body.p-0 .products-collection-table tbody > tr > th:first-of-type, .card-body.p-0 .products-collection-table thead > tr > td:first-of-type, .card-body.p-0 .products-collection-table thead > tr > th:first-of-type {
  562. padding-left: 0.35rem;
  563. }
  564. /* line 249, ../../sass/backend/custom.scss */
  565. .products-collection-table .btn-empty-field {
  566. position: absolute;
  567. right: 3px;
  568. font-size: 0.7rem;
  569. top: 5px;
  570. padding: 0px;
  571. }
  572. /* line 250, ../../sass/backend/custom.scss */
  573. #lc-product-family-edit .products-collection-table {
  574. table-layout: fixed;
  575. /* background-clip: padding-box;*/
  576. border-collapse: collapse;
  577. }
  578. /* line 251, ../../sass/backend/custom.scss */
  579. #lc-product-family-edit .products-collection-table th {
  580. font-size: 13px;
  581. border-left: 1px solid #dee2e6;
  582. border-top: 1px solid #dee2e6;
  583. text-align: center;
  584. border-bottom: 2px solid #dee2e6;
  585. position: relative;
  586. }
  587. /* line 252, ../../sass/backend/custom.scss */
  588. #lc-product-family-edit .products-collection-table tfoot th {
  589. border-top: 2px solid #dee2e6;
  590. }
  591. /* line 253, ../../sass/backend/custom.scss */
  592. #lc-product-family-edit .products-collection-table th span {
  593. white-space: initial;
  594. }
  595. /* line 254, ../../sass/backend/custom.scss */
  596. #lc-product-family-edit .products-collection-table th:last-child {
  597. border-right: 1px solid #dee2e6;
  598. }
  599. /* line 255, ../../sass/backend/custom.scss */
  600. #lc-product-family-edit .products-collection-table td {
  601. border-left: 1px solid #dee2e6;
  602. text-align: center;
  603. font-size: 13px;
  604. border-bottom: 1px solid #dee2e6;
  605. }
  606. /* line 256, ../../sass/backend/custom.scss */
  607. #lc-product-family-edit .products-collection-table td:last-child {
  608. border-right: 1px solid #dee2e6;
  609. white-space: nowrap;
  610. }
  611. /* line 257, ../../sass/backend/custom.scss */
  612. #lc-product-family-edit .btn-add-product {
  613. margin: 20px 0;
  614. float: right;
  615. }
  616. /* line 258, ../../sass/backend/custom.scss */
  617. #lc-product-family-edit .inherited {
  618. color: #888;
  619. font-style: italic;
  620. font-weight: initial;
  621. }
  622. /* line 259, ../../sass/backend/custom.scss */
  623. #lc-product-family-edit .products-collection-table td .value {
  624. min-width: 80%;
  625. margin: auto;
  626. min-height: 35px;
  627. cursor: pointer;
  628. }
  629. /* line 260, ../../sass/backend/custom.scss */
  630. #lc-product-family-edit .products-collection-table td .modal {
  631. text-align: left;
  632. }
  633. /* line 261, ../../sass/backend/custom.scss */
  634. table.products-collection-table th.main-info, td.buyingPrice, td.multiplyingFactor, td.priceWithTax {
  635. background: #eeeeee;
  636. background-clip: padding-box;
  637. text-decoration: underline;
  638. }
  639. /* line 263, ../../sass/backend/custom.scss */
  640. table.products-collection-table tr.disabled {
  641. opacity: 0.5;
  642. }
  643. /* line 264, ../../sass/backend/custom.scss */
  644. .table-striped tbody .tr-sep {
  645. border-top: 2px solid #888;
  646. }
  647. /* DeliveryZone */
  648. /* line 268, ../../sass/backend/custom.scss */
  649. #autocomplete-cities {
  650. position: relative;
  651. }
  652. /* line 272, ../../sass/backend/custom.scss */
  653. #autocomplete-cities .ui-autocomplete {
  654. left: 30%;
  655. top: 41px;
  656. margin-left: 18px;
  657. }
  658. /* line 278, ../../sass/backend/custom.scss */
  659. .head-reminders {
  660. margin-top: 15px;
  661. }
  662. /* TABLEAU DE BORD */
  663. /* line 281, ../../sass/backend/custom.scss */
  664. .todo-list > li {
  665. position: relative;
  666. }
  667. /* line 282, ../../sass/backend/custom.scss */
  668. .todo-list > li .text {
  669. margin-left: 30px;
  670. }
  671. /* line 283, ../../sass/backend/custom.scss */
  672. .todo-list > li .tools {
  673. position: absolute;
  674. top: 4px;
  675. right: 15px;
  676. }
  677. /* line 285, ../../sass/backend/custom.scss */
  678. #addTicketMessageForm {
  679. margin-top: 30px;
  680. border-top: 2px dotted #eee;
  681. padding-top: 30px;
  682. }
  683. /* line 287, ../../sass/backend/custom.scss */
  684. #dashboard .list-btn-statistic {
  685. display: flex;
  686. flex-wrap: wrap;
  687. justify-content: center;
  688. }
  689. /* line 288, ../../sass/backend/custom.scss */
  690. #dashboard .btn-statistic {
  691. width: 120px;
  692. height: 70px;
  693. text-align: center;
  694. border: 1px solid black;
  695. line-height: 1rem;
  696. }
  697. /* line 289, ../../sass/backend/custom.scss */
  698. #dashboard .btn-statistic small {
  699. margin-bottom: 10px;
  700. display: block;
  701. }
  702. /* line 290, ../../sass/backend/custom.scss */
  703. #dashboard .btn-statistic .value {
  704. display: block;
  705. }
  706. /* line 292, ../../sass/backend/custom.scss */
  707. #dashboard #range_date_interval {
  708. margin-bottom: 20px;
  709. }
  710. /* line 293, ../../sass/backend/custom.scss */
  711. #dashboard #range_date_interval label {
  712. float: left;
  713. margin-right: 20px;
  714. }
  715. /* line 294, ../../sass/backend/custom.scss */
  716. #dashboard #range_date_interval .form-check {
  717. float: left;
  718. margin-right: 10px;
  719. }
  720. /* line 295, ../../sass/backend/custom.scss */
  721. #dashboard .table-condensed .btn, #dashboard .table-condensed .btn-sm {
  722. white-space: nowrap;
  723. }
  724. /* Tickets */
  725. /* line 301, ../../sass/backend/custom.scss */
  726. #ticket-list .btn-sm {
  727. display: block;
  728. }
  729. /* line 307, ../../sass/backend/custom.scss */
  730. #toast-container {
  731. width: 350px;
  732. }
  733. /* line 308, ../../sass/backend/custom.scss */
  734. .toast {
  735. float: right;
  736. }
  737. /* line 310, ../../sass/backend/custom.scss */
  738. #toast-container:before:hover {
  739. opacity: 1;
  740. cursor: pointer;
  741. }
  742. /* line 314, ../../sass/backend/custom.scss */
  743. #toast-close-all {
  744. border: 0;
  745. position: absolute;
  746. pointer-events: auto;
  747. z-index: 999999999999999999999;
  748. background: #BD362F;
  749. border-radius: 3px;
  750. color: #fff;
  751. opacity: 0.8;
  752. top: 2px;
  753. width: 50px;
  754. height: 50px;
  755. font-size: 30px;
  756. left: 0px;
  757. text-align: center;
  758. -webkit-text-shadow: 0 1px 0 #fff;
  759. text-shadow: 0 1px 0 #fff;
  760. -moz-box-shadow: 0 0 12px #999;
  761. -webkit-box-shadow: 0 0 12px #999;
  762. box-shadow: 0 0 12px #999;
  763. }