Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 1 | @import "frappe/public/scss/variables"; |
| 2 | |
| 3 | .product-image img { |
| 4 | min-height: 20rem; |
| 5 | max-height: 30rem; |
| 6 | } |
| 7 | |
| 8 | .filter-options { |
| 9 | max-height: 300px; |
| 10 | overflow: auto; |
| 11 | } |
| 12 | |
| 13 | .item-slideshow-image { |
| 14 | height: 3rem; |
| 15 | width: 3rem; |
| 16 | object-fit: contain; |
| 17 | padding: 0.5rem; |
| 18 | border: 1px solid $border-color; |
| 19 | border-radius: 4px; |
| 20 | cursor: pointer; |
| 21 | |
| 22 | &:hover, &.active { |
| 23 | border-color: $primary; |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | .address-card { |
| 28 | cursor: pointer; |
| 29 | position: relative; |
| 30 | |
| 31 | .check { |
| 32 | display: none; |
| 33 | } |
| 34 | |
| 35 | &.active { |
| 36 | border-color: $primary; |
| 37 | |
| 38 | .check { |
| 39 | display: inline-flex; |
| 40 | } |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | .check { |
| 45 | display: inline-flex; |
| 46 | padding: 0.25rem; |
| 47 | background: $primary; |
| 48 | color: white; |
| 49 | border-radius: 50%; |
| 50 | font-size: 12px; |
| 51 | width: 24px; |
| 52 | height: 24px; |
| 53 | } |
Faris Ansari | 38ac7f7 | 2019-10-09 11:41:33 +0530 | [diff] [blame] | 54 | |
| 55 | .website-list .result { |
| 56 | margin-top: 2rem; |
| 57 | } |
| 58 | |
| 59 | .result { |
| 60 | border-bottom: 1px solid $border-color; |
| 61 | } |
| 62 | |
| 63 | .transaction-list-item { |
| 64 | padding: 1rem 0; |
| 65 | border-top: 1px solid $border-color; |
| 66 | position: relative; |
| 67 | |
| 68 | a.transaction-item-link { |
| 69 | position: absolute; |
| 70 | top: 0; |
| 71 | left: 0; |
| 72 | width: 100%; |
| 73 | height: 100%; |
| 74 | text-decoration: none; |
| 75 | opacity: 0; |
| 76 | overflow: hidden; |
| 77 | text-indent: -9999px; |
| 78 | z-index: 0; |
| 79 | } |
| 80 | } |
Vishal Dhayagude | 24e79b1 | 2020-04-07 12:18:47 +0530 | [diff] [blame] | 81 | |
| 82 | .place-order-container { |
| 83 | text-align: right; |
Shivam Mishra | 7057a80 | 2020-06-17 18:35:38 +0530 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | .kb-card { |
| 87 | .card-body > .card-title { |
| 88 | line-height: 1.3; |
| 89 | } |
Vishal Dhayagude | 24e79b1 | 2020-04-07 12:18:47 +0530 | [diff] [blame] | 90 | } |