icons
6 years ago
currencyswitcher.scss
5 years ago
feerecovery.scss
5 years ago
ffm.scss
5 years ago
form.scss
5 years ago
mixins.scss
6 years ago
newsletter.scss
5 years ago
paypal-commerce.scss
5 years ago
receipt.scss
5 years ago
recurring.scss
5 years ago
square.scss
6 years ago
tributes.scss
5 years ago
util.scss
6 years ago
tributes.scss
123 lines
| 1 | .give-tributes-dedicate-donation { |
| 2 | .give_tributes_mail_card_country > label, |
| 3 | .give_tributes_mail_card_state > label { |
| 4 | display: none !important; |
| 5 | } |
| 6 | |
| 7 | #give_tributes_address_state { |
| 8 | min-height: 48px !important; |
| 9 | } |
| 10 | |
| 11 | .give-tributes-grab-info { |
| 12 | @media screen and (max-width: $break-phone) { |
| 13 | display: flex; |
| 14 | flex-direction: column; |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | legend, |
| 19 | .give-tributes-legend, |
| 20 | .give-tributes-label { |
| 21 | display: block; |
| 22 | font-size: 14px !important; |
| 23 | font-weight: 400 !important; |
| 24 | border-bottom: none !important; |
| 25 | padding: 0 !important; |
| 26 | margin: 0 0 5px !important; |
| 27 | line-height: 1.7; |
| 28 | } |
| 29 | |
| 30 | .give_tributes_send_ecard_fields > .give-tributes-legend { |
| 31 | width: auto !important; |
| 32 | } |
| 33 | |
| 34 | .give-tributes-add-recipient { |
| 35 | margin-left: 8px; |
| 36 | float: none; |
| 37 | display: inline-block; |
| 38 | margin-top: 0; |
| 39 | } |
| 40 | |
| 41 | input[type='radio']='radio'] { |
| 42 | opacity: 0 !important; |
| 43 | position: absolute !important; |
| 44 | } |
| 45 | |
| 46 | input[type='radio']='radio'] + label { |
| 47 | padding: 0 10px 0 28px; |
| 48 | width: 100%; |
| 49 | color: #696969; |
| 50 | font-size: 14px !important; |
| 51 | font-weight: 400 !important; |
| 52 | display: inline-block; |
| 53 | position: relative; |
| 54 | margin: 0 0 5px; |
| 55 | line-height: 1.7; |
| 56 | |
| 57 | &::before { |
| 58 | content: ' '; |
| 59 | position: absolute; |
| 60 | top: calc(50% - 9px); |
| 61 | left: 0; |
| 62 | width: 16px; |
| 63 | height: 16px; |
| 64 | border-radius: 50%; |
| 65 | border: 1px solid #b4b9be; |
| 66 | background-color: #fff; |
| 67 | box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25); |
| 68 | } |
| 69 | |
| 70 | &::after { |
| 71 | transform: scale3d(0, 0, 0); |
| 72 | transition: transform 0.2s ease; |
| 73 | border-radius: 8px; |
| 74 | width: 8px; |
| 75 | height: 8px; |
| 76 | position: absolute; |
| 77 | top: calc(50% - 4px); |
| 78 | left: 5px; |
| 79 | content: ' '; |
| 80 | display: block; |
| 81 | background: #333; |
| 82 | } |
| 83 | } |
| 84 | |
| 85 | input[type='radio']='radio']:checked + label::after { |
| 86 | transform: scale3d(1, 1, 1); |
| 87 | } |
| 88 | |
| 89 | .give-tributes-ecard-personalized-message-left, |
| 90 | .give-tributes-mail-card-personalized-message-left { |
| 91 | padding-bottom: 8px; |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | /*--------------------------------- |
| 96 | RTL styles |
| 97 | -----------------------------------*/ |
| 98 | |
| 99 | html[dir="rtl"]="rtl""] { |
| 100 | |
| 101 | .give-tributes-dedicate-donation { |
| 102 | |
| 103 | .give-tributes-add-recipient { |
| 104 | margin-right: 8px; |
| 105 | } |
| 106 | |
| 107 | input[type='radio']='radio'] + label { |
| 108 | |
| 109 | padding-right: 32px; |
| 110 | |
| 111 | &::before { |
| 112 | right: 0; |
| 113 | } |
| 114 | |
| 115 | &::after { |
| 116 | right: 5px; |
| 117 | } |
| 118 | } |
| 119 | |
| 120 | } |
| 121 | |
| 122 | } |
| 123 |