diff --git a/app/Views/layout/header.php b/app/Views/layout/header.php index 8e9ff0a7..3cf615cd 100755 --- a/app/Views/layout/header.php +++ b/app/Views/layout/header.php @@ -525,59 +525,144 @@ rgba(226, 103, 40, 0.5) (transparent) rgba(0, 153, 158, 0.5) (transparent) */ -.btn-app-primary { +.app-field-grey { + background-color: #ECECEC !important; +} + +.app-font-family { + font-family: 'Poppins', sans-serif !important; +} + +.app-title { font-size: 18px; } +.app-heading { font-size: 16px; } +.app-subtitle { font-size: 14px; } +.app-text { font-size: 12px; } + + +.title-text { + font-weight: 500; + font-style: normal; + font-size: 30px; + line-height: 1; + letter-spacing: 0; +} +.sub-title-text { + font-weight: 500; + font-style: normal; + font-size: 18px; + line-height: 1; + letter-spacing: 0; +} + +.app-text-left { + text-align: left !important; } + +.app-text-right { + text-align: right !important; } + +.app-text-center { + text-align: center !important; } + +.app-text-white { + color: #ffffff !important; } + +.app-text-black { + color: #000000 !important; } + +.app-text-grey { + color: #5D5D5D !important; } + +.app-text-primary { + color: #00999E !important; } +.app-text-secondary { + color: #E26728 !important; } + +.app-text-success { + color: #1abc9c !important; } + + +a.app-text-primary:hover, a.app-text-primary:focus { + color: rgba(0, 153, 158, 0.5); !important; } + +a.app-text-secondary:hover, a.app-text-secondary:focus { + color: rgba(226, 103, 40, 0.5) !important; } + +a.app-text-success:hover, a.app-text-success:focus { + color: #117964 !important; } + +.app-btn-primary { color: #fff !important; background-color: #00999E; border-color: #00999E; } -.btn-app-primary:hover { +.app-btn-primary:hover { color: #fff !important; background-color: #007A7E; border-color: #006C70; } -.btn-app-primary:focus, .btn-app-primary.focus { +.app-btn-primary:focus, .app-btn-primary.focus { color: #fff !important; background-color: #007A7E; border-color: #006C70; box-shadow: 0 0 0 0.15rem rgba(0, 153, 158, 0.5); } -.btn-app-primary.disabled, .btn-app-primary:disabled { +.app-btn-primary.disabled, .app-btn-primary:disabled { color: #fff !important; background-color: #00999E; border-color: #00999E; } -.btn-app-primary:not(:disabled):not(.disabled):active, .btn-app-primary:not(:disabled):not(.disabled).active, - .show > .btn-app-primary.dropdown-toggle { +.app-btn-primary:not(:disabled):not(.disabled):active, .app-btn-primary:not(:disabled):not(.disabled).active, + .show > .app-btn-primary.dropdown-toggle { color: #fff !important; background-color: #006C70; border-color: #005D61; } -.btn-app-primary:not(:disabled):not(.disabled):active:focus, .btn-app-primary:not(:disabled):not(.disabled).active:focus, - .show > .btn-app-primary.dropdown-toggle:focus { +.app-btn-primary:not(:disabled):not(.disabled):active:focus, .app-btn-primary:not(:disabled):not(.disabled).active:focus, + .show > .app-btn-primary.dropdown-toggle:focus { box-shadow: 0 0 0 0.15rem rgba(0, 153, 158, 0.5); } -.btn-app-ternary { +.app-btn-secondary { color: #fff !important; background-color: #E26728; border-color: #E26728; } -.btn-app-ternary:hover { +.app-btn-secondary:hover { color: #fff !important; background-color: #B8521F; border-color: #9C461B; } -.btn-app-ternary:focus, .btn-app-ternary.focus { +.app-btn-secondary:focus, .app-btn-secondary.focus { color: #fff !important; - background-color: #B8521F; + background-color: #E26728; border-color: #9C461B; box-shadow: 0 0 0 0.15rem rgba(226, 103, 40, 0.5); } -.btn-app-ternary.disabled, .btn-app-ternary:disabled { +.app-btn-secondary.disabled, .app-btn-secondary:disabled { color: #fff !important; background-color: #E26728; border-color: #E26728; } -.btn-app-ternary:not(:disabled):not(.disabled):active, .btn-app-ternary:not(:disabled):not(.disabled).active, - .show > .btn-app-ternary.dropdown-toggle { +.app-btn-secondary:not(:disabled):not(.disabled):active, .app-btn-secondary:not(:disabled):not(.disabled).active, + .show > .app-btn-secondary.dropdown-toggle { color: #fff !important; background-color: #9C461B; border-color: #803A16; } -.btn-app-ternary:not(:disabled):not(.disabled):active:focus, .btn-app-ternary:not(:disabled):not(.disabled).active:focus, - .show > .btn-app-ternary.dropdown-toggle:focus { +.app-btn-secondary:not(:disabled):not(.disabled):active:focus, .app-btn-secondary:not(:disabled):not(.disabled).active:focus, + .show > .app-btn-secondary.dropdown-toggle:focus { box-shadow: 0 0 0 0.15rem rgba(226, 103, 40, 0.5); } -.btn-border-radius{ border-radius: 10px !important; } +.app-btn-border-radius{ border-radius: 10px !important; } + +.app-badge-primary { + color: #ffffff; + background-color: #00999E; } +a.app-badge-primary:hover, a.app-badge-primary:focus { + color: #ffffff; + background-color: #007A7E; } +a.app-badge-primary:focus, a.app-badge-primary.focus { + outline: 0; + box-shadow: 0 0 0 0.15rem rgba(0, 153, 158, 0.5); } + +.app-badge-secondary { + color: #ffffff; + background-color: #E26728; } +a.app-badge-secondary:hover, a.app-badge-secondary:focus { + color: #ffffff; + background-color: #B8521F; } +a.app-badge-secondary:focus, a.app-badge-secondary.focus { + outline: 0; + box-shadow: 0 0 0 0.15rem rgba(226, 103, 40, 0.5); } @@ -750,9 +835,9 @@ rgba(0, 153, 158, 0.5) (transparent)
  • Claim Dump Upload
  • -
  • +
  • @@ -772,7 +857,7 @@ rgba(0, 153, 158, 0.5) (transparent)
  • - /assets/images/user_manual_sb.png" alt="Logo" height="20"> + /assets/images/ticket.png" alt="Logo" height="20"> Tickets
  • diff --git a/app/Views/thz_list.php b/app/Views/thz_list.php index 986c4594..0c17c4c0 100644 --- a/app/Views/thz_list.php +++ b/app/Views/thz_list.php @@ -73,8 +73,8 @@ tbody tr td:last-child { /* Optional: control first column width */ .table th:nth-child(1), .table td:nth-child(1) { - max-width: 200px !important; - min-width: 100px !important; + max-width: 50px !important; + min-width: 50px !important; overflow: hidden !important; text-overflow: ellipsis !important; white-space: nowrap !important; @@ -104,6 +104,14 @@ tbody tr td:last-child { text-align: right; } +.text-custom { + font-weight: 400; + font-style: normal; + font-size: 11px; + line-height: 1.44; + letter-spacing: -0.02em; +} + @@ -128,14 +245,13 @@ td .text-muted {
    -
    +
    -

    Ticket List

    +

    Tickets

    -
    -
    - +
    +
    @@ -154,28 +270,35 @@ td .text-muted { $row){ ?> - - + - - - - - - + + + + -
    Ticket No
    + -
    - +
    +
    + + 50) + ? htmlspecialchars(substr($subject, 0, 50)) . "..." + : htmlspecialchars($subject); + ?> + format('d/m/Y') . "
    " . $cdt->format('h:i a') . ""; endif; ?>
    + format('d/m/Y') . "
    " . $udt->format('h:i a') . ""; @@ -207,15 +330,15 @@ td .text-muted {
    - +
    -
    +
    - @@ -225,22 +348,21 @@ td .text-muted {
    -
    +
    -
    -
    - +
    +
    -