Advertisement
Guest User

Untitled

a guest
Dec 18th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. window.changeClassColor = () => {
  2. let brandColor = $('.type-of-budget').data('color');
  3. $("head").append('<style type="text/css"></style>');
  4. let newStylesheet = $("head").children(':last');
  5. let newStyle = ' .city-investments .type-of-budget__block.active .type-of-budget__block__bar.type-of-budget__block__bar--grey {background:' + brandColor + '} ';
  6. newStyle += ' .city-investments .type-of-budget__block.active .type-of-budget__block__bar.type-of-budget__block__bar--lightgrey {background:' + brandColor + '} ';
  7. newStyle += ' .city-investments .type-of-budget__block.active .type-of-budget__block__txt .type-of-budget__block__txt__value.type-of-budget__block__txt__value--normal, .city-investments .type-of-budget__block.active .type-of-budget__block__txt .type-of-budget__block__txt__value.type-of-budget__block__txt__value--bold { color: ' + brandColor + '}';
  8. newStyle += ' .taxes-modal-slider__bottom-blue { background: ' + brandColor + '}';
  9. newStyle += ' .taxes-modal-slider__top-white__text__subtitle { color: ' + brandColor + '}';
  10. newStylesheet.html(newStyle);
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement