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
// USWDS: | |
%block-input-styles { | |
margin-top: 0.5rem; | |
} | |
// ... | |
// LGDS: | |
%block-input-styles { | |
margin-top: 0.25rem; |
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
.usa-radio__input--tile:disabled + .usa-radio__label--illustrated, | |
.usa-checkbox__input--tile:disabled + .usa-checkbox__label--illustrated { | |
.usa-radio__image, | |
.usa-checkbox__image { | |
filter: invert(45%) sepia(1%) saturate(0%) hue-rotate(232deg) brightness(100%) contrast(80%); | |
} | |
} | |
.usa-radio__input--tile:disabled + .usa-radio__label--illustrated .usa-radio__image, | |
.usa-checkbox__input--tile:disabled + .usa-checkbox__label--illustrated .usa-checkbox__image { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
const { join } = require('path'); | |
module.exports = { | |
plugins: [ | |
[ | |
'module-resolver', | |
{ | |
root: ['./packages'], | |
alias: { | |
'^@my-scope\\/([^/]+)$': (match) => { |
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
import log from './log.js'; | |
log(); |
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
#!/bin/bash | |
git rebase -i $(git merge-base HEAD master) |
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
const { get } = require( 'https' ); | |
const { parse } = require( 'url' ); | |
const pulls = [ | |
'https://github.com/WordPress/gutenberg/pull/14003', | |
'https://github.com/WordPress/gutenberg/pull/14469', | |
'https://github.com/WordPress/gutenberg/pull/14475', | |
'https://github.com/WordPress/gutenberg/pull/14681', | |
'https://github.com/WordPress/gutenberg/pull/14693', | |
'https://github.com/WordPress/gutenberg/pull/14711', |
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
registerBlockType( 'core/colorable', { | |
abstract: true, | |
attributes: { | |
color: { | |
type: 'string', | |
}, | |
}, | |
edit: () => ( |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"/> | |
<title>Pop vs. Splice negative</title> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script> | |
<script src="./suite.js"></script> | |
</head> | |
<body> | |
<h1>Open the console to view the results</h1> |
NewerOlder