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
| <a href="mailto:info@test.com?subject=Test Subject&body=Hi! %0D%0A %0D%0A These are my details: %0D%0A Name: %0D%0A Surname: %0D%0A Website: %0D%0A Personal email: %0D%0A %0D%0A I look forward to your reply, %0D%0A Thank you!"> | |
| Sample mail | |
| </a> |
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
| /* width */ | |
| ::-webkit-scrollbar { | |
| width: 17px; | |
| } | |
| /* Track */ | |
| ::-webkit-scrollbar-track { | |
| box-shadow: inset 0 0 5px grey; | |
| border-radius: 20px; | |
| } |
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
| <!-- Vertical Centering in CSS --> | |
| <div style="display: table; height: 100%; overflow: hidden;"> | |
| <div style="display: table;height: 100%;overflow: hidden;"> | |
| <div> | |
| Vertical Center | |
| </div> | |
| </div> | |
| </div> |
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
| <div class="row"> | |
| <ng-template #recursiveList let-yourListName> | |
| <div class="col-12" *ngFor="let item of yourListName; let i=index;"> | |
| <div class="mystyle" style="text-align: center; " (click)="openDialog(item)">{{item.title}}</div> | |
| <div class="row" *ngIf="item.children.length > 0"> | |
| <ng-container *ngTemplateOutlet="recursiveList; context:{ $implicit: item.children }"></ng-container> | |
| </div> | |
| </div> | |
| </ng-template> | |
| <ng-container *ngTemplateOutlet="recursiveList; context:{ $implicit: yourListName }"></ng-container> |
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
| $files = Get-ChildItem "C:\Users\Me\Desktop\directoryname*" -Recurse | |
| $find = 'text-to-change' | |
| $replace = 'with-this-one' | |
| $textChanges = 0 | |
| $fileAndFolderNameChanges = 0 | |
| write-host "`n [INFO][Starting the process to change the text"$find" to "$replace" inside the files]" |