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
select { | |
height: 54px; | |
padding: 14px 13px; | |
border: solid 1px $input-border-color; | |
background-color: $input-background-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
.styled-checkbox { | |
input[type="checkbox"] { | |
display: none; | |
visibility: hidden; | |
opacity: 0; | |
} | |
&__label-content { |
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
.block { | |
display: block; | |
&__element { | |
display: inline; | |
&--m1 { | |
background-color: red; | |
} |
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
(() => { | |
var tag = document.createElement('script'); | |
tag.src = "https://www.youtube.com/iframe_api"; | |
var firstScriptTag = document.getElementsByTagName('script')[0]; | |
firstScriptTag.parentNode.insertBefore(tag, firstScriptTag); | |
const createPlayer = (container, videoId, onReady = () => {}, onStateChange = () => {}) => { | |
return new YT.Player(container, { |
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 checkActiveModals = function() { | |
return new Promise(function (resolve, reject) { | |
(function waitForModals(){ | |
if (!isAnySuggestModalShown) return resolve(); | |
setTimeout(waitForModals, 500); | |
})(); | |
}); | |
} |
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
function vimeoLoadingThumb(id) { | |
var url = "http://vimeo.com/api/v2/video/" + id + ".json?callback=showVimeoThumb"; | |
var id_img = "#vimeo-" + id; | |
var script = document.createElement('script'); | |
script.src = url; | |
$(id_img).before(script); | |
} |
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
$carousel-class: '.carousel'; | |
#{$carousel-class}--recommended-products { | |
width: 100%; | |
#{$carousel-class}__item { | |
width: calc(100% - 80px); | |
.container { | |
background-color: rgba($neogen-light-gray, 0.15); |
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
<system.net> | |
<defaultProxy | |
enabled = "true" | |
useDefaultCredentials = "true"> | |
<proxy | |
autoDetect="false" | |
bypassonlocal="false" | |
proxyaddress="http://127.0.0.1:8888" | |
usesystemdefault="false" | |
/> |
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
public bool RenameListForAccount(Guid accountId, string oldName, string newName) | |
{ | |
var cart = _orderRepository.Load<ICart>(accountId, oldName).FirstOrDefault(); | |
if (_orderRepository.Load<ICart>(accountId, newName).Any() || (cart is null)) | |
{ | |
Log.Error($"Cannot rename list for account {accountId} with name {newName} because a cart with this name already exists for this account"); | |
return false; | |
} |
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
chrome://settings/siteData |