Skip to content

Instantly share code, notes, and snippets.

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"]
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
// 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
chmod +x <file>
ls -l //check rights
#!/bin/bash
/usr/local/bin/edis-php-cli-71-stable-openssl -d memory_limit=2G /usr/bin/composer_binary "$@"
// call
./composer-exec.sh
html {
scroll-behavior: smooth;
}
$(window).load(function () {
// Do something
});
font-feature-settings: 'liga'; /* Support for IE */
.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%) */
}