- https://bug-46041-attachments.webkit.org/attachment.cgi?id=68015
- https://bugs.webkit.org/show_bug.cgi?id=46041
- https://stackoverflow.com/questions/30098206/why-does-this-css-transition-queue
- https://stackoverflow.com/questions/22069877/css-transitions-strange-unwanted-delay-in-webkit-browsers-chrome-and-safari
This file contains hidden or 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
| $u-spaces-names: ( | |
| m: margin, | |
| ) !default; | |
| $u-spaces-spaces: ( | |
| 1: 10px, | |
| none: "none", | |
| ) !default; | |
| @each $space-abbr, $space-prop in $u-spaces-names { |
This file contains hidden or 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
| $resputil-breakpoints: ( | |
| xs: 480px, | |
| sm: 768px, | |
| md: 992px, | |
| lg: 1200px, | |
| xl: 1600px, | |
| ) !default; | |
| @mixin resputil($name, $breakpoints: $resputil-breakpoints) { | |
| .#{$name} { |
This file contains hidden or 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
| $resputil-breakpoints: ( | |
| sm: 640px, | |
| md: 760px, | |
| lg: 1024px, | |
| ) !default; | |
| @mixin resputil($name, $breakpoints: $resputil-breakpoints) { | |
| .#{$name} { | |
| @content; | |
| } |
This file contains hidden or 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
| $resputil-breakpoints: ( | |
| sm: 640px, | |
| md: 760px, | |
| lg: 1024px, | |
| ) !default; | |
| @mixin resputil($name, $breakpoints: $resputil-breakpoints) { | |
| .#{$name} { | |
| @content; | |
| } |
This file contains hidden or 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
| <?php | |
| /** | |
| * TextformatterWithFieldConfig | |
| * | |
| * An example Textformatter with field settings | |
| * | |
| * @author Christian (owzim) Raunitschka <[email protected]> | |
| * @version 0.5.1 | |
| * |
This file contains hidden or 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() { | |
| // icon font rendering fix | |
| // see: http://stackoverflow.com/a/10557782/426890 | |
| var head = document.getElementsByTagName('head')[0], | |
| style = document.createElement('style'); | |
| style.type = 'text/css'; | |
| style.styleSheet.cssText = ':before,:after{content:none !important'; | |
| head.appendChild(style); | |
| setTimeout(function(){ | |
| head.removeChild(style); |
This file contains hidden or 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
| .VideoFrame { | |
| height: 0; | |
| position: relative; | |
| } | |
| .VideoFrame iframe { | |
| position: absolute; | |
| width: 100%; | |
| height: 100%; | |
| } |
This file contains hidden or 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
| <?php | |
| class dir { | |
| public static function rmRecursive($dir) { | |
| $files = array_diff(scandir($dir), array('.','..')); | |
| foreach ($files as $file) { | |
| is_dir("$dir/$file") ? self::rmdirRecursive("$dir/$file") : unlink("$dir/$file"); | |
| } | |
| return rmdir($dir); | |
| } |
This file contains hidden or 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
| <?php | |
| protected static function segmentToExecute($segment) { | |
| $sa = explode('-', $segment); | |
| foreach ($sa as $k => $v) $sa[$k] = ucfirst(strtolower($v)); | |
| return 'execute' . implode('', $sa); | |
| } |
NewerOlder