-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#2691 Sidebar cleaned up. Data type no longer shows up for player dea…
…th/bloodlust casts
- Loading branch information
Showing
6 changed files
with
114 additions
and
36 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
/** | ||
* @var string $name | ||
* @var string $label | ||
* @var string|null $title | ||
*/ | ||
$id = $id ?? null; | ||
$title = $title ?? null; | ||
?> | ||
<div @if($id !== null) id="{{ $id }}" @endif class="form-group"> | ||
<div class="row"> | ||
<div class="col"> | ||
<label for="{{ $name }}"> | ||
{{ $label }} | ||
</label> | ||
</div> | ||
@if( $title !== null ) | ||
<div class="col-auto"> | ||
<i class="fas fa-info-circle pr-2" data-toggle="tooltip" title="{{$title}}" | ||
style="padding-top: 0.75rem !important;"></i> | ||
</div> | ||
@endif | ||
</div> | ||
<div class="row"> | ||
<div class="col"> | ||
{{ $slot }} | ||
</div> | ||
</div> | ||
</div> |
This file contains 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