Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes additions #33

Open
wants to merge 2 commits into
base: beta
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions build/css/webkit.css
Original file line number Diff line number Diff line change
Expand Up @@ -886,3 +886,45 @@ body::-webkit-scrollbar {
}

/*# sourceMappingURL=webkit.css.map */

/* Knowledge's changes */
.discount_block .discount_final_price, .discount_block_inline.no_discount .discount_prices {
font-size: 18px !important;
padding: 0px 0px 1px 0px !important;
line-height: 18px;
/* Bigger font for the price after discount. Padding added to accomodate the size change. */
}

.discount_original_price {
order: 2;
grid-row: 2;
padding-left: 3px;
/* Original price placed after the discounted one. */
}

.discount_block .discount_final_price {
order: 1;
grid-row: 1;
padding: 0px 1px 1px 1px !important;
/* Discounted price placed before the original one. */
}

.discount_block_large .discount_prices {
align-items: end;
/* Special offer's original prices aligned to the left (closer to the percentage discounted) */
}

.discount_block > .discount_prices, .store_capsule .discount_block.discount_block_large .discount_prices {
margin-left: 2px !important;
/* Featured game's price aligned to the discount's percentage */
}

.discount_block_inline .discount_pct, .discount_block_inline .bundle_base_discount {
padding: 3px 3px !important;
/* Featured game's discount's percentage correct alignment */
}

.game_purchase_discount .discount_prices {
display: inline-grid;
grid-template-rows: max-content;
}