Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.46 KB | None | 0 0
  1. /** Recomendation Index **/
  2.  
  3. @media print {
  4.     * {
  5.         color: bue;
  6.     }
  7. }
  8.  
  9. .table-area .no-content-info {
  10.     padding: 20px 0;
  11.     text-align: center;
  12. }
  13.  
  14. .table-area .table.table-actions thead tr th:last-child {
  15.     width: 100px;
  16. }
  17.  
  18. /** **/
  19. .product-modal .attributes .item {
  20.     display: flex;
  21.     align-items: flex-start;
  22. }
  23.  
  24. .product-modal .attributes .item label {
  25.     padding: 0 0px;
  26. }
  27.  
  28. .product-modal .attributes .item .form-group {
  29.     flex: 1;
  30.     margin-right: 15px;
  31. }
  32.  
  33. .product-modal .attributes .item .form-group:last-child {
  34.     flex: auto;
  35.     margin-left: 0;
  36.     max-width: 32px;
  37.     margin-top: 17px;
  38. }
  39.  
  40. .product-modal .attributes .item .form-group .btn {
  41.     padding: 11px 15px;
  42. }
  43.  
  44. /** **/
  45.  
  46. .recomendation.index .panel .tab-content {
  47.     margin-top: 20px;
  48. }
  49.  
  50. .recomendation.index .table-nav-buttons {
  51.     display: block;
  52.     margin-top: 30px;
  53. }
  54.  
  55. .recomendation.index .table-nav-buttons button {
  56.     width: 100%;    
  57. }
  58.  
  59. .recomendation table.table-values > tbody tr td {
  60.     text-align: center;
  61.     padding: 4px 8px;
  62.     height: 40px;
  63. }
  64.  
  65. .recomendation table.table-values > tbody tr td:not(:nth-child(2n)):hover, .recomendation table tfoot tr.sum-totals td.total-td:hover {
  66.     font-weight: 600;
  67.     cursor: pointer;
  68. }
  69.  
  70. .recomendation.index td[data-id="products"] .tag {
  71.     display: inline;
  72. }
  73.  
  74. .recomendation.index td[data-id="products"] .tag button {
  75.     position: relative;
  76.     text-overflow: initial;
  77.     margin-top: -26px;
  78.     margin-left: -22px;
  79.     width: 22px;
  80.     height: 21px;
  81.     padding: 2px;
  82. }
  83.  
  84. .recomendation.index td[data-id="products"] .tag a {
  85.     margin: 0 6px 0 6px;
  86.     border-radius: 6px;
  87.     border-color: #47484a;
  88. }
  89.  
  90. .recomendation.index .fields-list .recomendation-controls a {
  91.     margin: 0 3px 0 3px;   
  92. }
  93.  
  94. .recomendation.index .fields-list .recomendation-controls {
  95.     margin-top: 23px;
  96.     float: right;
  97. }
  98.  
  99. .modal-content-new-product table.table-products-recomendation tr.product-checked {
  100.     background: #fbfbfe;
  101. }
  102.  
  103. .recomendation table.table-values > tbody tr td.total-td,
  104. .recomendation table.table-values > tbody tr td:nth-child(2),
  105. .recomendation table.table-values > tfoot tr:first-child td {
  106.     background-color: #f7f7f7;
  107. }
  108.  
  109. .recomendation .resources .table-area .no-content-info h5 {
  110.     text-align: center;
  111. }
  112.  
  113. .recomendation table tr:not(.price-fields) td input {
  114.     border: none;
  115.     background: none;
  116.     padding: 0;
  117.     text-align: center;
  118.     height: auto !important;
  119.     line-height: 16px;
  120.     max-width: 70px;
  121.     outline: none;
  122.     background-color: #fff;
  123.     font-weight: 600;
  124.     padding: 5px;
  125.     border-radius: 5px;
  126.     color: #333;
  127.     border: 1px solid #ddd;
  128. }
  129.  
  130. .recomendation .total-values-footer-controls {
  131.     float: right;
  132. }
  133.  
  134. .recomendation .btn-print {
  135.     width: 100%;
  136. }
  137.  
  138. .recomendation .tab-total table tbody tr[data-field-id] td {
  139.     line-height: 35px;
  140. }
  141.  
  142. .recomendation .tab-total table tbody tr[data-field-id] td.total-app-value:hover {
  143.     cursor: pointer;
  144. }
  145.  
  146. .recomendation .tab-total table tbody tr td.total-app-value input {
  147.     border: none;
  148.     outline: none;
  149.     font-weight: 600;
  150.     padding: 0;
  151.     text-align: center;
  152.     background-color: #fff;
  153.     line-height: 25px;
  154.     height: auto !important;
  155.     border-radius: 5px;
  156.     color: #333;
  157.     max-width: 120px;
  158.     border: 1px solid #ddd;
  159. }
  160.  
  161. .recomendation .tab-total table tbody tr.price-fields td > input {
  162.     text-align: center;
  163. }
  164.  
  165. .recomendation table.table-values > tfoot tr:first-child {
  166.     height: 40px;
  167. }
  168.  
  169. .recomendation table.table-values > tfoot tr:first-child td {
  170.     padding: 18px 0 15px 0;
  171. }
  172.  
  173. .recomendation table.table-values > tfoot tr:not(:first-child) th:first-child {
  174.     font-weight: 700;
  175.     color: #474a51;
  176. }
  177.  
  178. .recomendation table.table-values > tfoot tr td,
  179. .recomendation table.table-values > tbody tr td.total-td,
  180. .recomendation table.table-values > tbody tr td:nth-child(2) {
  181.     color: #595d65;
  182.     text-align: center;
  183.     font-weight: 600;
  184. }
  185.  
  186. .recomendation table.table-values > tbody tr:hover td {
  187.     background-color: #34bf65;
  188.     color: #fff;
  189. }
  190.  
  191. .recomendation .btn-partition > i {
  192.     cursor: pointer;
  193.     margin-left: 3px;
  194. }
  195.  
  196. .recomendation.index .main-content>.content .subheader {
  197.     margin-bottom: 17px !important;
  198. }
  199.  
  200. .recomendation .crop-info {
  201.     margin-bottom: 15px;
  202. }
  203.  
  204. .recomendation .crop-info h3 {
  205.     margin: 0 0 4px;
  206.     font-size: 20px;
  207. }
  208.  
  209. .recomendation .crop-info h4 {
  210.     margin: 0 0 4px;
  211.     font-size: 16px;
  212.     color: #777;
  213. }
  214.  
  215. .recomendation .crop-info h5 {
  216.     margin: 0;
  217.     font-size: 16px;
  218.     font-weight: 700;
  219. }
  220.  
  221. .recomendation .tab-content .tab-pane {
  222.     padding-top: 0px;
  223. }
  224.  
  225. .recomendation .code p {
  226.     margin: 0;
  227.     font-size: 12px;
  228. }
  229.  
  230. .recomendation .tab-total table tbody tr:not([data-field-id]) > td:first-child {
  231.     font-weight: 600;
  232. }
  233.  
  234. .recomendation .table-values thead tr:first-child th[data-id] {
  235.     cursor: pointer;
  236. }
  237.  
  238. .recomendation .table-values thead th:not(.btn-partition) > i {
  239.     margin-left: 7px;
  240. }
  241.  
  242. /** Simulation Prices Form **/
  243. form[name="params-application-form"] .range-values input {
  244.     margin-bottom: 17px;
  245. }
  246.  
  247. form[name="params-application-form"] .range-values ul.parsley-errors-list > li {
  248.     margin-top: -10px;
  249. }
  250.  
  251. form[name="params-application-form"] .form-group .range-values label {
  252.     margin-top: 8px;
  253. }
  254.  
  255. /** Modal **/
  256. .recomendation-partition-modal .modal-content input {
  257.     margin-top: 9px;
  258. }
  259.  
  260. .recomendation.index .resources .equations table td {
  261.     font-style: italic;
  262.     font-size: 13px;
  263. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement