Skip to content

Instantly share code, notes, and snippets.

View rkorebrits's full-sized avatar
💭
Set his status

Richard Korebrits rkorebrits

💭
Set his status
View GitHub Profile
.theme-secondary .mat-button, .theme-secondary .mat-icon-button, .theme-secondary .mat-stroked-button {
color: inherit;
background: transparent;
}
.theme-secondary .mat-button.mat-primary, .theme-secondary .mat-icon-button.mat-primary, .theme-secondary .mat-stroked-button.mat-primary {
color: #0091ff;
}
.theme-secondary .mat-button.mat-accent, .theme-secondary .mat-icon-button.mat-accent, .theme-secondary .mat-stroked-button.mat-accent {
color: #ef476f;
}
@rkorebrits
rkorebrits / a.css
Created July 16, 2021 07:13
Material theme CSS output example
.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) {
### 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:
@rkorebrits
rkorebrits / bower.json
Created April 1, 2016 10:01
Gulp issues
{
"name": "sage",
"homepage": "https://roots.io/sage/",
"authors": [
"Ben Word <ben@benword.com>"
],
"license": "MIT",
"private": true,
"dependencies": {
"modernizr": "2.8.2",
@rkorebrits
rkorebrits / gulpfile.js
Created September 3, 2015 07:44
Stackoverflow #32253344
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() {