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
input[type="text"], input[type="email"], input[type="url"], | |
input[type="password"], input[type="search"], input[type="number"], | |
input[type="tel"], input[type="range"], input[type="date"], | |
input[type="month"], input[type="week"], input[type="time"], | |
input[type="datetime"], input[type="datetime-local"], input[type="color"] |
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
Prinzipieller Workflow bei allen D8 Seiten auf EDIS: | |
Auf der jeweiligen Seite im D8 Backend anmelden (URL ist bei D8 immer /user) | |
Beim EDIS Backend anmelden (siehe Alfred Zugangsdaten) | |
Im Menü "SSH Zugang" => Verwaltung =>> SSH Zugang erstellen | |
Sich mit dem erstellten SSH Zugang per Terminal verbinden | |
in den jeweiligen Ordner am Server gehen wo das Drupal liegt bzw. wo die composer.json Datei liegt. | |
mit git status checken ob wohl bis jetzt alles im GIT Repo commited wurde | |
falls nicht alles commiten mit einer Nachricht ähnlich wie "changes before composer update" | |
dann ein "composer update --with-dependencies --dry-run" durchführen und den Output in die jeweilige Confluence Seite kommentieren |
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
// create file | |
vim <file name> | |
i // insert/edit file | |
esc // step out of edit modus | |
:wq // write (save) and quit | |
// more info | |
https://www.howtoforge.com/vim-basics |
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
chmod +x <file> | |
ls -l //check rights |
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
#!/bin/bash | |
/usr/local/bin/edis-php-cli-71-stable-openssl -d memory_limit=2G /usr/bin/composer_binary "$@" | |
// call | |
./composer-exec.sh |
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
html { | |
scroll-behavior: smooth; | |
} |
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
<meta name="format-detection" content="telephone=no"> |
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
$(window).load(function () { | |
// Do something | |
}); |
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
font-feature-settings: 'liga'; /* Support for IE */ |
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
.child { | |
position: absolute; | |
top: 50%; /* position the top edge of the element at the middle of the parent */ | |
left: 50%; /* position the left edge of the element at the middle of the parent */ | |
transform: translate(-50%, -50%); /* This is a shorthand of | |
translateX(-50%) and translateY(-50%) */ | |
} |