Summayya Hashmani | da43a5e | 2022-10-04 09:57:07 +0530 | [diff] [blame] | 1 | @import './order-page'; |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 2 | |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 3 | .filter-options { |
| 4 | max-height: 300px; |
| 5 | overflow: auto; |
| 6 | } |
| 7 | |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 8 | .address-card { |
| 9 | cursor: pointer; |
| 10 | position: relative; |
| 11 | |
| 12 | .check { |
| 13 | display: none; |
| 14 | } |
| 15 | |
| 16 | &.active { |
prssanna | 60ea785 | 2021-05-18 15:42:13 +0530 | [diff] [blame] | 17 | border-color: var(--primary); |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 18 | |
| 19 | .check { |
| 20 | display: inline-flex; |
| 21 | } |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | .check { |
| 26 | display: inline-flex; |
prssanna | eb0e596 | 2020-12-24 11:40:33 +0530 | [diff] [blame] | 27 | padding: 0.25rem; |
prssanna | 60ea785 | 2021-05-18 15:42:13 +0530 | [diff] [blame] | 28 | background: var(--primary); |
prssanna | eb0e596 | 2020-12-24 11:40:33 +0530 | [diff] [blame] | 29 | color: white; |
| 30 | border-radius: 50%; |
Faris Ansari | 5f8b358 | 2019-03-19 11:48:32 +0530 | [diff] [blame] | 31 | font-size: 12px; |
| 32 | width: 24px; |
| 33 | height: 24px; |
| 34 | } |
Faris Ansari | 38ac7f7 | 2019-10-09 11:41:33 +0530 | [diff] [blame] | 35 | |
Summayya Hashmani | da43a5e | 2022-10-04 09:57:07 +0530 | [diff] [blame] | 36 | .website-list { |
| 37 | background-color: var(--fg-color); |
| 38 | padding: 0 var(--padding-lg); |
| 39 | border-radius: var(--border-radius-md); |
Faris Ansari | 38ac7f7 | 2019-10-09 11:41:33 +0530 | [diff] [blame] | 40 | |
Summayya Hashmani | da43a5e | 2022-10-04 09:57:07 +0530 | [diff] [blame] | 41 | @media screen and (max-width: 567px) { |
| 42 | margin-left: -2rem; |
| 43 | } |
| 44 | |
| 45 | &.result { |
| 46 | border-bottom: 1px solid var(--border-color); |
| 47 | } |
Faris Ansari | 38ac7f7 | 2019-10-09 11:41:33 +0530 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | .transaction-list-item { |
| 51 | padding: 1rem 0; |
Summayya Hashmani | da43a5e | 2022-10-04 09:57:07 +0530 | [diff] [blame] | 52 | border-bottom: 1px solid var(--border-color); |
Faris Ansari | 38ac7f7 | 2019-10-09 11:41:33 +0530 | [diff] [blame] | 53 | position: relative; |
| 54 | |
Summayya Hashmani | da43a5e | 2022-10-04 09:57:07 +0530 | [diff] [blame] | 55 | &:only-child, &:last-child { |
| 56 | border: 0; |
| 57 | } |
| 58 | |
Faris Ansari | 38ac7f7 | 2019-10-09 11:41:33 +0530 | [diff] [blame] | 59 | a.transaction-item-link { |
| 60 | position: absolute; |
| 61 | top: 0; |
| 62 | left: 0; |
| 63 | width: 100%; |
| 64 | height: 100%; |
| 65 | text-decoration: none; |
| 66 | opacity: 0; |
| 67 | overflow: hidden; |
| 68 | text-indent: -9999px; |
| 69 | z-index: 0; |
| 70 | } |
| 71 | } |
Vishal Dhayagude | 24e79b1 | 2020-04-07 12:18:47 +0530 | [diff] [blame] | 72 | |
| 73 | .place-order-container { |
| 74 | text-align: right; |
Shivam Mishra | 7057a80 | 2020-06-17 18:35:38 +0530 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | .kb-card { |
| 78 | .card-body > .card-title { |
| 79 | line-height: 1.3; |
| 80 | } |
Ankush Menat | 4551d7d | 2021-08-19 13:41:10 +0530 | [diff] [blame] | 81 | } |
Summayya Hashmani | da43a5e | 2022-10-04 09:57:07 +0530 | [diff] [blame] | 82 | |
| 83 | .list-item-name, .item-total { |
| 84 | font-size: var(--font-size-sm); |
| 85 | } |
| 86 | |
| 87 | .items-preview { |
| 88 | @media screen and (max-width: 567px) { |
| 89 | margin-top: 1rem; |
| 90 | } |
| 91 | } |