| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /**
- * Override / tema Fest (opzionale).
- * Aggiungi qui regole CSS custom importate da app.css.
- */
-
- /* DataTables: toolbar bottoni come gruppo (primo arrotondato a sx, ultimo a dx) */
- .dataTables_wrapper .dt-buttons {
- display: inline-flex;
- flex-wrap: wrap;
- align-items: stretch;
- gap: 0;
- }
-
- .dataTables_wrapper .dt-buttons > .btn,
- .dataTables_wrapper .dt-buttons > button.dt-button {
- border-radius: 0;
- }
-
- .dataTables_wrapper .dt-buttons > .btn:not(:only-child),
- .dataTables_wrapper .dt-buttons > button.dt-button:not(:only-child) {
- margin-inline-start: -1px;
- }
-
- .dataTables_wrapper .dt-buttons > .btn:first-child,
- .dataTables_wrapper .dt-buttons > button.dt-button:first-child {
- margin-inline-start: 0;
- border-top-left-radius: var(--bs-border-radius, 0.375rem);
- border-bottom-left-radius: var(--bs-border-radius, 0.375rem);
- }
-
- .dataTables_wrapper .dt-buttons > .btn:last-child,
- .dataTables_wrapper .dt-buttons > button.dt-button:last-child {
- border-top-right-radius: var(--bs-border-radius, 0.375rem);
- border-bottom-right-radius: var(--bs-border-radius, 0.375rem);
- }
-
- .dataTables_wrapper .dt-buttons > .btn:only-child,
- .dataTables_wrapper .dt-buttons > button.dt-button:only-child {
- border-radius: var(--bs-border-radius, 0.375rem);
- }
-
- .bx-chef-hat{
- --svg: url("data:image/svg+xml,%3csvg width='24' height='24' fill='currentColor' viewBox='0 0 24 24' transform='' xmlns='http://www.w3.org/2000/svg'%3e%3c!--Boxicons v3.0.8 https://boxicons.com %7c License https://docs.boxicons.com/free--%3e%3cpath d='M17.13 5.54C16.33 3.42 14.32 2 12 2S7.67 3.42 6.87 5.54A5.506 5.506 0 0 0 2 11c0 2.07 1.18 3.95 3 4.88V18c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-2.12c1.82-.93 3-2.81 3-4.88 0-2.82-2.13-5.15-4.87-5.46m.53 8.75c-.4.14-.67.52-.67.94v1.78H7v-1.78c0-.42-.27-.8-.67-.94-1.4-.5-2.33-1.82-2.33-3.28 0-1.93 1.57-3.5 3.42-3.5.04 0 .14.01.18.02.49 0 .9-.31 1-.78.36-1.61 1.76-2.73 3.41-2.73s3.05 1.12 3.41 2.73c.1.47.51.81 1 .78.06 0 .12 0 .09-.01 1.93 0 3.5 1.57 3.5 3.5 0 1.47-.94 2.79-2.33 3.28ZM5 20h14v2H5z'%3e%3c/path%3e%3c/svg%3e");
- }
-
- /* Default desktop */
- .text-sm-small {
- /* font-size: 1rem; */
- }
-
- /* Tablet */
- @media (max-width: 992px) {
- .text-sm-small {
- font-size: 1rem;
- }
- }
-
- /* Mobile */
- @media (max-width: 576px) {
- .text-sm-small {
- font-size: 0.9rem;
- }
- }
|