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
$page-width: 970px; | |
$mobile: "only screen and (max-width: #{$page-width})"; | |
// As mixin | |
@mixin mobile() { | |
@media #{$mobile} { | |
@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
plugin.tx_yag.settings.themes.rondell.javaScriptSettings.rondell { | |
center { | |
top = 400 | |
left = 400 | |
} | |
fadeTime = 1000 | |
autoRotation { | |
delay = 10000 | |
} |
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 | |
namespace Vendor\Package\TypoScript\FlowQueryOperations; | |
/* * | |
* This script belongs to the TYPO3 Flow package "Vendor.Package". * | |
* * | |
* It is free software; you can redistribute it and/or modify it under * | |
* the terms of the GNU Lesser General Public License, either version 3 * | |
* of the License, or (at your option) any later version. * | |
* * |
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
@charset 'UTF-8'; | |
// Import your variables | |
@import 'my/variables'; | |
// Import bootstrap variables | |
@import 'bootstrap/variables'; | |
// IE 8 | |
// ----------------------------------------------------------------------------- |
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
.neos-backend .btn { | |
user-select: initial; | |
-moz-user-select: initial; | |
-ms-user-select: initial; | |
} |
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
from __future__ import with_statement | |
from fabric.api import * | |
from fabric.contrib.console import confirm | |
env.use_ssh_config = True | |
env.user = 'username' | |
env.hosts = ['hostname'] | |
release_dir = '/var/www/path/to/website' | |
remote_context = 'Production' |
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 | |
namespace Foo\Bar\Routing; | |
/* * | |
* This script belongs to the TYPO3 Flow package "Foo.Bar". * | |
* */ | |
use TYPO3\Flow\Annotations as Flow; | |
use TYPO3\Flow\Security\Authorization\AccessDecisionManagerInterface; | |
use TYPO3\TYPO3CR\Domain\Model\NodeInterface; |
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 | |
namespace Foo\Bar\TypoScript\FlowQueryOperations; | |
use TYPO3\Eel\FlowQuery\Operations\AbstractOperation; | |
use TYPO3\Flow\Annotations as Flow; | |
use TYPO3\TYPO3CR\Domain\Model\NodeInterface; | |
use TYPO3\Eel\FlowQuery\FlowQuery; | |
/** |
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 () { | |
/** | |
* Backend specific scripts | |
*/ | |
"use strict"; | |
var lastPageLayout, | |
layouts = { | |
newsletter: 'typo3:Vendor.Package:Newsletter' | |
}; |
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
## | |
# Development/Settings.yaml | |
# | |
TYPO3: | |
Flow: | |
security: | |
session: | |
inactivityTimeout: 0 # Disable session timeout while developing |
OlderNewer