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.

1096 lines
17 KiB

  1. /**
  2. Cagette.net SASS stylesheet
  3. Use it with with bootstrap 3
  4. **/
  5. @import url("https://fonts.googleapis.com/css?family=Cabin:400,400i,700");
  6. //@import '_shop';
  7. @import "_map";
  8. /*body{
  9. background-color:#F8F4E5 !important;
  10. }*/
  11. h1,
  12. h2,
  13. h3,
  14. h4 {
  15. margin-top: 4px !important;
  16. margin-bottom: 8px !important;
  17. font-style: italic;
  18. }
  19. /* buttons */
  20. /*.btn {
  21. text-transform: uppercase;
  22. font-size: 14px !important;
  23. padding : 7px 25px !important;
  24. font-weight:normal !important;
  25. }
  26. /*.btn-lg{
  27. font-size: 16px !important;
  28. }
  29. .btn-sm {
  30. font-size: 12px !important;
  31. padding : 5px 10px !important;
  32. }
  33. .btn-xs {
  34. font-size: 11px !important;
  35. padding : 2px 5px !important;
  36. }
  37. .btn-link {
  38. text-transform: none;
  39. }*/
  40. a {
  41. cursor: pointer;
  42. }
  43. /* navigation */
  44. ul.nav li {
  45. text-transform: uppercase;
  46. font-size: 14px;
  47. }
  48. /* subnav in contractadmin*/
  49. .nav-pills > li.active > a {
  50. background-color: #efe9d5 !important;
  51. color: #e95216 !important;
  52. }
  53. /* Footer */
  54. #footer {
  55. background: #84bd55;
  56. border-radius: 8px;
  57. padding: 20px;
  58. margin: 0;
  59. ul > li > a {
  60. color: #333;
  61. }
  62. ul {
  63. margin: 3px 0 0;
  64. padding: 0;
  65. text-align: left;
  66. list-style: none;
  67. font-size: 14px;
  68. }
  69. .cagsocialmedia li a {
  70. color: #fff;
  71. font-size: 20px;
  72. min-width: 32px;
  73. /*height: 32px;*/
  74. padding: 2px 0 0;
  75. display: inline-block;
  76. }
  77. .cagsocialmedia {
  78. vertical-align: top;
  79. }
  80. .cagsocialmedia li {
  81. display: inline-block;
  82. text-align: center;
  83. }
  84. .cagfb {
  85. background-color: #4267b2;
  86. }
  87. .cagtwitter {
  88. background-color: #1da1f2;
  89. }
  90. .cagyoutube {
  91. background-color: #ff0000;
  92. }
  93. }
  94. #subfooter {
  95. /*background-color : #313131;
  96. color : #fff;*/
  97. text-align: center;
  98. font-size: 14px;
  99. padding: 15px 0 25px 0;
  100. span {
  101. color: #979797;
  102. font-size: 11px;
  103. }
  104. }
  105. .sqlLog {
  106. margin-top: 24px;
  107. font-size: 10px;
  108. background: #aaa;
  109. a {
  110. color: #666;
  111. }
  112. }
  113. .contact {
  114. border: 2px solid #ccc;
  115. border-radius: 8px;
  116. margin: 8px;
  117. padding: 8px;
  118. width: 250px;
  119. min-height: 100px;
  120. }
  121. .homeBlock {
  122. margin-bottom: 32px;
  123. background: #fff;
  124. border-radius: 8px;
  125. position: relative;
  126. padding: 8px;
  127. .content {
  128. margin: 8px 8px 8px 90px;
  129. }
  130. }
  131. //pour les hauts de nav
  132. span.panel-title {
  133. color: #966125 !important;
  134. font-size: 20px !important;
  135. font-weight: normal !important;
  136. }
  137. .article {
  138. margin-bottom: 16px;
  139. background: #fff;
  140. border-radius: 8px;
  141. position: relative;
  142. padding: 8px;
  143. }
  144. .white {
  145. margin-bottom: 16px;
  146. background: #fff;
  147. border-radius: 4px;
  148. position: relative;
  149. }
  150. .disabled {
  151. opacity: 0.5;
  152. }
  153. /* block marron */
  154. .block {
  155. margin-bottom: 12px;
  156. background: #fff;
  157. border-radius: 8px;
  158. position: relative;
  159. padding: 8px;
  160. }
  161. /* block marron + contours */
  162. .block2 {
  163. margin-bottom: 32px;
  164. background: #f0d277;
  165. border-radius: 8px;
  166. position: relative;
  167. padding: 8px;
  168. border: 2px solid #c3a04c;
  169. }
  170. /* product in shop */
  171. table.product {
  172. td {
  173. padding: 8px;
  174. vertical-align: top;
  175. }
  176. width: 100%;
  177. height: 135px;
  178. overflow: auto;
  179. .desc {
  180. font-size: 90%;
  181. color: #666;
  182. }
  183. a.productName {
  184. line-height: 20px;
  185. display: block;
  186. font-weight: bold;
  187. }
  188. }
  189. /* GLOBAL TABLE SKINNING */
  190. //separator between rows
  191. table.table tr.head > td {
  192. //border-top: 1px solid #BBB;
  193. border-top: 3px solid #ddd;
  194. height: 30px;
  195. font-size: 120%;
  196. vertical-align: bottom;
  197. }
  198. //sub-row, darker bg
  199. table.table tr.subrow {
  200. background-color: #eee;
  201. }
  202. //listing have no overflow
  203. table.listing tr td {
  204. white-space: nowrap;
  205. overflow-x: hidden;
  206. }
  207. table.table tr.disabled td,
  208. table.table tr.inactive td {
  209. opacity: 0.4;
  210. }
  211. /* DIV TABLE */
  212. // used in UserOrder react comp
  213. div.tableHeader {
  214. font-weight: bold;
  215. color: #aaa;
  216. border-bottom: 1px solid #ddd;
  217. margin-bottom: 12px;
  218. }
  219. /*table.table>tbody>tr>th{
  220. background-color:white;
  221. color:#BBB;
  222. border-top:none;
  223. }*/
  224. div.reportHeader {
  225. background-color: #ddd;
  226. }
  227. /* a product order in a table style */
  228. .productOrder {
  229. border-bottom: 1px solid #ddd;
  230. margin-bottom: 6px;
  231. .infos {
  232. color: #aaa;
  233. font-size: 0.8em;
  234. }
  235. }
  236. /* A product reference */
  237. .ref {
  238. color: #aaa;
  239. font-family: monospace;
  240. font-size: 0.9em;
  241. }
  242. /* Link to share */
  243. .linkToShare {
  244. font-family: Monospace;
  245. padding: 12px;
  246. border: 1px solid #ddd;
  247. border-radius: 6px;
  248. background-color: #f5f5f5;
  249. }
  250. /* make <a> like clickable divs */
  251. .clickable {
  252. display: block;
  253. border: 1px solid #ccc;
  254. border-radius: 8px;
  255. color: inherit;
  256. background-color: white;
  257. margin-bottom: 12px;
  258. padding: 8px;
  259. &:hover {
  260. cursor: pointer;
  261. background-color: lighten(#f0d277, 10%);
  262. border-color: darken(#f0d277, 10%);
  263. text-decoration: none;
  264. transition: all 0.15s ease;
  265. }
  266. &:active {
  267. cursor: pointer;
  268. background-color: #f0d277;
  269. border-color: darken(#f0d277, 10%);
  270. text-decoration: none;
  271. transform: scale(0.95);
  272. }
  273. &.disabled {
  274. background-color: lightgray;
  275. cursor: not-allowed;
  276. }
  277. }
  278. /* a cagette group block (use it with .clickable ) */
  279. .groupBlock {
  280. height: 110px;
  281. overflow: hidden;
  282. vertical-align: top;
  283. position: relative;
  284. .address {
  285. font-size: 0.9em;
  286. }
  287. .distance {
  288. font-weight: bold;
  289. color: #84bd55;
  290. font-size: 1.2em;
  291. position: absolute;
  292. right: 8px;
  293. bottom: 6px;
  294. }
  295. }
  296. /* a cagette pro block (use it with .clickable ) */
  297. .proBlock {
  298. height: 110px;
  299. overflow: hidden;
  300. vertical-align: top;
  301. position: relative;
  302. background: #bad096;
  303. &:hover {
  304. background: darken(#bad096, 10%);
  305. }
  306. /*span.cpro{
  307. position: absolute;
  308. right:0px;
  309. top:0px;
  310. background:darken(#bad096,30%);
  311. color:yellow;
  312. height: 12px;
  313. padding:4px;
  314. font-weight: bold;
  315. }*/
  316. }
  317. .header {
  318. .accountBlock {
  319. a {
  320. color: #777;
  321. }
  322. }
  323. }
  324. /*
  325. SHOP v1
  326. */
  327. .shop {
  328. .header {
  329. background-color: #749e3c;
  330. display: inline-block;
  331. width: 100%;
  332. border-top-left-radius: 8px;
  333. border-top-right-radius: 8px;
  334. padding: 12px;
  335. font-size: 16px;
  336. line-height: 22px;
  337. color: white;
  338. a {
  339. color: white;
  340. }
  341. .info {
  342. font-weight: bold;
  343. }
  344. }
  345. .body {
  346. background: white;
  347. display: inline-block;
  348. width: 100%;
  349. padding-top: 12px;
  350. .catHeader {
  351. font-weight: bold;
  352. font-size: 1.2em;
  353. color: #583816;
  354. border-bottom: 1px solid #ccc;
  355. width: 100%;
  356. }
  357. }
  358. .product {
  359. display: inline-block;
  360. .name {
  361. padding-left: 8px;
  362. }
  363. .warning {
  364. font-size: 11px;
  365. color: #900;
  366. font-weight: bold;
  367. }
  368. }
  369. }
  370. .price {
  371. font-weight: bold;
  372. font-size: 1.3em;
  373. }
  374. .vat {
  375. color: #999999;
  376. //font-size:80%;
  377. }
  378. .detail {
  379. color: #999999;
  380. font-size: 90%;
  381. }
  382. //in shop page
  383. #cartContainer.scrolled {
  384. position: fixed;
  385. top: 125px;
  386. }
  387. .cartDiv {
  388. margin-bottom: 16px;
  389. background: #007700;
  390. border-radius: 8px;
  391. position: relative;
  392. padding: 8px;
  393. color: white;
  394. h2 {
  395. color: white !important;
  396. }
  397. a.infos {
  398. margin-top: 8px;
  399. font-size: 12px;
  400. color: white !important;
  401. display: block;
  402. }
  403. #cart {
  404. margin-bottom: 12px;
  405. div.order {
  406. margin-bottom: 8px;
  407. a {
  408. margin-right: 8px;
  409. }
  410. }
  411. div.total {
  412. font-size: 120%;
  413. //font-weight:bold;
  414. margin-bottom: 12px;
  415. margin-top: 12px;
  416. border-top: 1px solid #fff;
  417. }
  418. }
  419. }
  420. .place {
  421. color: #666;
  422. font-weight: bold;
  423. margin-top: 13px;
  424. padding: 8px;
  425. font-size: 13px;
  426. border-top: 1px solid #ccc;
  427. }
  428. .distribMessage {
  429. color: #fff;
  430. font-weight: bold;
  431. padding: 4px;
  432. margin-top: 13px;
  433. font-size: 13px;
  434. background-color: #080;
  435. /*border-top:1px solid #333 ;*/
  436. }
  437. .dateBoxOffset {
  438. position: absolute;
  439. top: -16px;
  440. left: -18px;
  441. display: block;
  442. }
  443. .dateBox {
  444. border-radius: 8px;
  445. background-color: #c59654;
  446. color: #fff;
  447. font-size: 13px;
  448. line-height: 13px;
  449. text-align: center;
  450. vertical-align: middle;
  451. width: 90px;
  452. margin: 0;
  453. padding: 4px;
  454. box-shadow: 4px 4px 0px #292929;
  455. .box {
  456. line-height: 22px;
  457. background-color: #ffffff;
  458. color: #666;
  459. font-size: 14px;
  460. font-weight: bold;
  461. text-align: center;
  462. margin: 0px;
  463. border-radius: 4px;
  464. }
  465. /* place link */
  466. a {
  467. color: #ffffff !important;
  468. }
  469. a:hover {
  470. color: #ffffff !important;
  471. }
  472. }
  473. /* categories */
  474. span.tag {
  475. color: white;
  476. font-size: 80%;
  477. //font-weight:bold;
  478. padding: 4px;
  479. background-color: #666666;
  480. border-radius: 4px;
  481. line-height: 30px;
  482. }
  483. span.tag.active {
  484. padding: 12px;
  485. font-size: 16px;
  486. line-height: 45px;
  487. }
  488. /**
  489. Popovers for help and tutorials
  490. **/
  491. .popover {
  492. color: white;
  493. font-size: 14px;
  494. //font-family:'Arial','sans-serif' !important;
  495. h3.popover-title {
  496. padding: 4px;
  497. color: #bb9931 !important;
  498. border-bottom: 1px solid #bb9931 !important;
  499. background-color: none;
  500. }
  501. .popover-content {
  502. font-size: 16px;
  503. b {
  504. color: #fc0;
  505. font-weight: normal;
  506. }
  507. }
  508. .footer {
  509. border-top: 1px solid #bb9931;
  510. height: 45px;
  511. padding: 12px 0;
  512. .pull-left .btn {
  513. background-color: #583816;
  514. color: white;
  515. border: 1px solid white;
  516. }
  517. .pull-right .btn {
  518. background-color: #fc0;
  519. color: #583816;
  520. border: 1px solid #583816;
  521. }
  522. }
  523. }
  524. /* skin a modal like a tuto popover */
  525. .modal.help {
  526. .modal-header {
  527. font-size: 1.3em;
  528. color: #bb9931 !important;
  529. border-bottom: 1px solid #bb9931 !important;
  530. font-weight: bold !important;
  531. //font-family:'Arial','sans-serif' !important;
  532. background-color: #583816 !important;
  533. }
  534. .modal-content {
  535. background-color: #583816 !important;
  536. color: white;
  537. }
  538. .modal-footer {
  539. border-top: 1px solid #bb9931 !important;
  540. }
  541. }
  542. /* hightlight a zone for tutos */
  543. .highlight {
  544. border: 2px dashed orange;
  545. border-radius: 16px;
  546. }
  547. /* Distribution box for the homepage */
  548. .distrib {
  549. margin: 0px 0px 28px 0px;
  550. position: relative;
  551. .header {
  552. display: block;
  553. height: 72px;
  554. overflow: hidden;
  555. border-top-left-radius: 8px;
  556. border-top-right-radius: 8px;
  557. color: #fff;
  558. background-color: #749e3c;
  559. vertical-align: middle;
  560. margin: 0;
  561. padding: 6px 6px 6px 90px;
  562. &.disabled {
  563. background-color: #999;
  564. opacity: 1;
  565. }
  566. &.orders {
  567. background-color: #b2823f;
  568. }
  569. .info {
  570. font-size: 16px;
  571. line-height: 22px;
  572. /* place link */
  573. a {
  574. color: #ffffff !important;
  575. &:hover {
  576. color: #ffffff !important;
  577. }
  578. }
  579. }
  580. .date {
  581. line-height: 23px;
  582. background-color: #ffffff;
  583. color: #666;
  584. font-size: 14px;
  585. text-align: center;
  586. margin: 0 8px 0 0;
  587. border-radius: 6px;
  588. border: 4px solid #c6c6c6;
  589. }
  590. .address,
  591. .closing {
  592. font-weight: normal;
  593. font-size: 0.9em;
  594. line-height: 16px;
  595. }
  596. }
  597. .myorder {
  598. font-weight: bold;
  599. color: #999;
  600. background: white;
  601. padding: 11px 0 4px 16px;
  602. }
  603. .content {
  604. padding: 6px 6px 6px 6px;
  605. background-color: #85b14d;
  606. border-bottom-left-radius: 8px;
  607. border-bottom-right-radius: 8px;
  608. &.disabled {
  609. background: #aaa;
  610. opacity: 1;
  611. }
  612. &.orders {
  613. background: #fff;
  614. padding-left: 50px;
  615. }
  616. .footer {
  617. color: #999;
  618. a {
  619. color: #999;
  620. }
  621. font-size: 0.9em;
  622. }
  623. }
  624. }
  625. div.groupImg {
  626. background: no-repeat center;
  627. background-size: cover;
  628. width: 110px;
  629. height: 110px;
  630. }
  631. // product thumbnail for shop and home page
  632. div.productImg {
  633. display: inline-block;
  634. border-radius: 3px;
  635. width: 70px;
  636. height: 70px;
  637. margin: 4px;
  638. background: no-repeat center;
  639. background-size: cover;
  640. //margin:0;
  641. }
  642. //Product React component
  643. div.product {
  644. div.productImg {
  645. margin-right: 12px;
  646. vertical-align: middle;
  647. }
  648. }
  649. //Product in ProductSelect React component
  650. div.productSelect {
  651. /*div.selector{
  652. width:64px;
  653. height: 64px;
  654. display: inline-block;
  655. cursor: pointer;
  656. &.active{
  657. background-color: #007700;
  658. }
  659. &:hover{
  660. background-color: #00AA00;
  661. }
  662. }*/
  663. div.product {
  664. display: inline-block;
  665. }
  666. }
  667. // Cagette Pro Catalogs
  668. div.productBox {
  669. div.productImg {
  670. background-size: cover;
  671. height: 220px;
  672. width: 220px;
  673. background-position: center center;
  674. border-radius: 6px;
  675. }
  676. div.productName {
  677. display: block;
  678. font-weight: bold;
  679. color: #967820;
  680. text-align: center;
  681. font-size: 1.2em;
  682. margin-bottom: 4px;
  683. }
  684. .price {
  685. font-weight: bold;
  686. text-align: right;
  687. }
  688. }
  689. // typeahead ( autocomplete js lib )
  690. .tt-menu {
  691. background-color: #f5e3ac;
  692. }
  693. .tt-suggestion {
  694. background-color: #f5e3ac;
  695. padding: 8px;
  696. border-top: 1px solid #ccc;
  697. color: darken(#f5e3ac, 60%);
  698. cursor: pointer;
  699. font-style: italic;
  700. &:hover {
  701. background-color: darken(#f5e3ac, 10%);
  702. }
  703. }
  704. //txp product input
  705. #pInput {
  706. .txpProduct {
  707. color: #aaa;
  708. font-weight: bold;
  709. font-size: 0.8em;
  710. margin: 4px 0;
  711. }
  712. img {
  713. max-width: 100px;
  714. max-height: 100px;
  715. }
  716. }
  717. //Product composer
  718. /*
  719. div.ProductComp{
  720. margin:8px 0;
  721. padding:8px 0;
  722. border-bottom:solid 1px #CCC;
  723. }
  724. .ComposerApp{
  725. .add-button{
  726. vertical-align:top !important;
  727. }
  728. }
  729. */
  730. //basket
  731. div.basketNumber {
  732. display: inline-block;
  733. background-color: #333;
  734. border-radius: 10px;
  735. padding: 6px;
  736. font-weight: bold;
  737. color: #ccc;
  738. }
  739. tr.success td div.basketNumber {
  740. background-color: #070;
  741. color: white;
  742. }
  743. tr.danger td div.basketNumber {
  744. background-color: #d9534f;
  745. color: white;
  746. }
  747. /* fixed bar on bottom for buttons */
  748. .fixedBar {
  749. position: fixed;
  750. bottom: 0;
  751. left: 0;
  752. background: white;
  753. width: 100%;
  754. margin: 0;
  755. padding: 8px;
  756. border-top: 3px solid #ccc;
  757. z-index: 99;
  758. }
  759. /*!
  760. * https://github.com/YouCanBookMe/react-datetime
  761. */
  762. .rdt {
  763. position: relative;
  764. }
  765. .rdtPicker {
  766. display: none;
  767. position: absolute;
  768. width: 250px;
  769. padding: 4px;
  770. margin-top: 1px;
  771. z-index: 99999 !important;
  772. background: #fff;
  773. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  774. border: 1px solid #f9f9f9;
  775. }
  776. .rdtOpen .rdtPicker {
  777. display: block;
  778. }
  779. .rdtStatic .rdtPicker {
  780. box-shadow: none;
  781. position: static;
  782. }
  783. .rdtPicker .rdtTimeToggle {
  784. text-align: center;
  785. }
  786. .rdtPicker table {
  787. width: 100%;
  788. margin: 0;
  789. }
  790. .rdtPicker td,
  791. .rdtPicker th {
  792. text-align: center;
  793. height: 28px;
  794. }
  795. .rdtPicker td {
  796. cursor: pointer;
  797. }
  798. .rdtPicker td.rdtDay:hover,
  799. .rdtPicker td.rdtHour:hover,
  800. .rdtPicker td.rdtMinute:hover,
  801. .rdtPicker td.rdtSecond:hover,
  802. .rdtPicker .rdtTimeToggle:hover {
  803. background: #eeeeee;
  804. cursor: pointer;
  805. }
  806. .rdtPicker td.rdtOld,
  807. .rdtPicker td.rdtNew {
  808. color: #999999;
  809. }
  810. .rdtPicker td.rdtToday {
  811. position: relative;
  812. }
  813. .rdtPicker td.rdtToday:before {
  814. content: "";
  815. display: inline-block;
  816. border-left: 7px solid transparent;
  817. border-bottom: 7px solid #428bca;
  818. border-top-color: rgba(0, 0, 0, 0.2);
  819. position: absolute;
  820. bottom: 4px;
  821. right: 4px;
  822. }
  823. .rdtPicker td.rdtActive,
  824. .rdtPicker td.rdtActive:hover {
  825. background-color: #428bca;
  826. color: #fff;
  827. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  828. }
  829. .rdtPicker td.rdtActive.rdtToday:before {
  830. border-bottom-color: #fff;
  831. }
  832. .rdtPicker td.rdtDisabled,
  833. .rdtPicker td.rdtDisabled:hover {
  834. background: none;
  835. color: #999999;
  836. cursor: not-allowed;
  837. }
  838. .rdtPicker td span.rdtOld {
  839. color: #999999;
  840. }
  841. .rdtPicker td span.rdtDisabled,
  842. .rdtPicker td span.rdtDisabled:hover {
  843. background: none;
  844. color: #999999;
  845. cursor: not-allowed;
  846. }
  847. .rdtPicker th {
  848. border-bottom: 1px solid #f9f9f9;
  849. }
  850. .rdtPicker .dow {
  851. width: 14.2857%;
  852. border-bottom: none;
  853. }
  854. .rdtPicker th.rdtSwitch {
  855. width: 100px;
  856. }
  857. .rdtPicker th.rdtNext,
  858. .rdtPicker th.rdtPrev {
  859. font-size: 21px;
  860. vertical-align: top;
  861. }
  862. .rdtPrev span,
  863. .rdtNext span {
  864. display: block;
  865. -webkit-touch-callout: none; /* iOS Safari */
  866. -webkit-user-select: none; /* Chrome/Safari/Opera */
  867. -khtml-user-select: none; /* Konqueror */
  868. -moz-user-select: none; /* Firefox */
  869. -ms-user-select: none; /* Internet Explorer/Edge */
  870. user-select: none;
  871. }
  872. .rdtPicker th.rdtDisabled,
  873. .rdtPicker th.rdtDisabled:hover {
  874. background: none;
  875. color: #999999;
  876. cursor: not-allowed;
  877. }
  878. .rdtPicker thead tr:first-child th {
  879. cursor: pointer;
  880. }
  881. .rdtPicker thead tr:first-child th:hover {
  882. background: #eeeeee;
  883. }
  884. .rdtPicker tfoot {
  885. border-top: 1px solid #f9f9f9;
  886. }
  887. .rdtPicker button {
  888. border: none;
  889. background: none;
  890. cursor: pointer;
  891. }
  892. .rdtPicker button:hover {
  893. background-color: #eee;
  894. }
  895. .rdtPicker thead button {
  896. width: 100%;
  897. height: 100%;
  898. }
  899. td.rdtMonth,
  900. td.rdtYear {
  901. height: 50px;
  902. width: 25%;
  903. cursor: pointer;
  904. }
  905. td.rdtMonth:hover,
  906. td.rdtYear:hover {
  907. background: #eee;
  908. }
  909. .rdtCounters {
  910. display: inline-block;
  911. }
  912. .rdtCounters > div {
  913. float: left;
  914. }
  915. .rdtCounter {
  916. height: 100px;
  917. }
  918. .rdtCounter {
  919. width: 40px;
  920. }
  921. .rdtCounterSeparator {
  922. line-height: 100px;
  923. }
  924. .rdtCounter .rdtBtn {
  925. height: 40%;
  926. line-height: 40px;
  927. cursor: pointer;
  928. display: block;
  929. -webkit-touch-callout: none; /* iOS Safari */
  930. -webkit-user-select: none; /* Chrome/Safari/Opera */
  931. -khtml-user-select: none; /* Konqueror */
  932. -moz-user-select: none; /* Firefox */
  933. -ms-user-select: none; /* Internet Explorer/Edge */
  934. user-select: none;
  935. }
  936. .rdtCounter .rdtBtn:hover {
  937. background: #eee;
  938. }
  939. .rdtCounter .rdtCount {
  940. height: 20%;
  941. font-size: 1.2em;
  942. }
  943. .rdtMilli {
  944. vertical-align: middle;
  945. padding-left: 8px;
  946. width: 48px;
  947. }
  948. .rdtMilli input {
  949. width: 100%;
  950. font-size: 1.2em;
  951. margin-top: 37px;
  952. }