diff --git a/components/DealsStatus/components/Offers.js b/components/DealsStatus/components/Offers.js index a5ecc18..316b314 100644 --- a/components/DealsStatus/components/Offers.js +++ b/components/DealsStatus/components/Offers.js @@ -147,8 +147,13 @@ export default class Offers extends Step ) : ( - - )} + +
+ { } } style={{ filter: "grayscale", opacity: 0.5 }}/> + +
+ + ) } { offer_index + 1 } { numeral(offer.price).format(' ., ') } ₽ { numeral(offer.first_payment_rub).format(' ., ') } ₽ diff --git a/css/main/style.css b/css/main/style.css index c9aae5e..04e2feb 100644 --- a/css/main/style.css +++ b/css/main/style.css @@ -6451,3 +6451,8 @@ main .dropdown_blocks_list.zero-margin.gibdd .dropdown_block .block_body .fines_ padding-bottom: 15px; border-top: solid 1px #edeff5; } +.checkbox_disabled label:before { + filter: grayscale(); + opacity: 0.5; + cursor: default !important; +} diff --git a/css/main/style.less b/css/main/style.less index e6de450..7e4e249 100644 --- a/css/main/style.less +++ b/css/main/style.less @@ -7452,4 +7452,14 @@ main .dropdown_blocks_list.zero-margin.gibdd .dropdown_block { padding-top: 15px; padding-bottom: 15px; border-top: solid 1px #edeff5; +} + +.checkbox_disabled { + label { + &:before { + filter: grayscale(); + opacity: 0.5; + cursor: default !important; + } + } } \ No newline at end of file