From 449b32285020e4e7ad3f6aa730a98537b8c33f3c Mon Sep 17 00:00:00 2001 From: anazaryan Date: Thu, 12 Dec 2024 21:47:41 +0400 Subject: [PATCH] worker page design fixes --- public/css/style_may2024.css | 23 ++++++- resources/views/worker.blade.php | 89 ++++++++++++++-------------- resources/views/workers/subcribe.blade.php | 3 + 3 files changed, 70 insertions(+), 45 deletions(-) diff --git a/public/css/style_may2024.css b/public/css/style_may2024.css index 9ddfe80..052a138 100644 --- a/public/css/style_may2024.css +++ b/public/css/style_may2024.css @@ -4439,10 +4439,18 @@ h1 { width: 100%; background: #fff; } + +.main__table.worker_experience { + table-layout: unset; +} @media (min-width: 768px) { .main__table { font-size: 16px; } + + .main__table.worker_experience { + table-layout: fixed; + } } .main__table td { border: 1px solid #cecece; @@ -4521,8 +4529,21 @@ h1 { .main__resume-profile-about-button { position: relative; z-index: 2; - margin-top: 10px; + /*margin-top: 10px;*/ +} + +.table-responsive { + overflow: scroll; + -webkit-overflow-scrolling: touch; +} + +@media (min-width: 768px) { + .table-responsive { + overflow: hidden; + -webkit-overflow-scrolling: unset; + } } + .main__resume-profile-about-buttons{ display: flex; width: 100%; diff --git a/resources/views/worker.blade.php b/resources/views/worker.blade.php index 20c86b6..7bde0ab 100644 --- a/resources/views/worker.blade.php +++ b/resources/views/worker.blade.php @@ -269,21 +269,21 @@
- - @if (isset($Query[0]->place_worker)) - @if ($Query[0]->place_worker->count()) - - +
+ @if (isset($Query[0]->place_worker)) + @if ($Query[0]->place_worker->count()) +
+ - - - - - - - - - + + + + + + + + + @foreach($Query[0]->place_worker as $it) @@ -298,10 +298,11 @@ @endforeach - -
Должность:Название т/х:Тип судна:Марка ГД:Мощность ГД (кВТ):Водоизмещение (DWT):Название компании:Начало контракта:Окончание контракта:Должность:Название т/х:Тип судна:Марка ГД:Мощность ГД (кВТ):Водоизмещение (DWT):Название компании:Начало контракта:Окончание контракта:
{{ date('d.m.Y', strtotime($it->end_work)) }}
+ + + @endif @endif - @endif +
@@ -364,34 +365,34 @@ @endif -
-

Количество просмотров страницы: ({{ $stat[0]->lookin }})

-
+{{--
--}} +{{--

Количество просмотров страницы: ({{ $stat[0]->lookin }})

--}} +{{--
--}} -
-

Отзывы о работнике ({{ $Query[0]->response->count() }})

-
- @if ((isset($Query[0]->response)) && ($Query[0]->response->count())) -
-
    - @php $i = 1; @endphp - @foreach($Query[0]->response as $it) -
  • -

    Комментарий №{{$i}}

    - Оценка человека: {{ $it->stars }} - Сообщение: {{ $it->message }} -
  • - @php $i++; @endphp - @endforeach -
-
- @else -
-

Нету комментариев

-
- @endif -
-
+{{--
--}} +{{--

Отзывы о работнике ({{ $Query[0]->response->count() }})

--}} +{{--
--}} +{{-- @if ((isset($Query[0]->response)) && ($Query[0]->response->count()))--}} +{{--
--}} +{{--
    --}} +{{-- @php $i = 1; @endphp--}} +{{-- @foreach($Query[0]->response as $it)--}} +{{--
  • --}} +{{--

    Комментарий №{{$i}}

    --}} +{{-- Оценка человека: {{ $it->stars }}--}} +{{-- Сообщение: {{ $it->message }}--}} +{{--
  • --}} +{{-- @php $i++; @endphp--}} +{{-- @endforeach--}} +{{--
--}} +{{--
--}} +{{-- @else--}} +{{--
--}} +{{--

Нету комментариев

--}} +{{--
--}} +{{-- @endif--}} +{{--
--}} +{{--
--}}
diff --git a/resources/views/workers/subcribe.blade.php b/resources/views/workers/subcribe.blade.php index 065af36..3b807cc 100644 --- a/resources/views/workers/subcribe.blade.php +++ b/resources/views/workers/subcribe.blade.php @@ -17,6 +17,9 @@
+
+ @include('workers.emblema') +
@include('workers.menu', ['item' => 11])
-- 1.7.10.4