v1.5.10 I fix some stuff
This commit is contained in:
parent
dd7acc1d24
commit
a7fc873245
|
@ -221,7 +221,7 @@ nav {
|
|||
}
|
||||
|
||||
.overflow-visible {
|
||||
overflow: visible;
|
||||
overflow: visible !important;
|
||||
}
|
||||
|
||||
ol {
|
||||
|
@ -6940,7 +6940,7 @@ nav > .pagination {
|
|||
margin: auto;
|
||||
padding: 20px;
|
||||
border: 2px solid #888;
|
||||
width: 330px;
|
||||
width: 700px;
|
||||
min-width: 400px;
|
||||
border-radius: 6px;
|
||||
overflow: auto;
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
margin: auto;
|
||||
padding: 20px;
|
||||
border: 2px solid #888;
|
||||
width: 330px;
|
||||
width: 700px;
|
||||
min-width: 400px;
|
||||
border-radius: 6px;
|
||||
overflow: auto;
|
||||
|
|
|
@ -78,7 +78,6 @@
|
|||
@endsection
|
||||
@section("scripts")
|
||||
<script>
|
||||
|
||||
$(function() {
|
||||
$('form').areYouSure(
|
||||
{
|
||||
|
|
|
@ -73,7 +73,7 @@
|
|||
<strong><label for="accountable">Aktivitets ansvarlig</label></strong>
|
||||
<p id="accountable"></p>
|
||||
<hr>
|
||||
<img src="{{ asset(\App\Resource::query()->where($event->id, "=", $event->resource_id)->first()->filename) }}">
|
||||
<img src="{{ asset(\App\Resource::query()->where("id", "=", $event->resource_id)->first()->filename) }}">
|
||||
<p id="description"></p>
|
||||
</center>
|
||||
</div>
|
||||
|
|
|
@ -127,7 +127,7 @@
|
|||
<div class="container letterSpaceTable mt-1">
|
||||
<table style="border: 1px solid lightgrey; width: 100%;">
|
||||
<tr>
|
||||
<td> {!!(\App\Event::query()->orderBy("date", "asc")->first()->description)!!}</td>
|
||||
<td> {!! \App\Helpers::closetags(substr(ucfirst(strtolower(\App\Event::query()->orderBy("date", "asc")->first()->description)), 0, 300) ) !!}</td>
|
||||
</tr>
|
||||
</table>
|
||||
<input type="hidden" name="event_id" value="{{ \App\Event::query()->orderBy("date", "asc")->first()->id }}">
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
display: inline-block;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.showUsers .showUserImages {
|
||||
visibility: hidden;
|
||||
width: 250px;
|
||||
|
@ -34,12 +33,10 @@
|
|||
right: 105%;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.showUsers:hover .showUserImages {
|
||||
visibility: visible;
|
||||
z-index: 100;
|
||||
}
|
||||
|
||||
.noImages{
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
@ -47,8 +44,6 @@
|
|||
.letterSpaceTable{
|
||||
letter-spacing: 1.2px;
|
||||
}
|
||||
|
||||
td >
|
||||
</style>
|
||||
<div class="row align-items-center">
|
||||
@if(auth()->user()->can('user.create'))
|
||||
|
|
Loading…
Reference in New Issue