This file contains 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 CLICOLOR=1 | |
export LSCOLORS=GxFxCxDxBxegedabagaced | |
PS1='\T \[\e[01;37m\]\u@\h \W $\[\e[0m\] ' | |
alias ll='ls -l' | |
export PGHOST=localhost | |
export RBENV_ROOT=/usr/local/var/rbenv | |
export PATH="/usr/local/bin:$HOME/.rbenv/bin:$PATH" | |
eval "$(rbenv init -)" | |
# if which rbenv > /dev/null; then eval "$(rbenv init -)"; fi |
This file contains 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
.list-item { | |
&:first-child {border-top: $base-border;} | |
border-bottom: $base-border; | |
.button {width: 15rem;} | |
} | |
.list-item-top {padding: 1.4rem 0;} | |
.accordion-trigger { | |
position: relative; |
This file contains 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(){ | |
"use strict"; | |
function PromiseNew() { | |
$('.info-cards__info-card').on('touchstart click', checkInfoExpander); | |
$('.info-cards').on('touchstart click', '.info-expander__close', closeInfoExpanders); | |
} |
This file contains 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 ITCSS FOR PARTIAL STRUCTURING | |
// SETTINGS | |
// Global variables, site-wide settings, config switches, etc. | |
// TOOLS | |
// Site-wide mixins and functions. | |
// GENERIC | |
// Low-specificity, far-reaching rulesets (e.g. resets). |
This file contains 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
.mbm-normal{mix-blend-mode: normal;} | |
.mbm-multiply{mix-blend-mode: multiply;} | |
.mbm-screen{mix-blend-mode: screen;} | |
.mbm-overlay{mix-blend-mode: overlay;} | |
.mbm-darken{mix-blend-mode: darken;} | |
.mbm-lighten{mix-blend-mode: lighten;} | |
.mbm-color-dodge{mix-blend-mode: color-dodge} | |
.mbm-color-burn{mix-blend-mode: color-burn;} | |
.mbm-hard-light{mix-blend-mode: hard-light;} | |
.mbm-soft-light{mix-blend-mode: soft-light;} |
This file contains 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 config = input.config(); | |
let importId = config.id; | |
let transactions = base.getTable('Transactions'); | |
let transactionsFiltered = await transactions.getView('Auto Import').selectRecordsAsync(); | |
let thisTransaction = transactionsFiltered.getRecord(importId); | |
// Match Merchant | |
let importMerchantRaw = config.merchant_raw.toLowerCase(); |
OlderNewer