Move plugins to manifest, pin Docker version, add Makefile
- Add plugins.txt listing all plugins for reproducible installs - Add Makefile with setup/start/stop/install-plugins targets - Remove user/plugins/ from git tracking - Pin Docker image to 1.7.49.5-ls244 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,37 +0,0 @@
|
||||
@function opposite-direction($dir) {
|
||||
@if $dir == 'left' {
|
||||
@return right;
|
||||
}
|
||||
@else if $dir == 'right' {
|
||||
@return left;
|
||||
}
|
||||
@else if $dir == 'ltr' {
|
||||
@return rtl;
|
||||
}
|
||||
@else if $dir == 'rtl' {
|
||||
@return ltr;
|
||||
}
|
||||
@else if $dir == 'top' {
|
||||
@return bottom;
|
||||
}
|
||||
@else if $dir == 'bottom' {
|
||||
@return top;
|
||||
}
|
||||
@else {
|
||||
@warn "#{$dir} is not a direction! Make sure your direction is all lowercase!";
|
||||
@return false;
|
||||
}
|
||||
}
|
||||
|
||||
@function named-direction($dir) {
|
||||
@if $dir == 'ltr' {
|
||||
@return left;
|
||||
}
|
||||
@else if $dir == 'rtl' {
|
||||
@return right;
|
||||
}
|
||||
@else {
|
||||
@warn "#{$dir} is not a valid HTML direction! Make sure you are using a valid HTML direction";
|
||||
@return false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user