Viewing file: head-css.old.blade.php (2.02 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<!--datatable css--> <link href="https://cdn.datatables.net/1.11.5/css/dataTables.bootstrap5.min.css" rel="stylesheet" type="text/css" /> <!--datatable responsive css--> <link href="https://cdn.datatables.net/responsive/2.2.9/css/responsive.bootstrap.min.css" rel="stylesheet" type="text/css" /> <link href="https://cdn.datatables.net/buttons/2.2.2/css/buttons.dataTables.min.css" rel="stylesheet" type="text/css" /> <link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" type="text/css" /> <link href="{{ URL::asset('assets/libs/sweetalert2/sweetalert2.min.css') }}" rel="stylesheet" type="text/css" />
<style> .choices__list--dropdown { visibility: hidden; z-index: 1; position: absolute; width: 100%; background-color: var(--vz-choices-bg); border: 1px solid var(--vz-border-color); box-shadow: 0 5px 10px rgba(30,32,37,.12); top: 100%; margin-top: 0; padding: 10px 10px 20px; border-bottom-left-radius: 2.5px; border-bottom-right-radius: 2.5px; word-break: break-all; will-change: visibility; -webkit-animation-duration: .3s; animation-duration: .3s; -webkit-animation-fill-mode: both; animation-fill-mode: both; transform: translateY(1px); max-height: 220px; overflow-y: scroll !important; } </style> @yield('css') <!-- Layout config Js --> <script src="{{ URL::asset('assets/js/layout.js') }}"></script> <!-- Bootstrap Css --> <link href="{{ URL::asset('assets/css/bootstrap.min.css') }}" id="bootstrap-style" rel="stylesheet" type="text/css" /> <!-- Icons Css --> <link href="{{ URL::asset('assets/css/icons.min.css') }}" rel="stylesheet" type="text/css" /> <!-- App Css--> <link href="{{ URL::asset('assets/css/app.min.css') }}" id="app-style" rel="stylesheet" type="text/css" /> <!-- custom Css--> <link href="{{ URL::asset('assets/css/custom.min.css') }}" id="app-style" rel="stylesheet" type="text/css" /> {{-- @yield('css') --}}
|