<template>
<div class="new-price-filter color-filter">
<div
class="arrow-show"
:class="{ active: filterData.isShow }"
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <div> | |
| <div class="bg-gray-900 bg-opacity-50 dark:bg-opacity-80 fixed inset-0 z-40" /> | |
| <div | |
| tabindex="0" | |
| ref="modalRef" | |
| class="overflow-y-auto overflow-x-hidden fixed top-0 right-0 left-0 z-50 w-full md:inset-0 h-modal md:h-full justify-center items-center flex" | |
| @keyup.esc="closeWithEsc" | |
| > | |
| <div |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| export const braSizes = [ | |
| { | |
| eu: "65A", | |
| us: "30A", | |
| fr: "80D", | |
| }, | |
| { | |
| eu: "65B", | |
| us: "30B", | |
| fr: "80B", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let colors = await services.color.find(); | |
| let manufacturers = await services.manufacturer.find(); | |
| let canvasSizes = await services["razmer-polotna"].find(); | |
| let canvasTypes = await services["tip-polotna"].find(); | |
| let brands = await services["product-brand"].find(); | |
| let materials = await services["product-material"].find(); | |
| let styles = await services["product-style"].find(); | |
| if (colors.length) { | |
| let sanitized = sanitizeEntity(colors, { | |
| model: strapi.models.color, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "use strict"; | |
| const Sharp = require("sharp"); | |
| const AWS = require("aws-sdk"); | |
| AWS.config.update({ | |
| region: process.env.REGION, | |
| credentials: { | |
| accessKeyId: process.env.ACCESSKEY, | |
| secretAccessKey: process.env.SECRETKEY, | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let fill = () => { | |
| let o = { ...this.$route.query } | |
| // Fill brands | |
| this.brandsFilter.selectedBrands.length > 0 | |
| ? (o['brands'] = this.brandsFilter.selectedBrands.join(',')) | |
| : delete o['brands'] | |
| return o | |
| } | |
| let newObj = fill() | |
| this.$router.replace({ query: newObj }).catch(() => {}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .info_event { | |
| overflow-x: hidden; | |
| } | |
| .info_event .cof, .info_event .tournament { | |
| white-space: wrap | |
| } | |
| .info_event .cof { | |
| text-align: center; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Inline таблица стилей #14 | https://prostoprosport.ru/pps/bet/ */ | |
| .short-forecast .text { | |
| width: 100%; | |
| align-self: flex-end; | |
| } | |
| /* style.css | https://prostoprosport.ru/wp-content/themes/pps/css/style.css?v=2 */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const fullBanner = document.querySelector(".banner-block img"); | |
| fullBanner.addEventListener("click", () => { | |
| document.querySelector(".fullscreen").style.display = "none"; | |
| }); |
NewerOlder