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
/** | |
* Prepares variables for HTML document templates. | |
* | |
* Default template: html.html.twig. | |
* | |
* @param array $variables | |
* An associative array containing: | |
* - page: A render element representing the page. | |
* | |
* @see system_elements() |
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
Handlebars.registerHelper('idsafe', function(str) { | |
str = str.replace(/ /g , "-"); | |
return str.toLowerCase(); | |
}); |
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
.animation-duration(@time) { | |
-webkit-animation-duration: @time; | |
-moz-animation-duration: @time; | |
-ms-animation-duration: @time; | |
-o-animation-duration: @time; | |
animation-duration: @time; | |
} | |
.animation-duration(@time) when (@time = fast) { | |
-webkit-animation-duration: 0.25s; |
NewerOlder