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
.secondary-theme .mat-ripple-element { | |
background-color: rgba(0, 0, 0, 0.1); | |
} | |
.secondary-theme .mat-option { | |
color: rgba(0, 0, 0, 0.87); | |
} | |
.secondary-theme .mat-option:hover:not(.mat-option-disabled), .secondary-theme .mat-option:focus:not(.mat-option-disabled) { | |
background: rgba(0, 0, 0, 0.04); | |
} | |
.secondary-theme .mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) { |
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
### Keybase proof | |
I hereby claim: | |
* I am rkorebrits on github. | |
* I am rkorebrits_luno (https://keybase.io/rkorebrits_luno) on keybase. | |
* I have a public key ASCO3NQ55LsHZ-ucu4Bbp77PncH2fZ0o36Wu5Xqej_hu4Ao | |
To claim this, I am signing this object: |
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
{ | |
"name": "sage", | |
"homepage": "https://roots.io/sage/", | |
"authors": [ | |
"Ben Word <[email protected]>" | |
], | |
"license": "MIT", | |
"private": true, | |
"dependencies": { | |
"modernizr": "2.8.2", |
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
var cssTasks = function(filename) { | |
"use strict"; | |
return lazypipe() | |
.pipe(function() { | |
return gulpif((!config.env || config.env !== 'dev') && !enabled.failStyleTask, plumber()); | |
}) | |
.pipe(function() { | |
return gulpif((!config.env || config.env !== 'dev') && enabled.maps, sourcemaps.init()); | |
}) | |
.pipe(function() { |