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
@mixin shadows($x_offset: 0px, $y_offset: 1px, $size: 8px, $color: rgba(0, 0, 0, 0.5)) { | |
-webkit-box-shadow: $x_offset $y_offset $size $color; | |
-moz-box-shadow: $x_offset $y_offset $size $color; | |
-ms-box-shadow: $x_offset $y_offset $size $color; | |
-o-box-shadow: $x_offset $y_offset $size $color; | |
box-shadow: $x_offset $y_offset $size $color; | |
} | |
@mixin inset_shadows($x_offset: 0px, $y_offset: 1px, $size: 8px, $color: rgba(0, 0, 0, 0.5)) { | |
-webkit-box-shadow: $x_offset $y_offset $size $color inset; |
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 RecurringSelectDialog; | |
window.RecurringSelectDialog = | |
(RecurringSelectDialog = class RecurringSelectDialog { | |
constructor(recurring_selector) { | |
this.positionDialogVert = this.positionDialogVert.bind(this); | |
this.cancel = this.cancel.bind(this); | |
this.outerCancel = this.outerCancel.bind(this); | |
this.save = this.save.bind(this); | |
this.summaryUpdate = this.summaryUpdate.bind(this); | |
this.summaryFetchSuccess = this.summaryFetchSuccess.bind(this); |
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 { DirectUpload } from 'activestorage' | |
// See DirectUploadController from Rails Active Storage source | |
export class CustomUploader { | |
constructor(input, file) { | |
this.input = input | |
this.file = file | |
this.directUpload = new DirectUpload(this.file, this.url, this) | |
this.dispatch("initialize") | |
} |
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
/**********************************************/ | |
/* | |
/* Sleepwalker Skin | |
/* | |
/* Based on Todd Werth's IR_Black but with some | |
/* different colors (no pink numbers …) | |
/* | |
/**********************************************/ | |
/**********************************************/ |