Skip to content

Commit

Permalink
Βελτίωση λίστας Πρωτοκόλλου ώστε να μένει στην κορυφή η ετικέτα του π…
Browse files Browse the repository at this point in the history
…ίνακα κατά το scroll

 Αλλαγές προς υποβολή:
	τροποποίηση:     resources/views/protocolList.blade.php
  • Loading branch information
g-theodoroy committed Mar 22, 2023
1 parent 199007b commit 1d51b6f
Showing 1 changed file with 70 additions and 53 deletions.
123 changes: 70 additions & 53 deletions resources/views/protocolList.blade.php
Expand Up @@ -54,66 +54,67 @@
</div>
</div>

<div class='row bg-primary'>&nbsp;</div>
<div class='row bg-primary'>
<div data-spy="affix" data-offset-top="240" >
<div class='row bg-primary'>&nbsp;</div>
<div class='row bg-primary'>

<div class='col-md-1 col-sm-1'>
<br>
<strong>Αυξ.Αριθ</strong>
<hr>
<strong>Ημνία</strong>
</div>
<div class='col-md-5 col-sm-5'>
<div class='row'>
<div class='col-md-5 col-sm-5'>
<strong>Αρ./Ημ.Εισερχ.</strong>
<hr>
<strong>&#x2727;Τόπος Έκδοσης</strong>
<hr>
<strong>&#x2726;Αρχή Έκδοσης</strong>
</div>
<div class='col-md-7 col-sm-7'>
<strong>Θέμα</strong>
<hr>
<strong>&#x2727;Περίλ.Εισερχ.</strong>
<hr>
<strong>&#x2726;Παραλήπτης</strong>
</div>
<div class='col-md-1 col-sm-1'>
<br>
<strong>Αυξ.Αριθ</strong>
<hr>
<strong>Ημνία</strong>
</div>
</div>
<div class='col-md-5 col-sm-5'>
<div class='row'>
<div class='col-md-5 col-sm-5'>
<strong>Ημ.Εξερχ.</strong>
<hr>
<strong>&#x2727;Απευθύνεται</strong>
<hr>
<strong>&#x2726;Περίλ.Εξερχ.</strong>
</div>
<div class='col-md-3 col-sm-3'>
<br>
<strong>Διεκπεραίωση</strong>
<hr>
<strong>&#x2727;Ημ.Διεκπ.</strong>
<div class='col-md-5 col-sm-5'>
<div class='row'>
<div class='col-md-5 col-sm-5'>
<strong>Αρ./Ημ.Εισερχ.</strong>
<hr>
<strong>&#x2727;Τόπος Έκδοσης</strong>
<hr>
<strong>&#x2726;Αρχή Έκδοσης</strong>
</div>
<div class='col-md-7 col-sm-7'>
<strong>Θέμα</strong>
<hr>
<strong>&#x2727;Περίλ.Εισερχ.</strong>
<hr>
<strong>&#x2726;Παραλήπτης</strong>
</div>
</div>
<div class='col-md-4 col-sm-4'>
<strong>Φάκελος</strong>
<hr>
<strong>&#x2727;Σχετ.αριθμοί</strong>
<hr>
<strong>&#x2726;Παρατηρήσεις</strong>
</div>
<div class='col-md-5 col-sm-5'>
<div class='row'>
<div class='col-md-5 col-sm-5'>
<strong>Ημ.Εξερχ.</strong>
<hr>
<strong>&#x2727;Απευθύνεται</strong>
<hr>
<strong>&#x2726;Περίλ.Εξερχ.</strong>
</div>
<div class='col-md-3 col-sm-3'>
<br>
<strong>Διεκπεραίωση</strong>
<hr>
<strong>&#x2727;Ημ.Διεκπ.</strong>
</div>
<div class='col-md-4 col-sm-4'>
<strong>Φάκελος</strong>
<hr>
<strong>&#x2727;Σχετ.αριθμοί</strong>
<hr>
<strong>&#x2726;Παρατηρήσεις</strong>
</div>
</div>
</div>
<div class='col-md-1 col-sm-1'>
<strong>Συνημμένα</strong>
<hr>
<strong>Διατήρηση</strong><br>
<strong>Διατηρ.έως</strong>
</div>
</div>
<div class='col-md-1 col-sm-1'>
<strong>Συνημμένα</strong>
<hr>
<strong>Διατήρηση</strong><br>
<strong>Διατηρ.έως</strong>
</div>
<div class='row bg-primary'>&nbsp;</div>
</div>
<div class='row bg-primary'>&nbsp;</div>


@php($i = 1)
@foreach ($protocols as $protocol)
Expand Down Expand Up @@ -380,4 +381,20 @@ function startTimer(duration, display) {
</script>
@endif

<style>
@media (min-width: 768px) {
.affix {
top:0px;
position: fixed;
left:47px;
right:47px;
z-index:777;
}
}
@media (max-width: 767px) {
.affix {
position: static;
}
}
</style>
@endsection

0 comments on commit 1d51b6f

Please sign in to comment.