|
55 | 55 | margin-top: 0 !important; |
56 | 56 | } |
57 | 57 |
|
| 58 | + /* Garantir que o fundo permaneça como está, especialmente no Kanban */ |
| 59 | + body { |
| 60 | + background-color: #f3f4f6 !important; |
| 61 | + /* bg-gray-100 */ |
| 62 | + } |
| 63 | + |
| 64 | + /* Garantir que o app não tenha fundo escuro */ |
| 65 | + #app { |
| 66 | + background-color: transparent !important; |
| 67 | + } |
| 68 | + |
| 69 | + /* Garantir que o wrapper principal não tenha fundo escuro */ |
| 70 | + #app>div.flex.flex-wrap.app-wrapper { |
| 71 | + background-color: transparent !important; |
| 72 | + } |
| 73 | + |
| 74 | + /* Corrigir fundo escuro específico do Kanban */ |
| 75 | + #app>div.flex.flex-wrap.app-wrapper.dark\:text-slate-300>main>div>div { |
| 76 | + background-color: transparent !important; |
| 77 | + } |
| 78 | + |
| 79 | + /* Garantir que o main do Kanban não tenha fundo escuro */ |
| 80 | + #app>div.flex.flex-wrap.app-wrapper.dark\:text-slate-300>main { |
| 81 | + background-color: transparent !important; |
| 82 | + } |
| 83 | + |
58 | 84 | .navbar-item-indicator { |
59 | 85 | height: 3px; |
60 | 86 | transition: all 0.3s ease; |
|
356 | 382 | }); |
357 | 383 | </script> |
358 | 384 |
|
| 385 | + |
| 386 | + |
359 | 387 | <!-- Navbar Inferior - Visível apenas em dispositivos móveis (menor que md:768px) --> |
360 | 388 | <div class="fixed bottom-0 w-full md:hidden z-[9999]"> |
361 | 389 | <nav class="navbar-container bg-navblue mx-auto max-w-lg shadow-lg"> |
|
445 | 473 |
|
446 | 474 | @media (max-width: 768px) { |
447 | 475 |
|
| 476 | + /* Ocultar input específico no mobile */ |
| 477 | + #app>div.flex.flex-wrap.app-wrapper.dark\:text-slate-300>main>div>section>div>header>div>div>div:nth-child(1)>div>input { |
| 478 | + display: none !important; |
| 479 | + } |
| 480 | + |
| 481 | + /* Ocultar ícone específico no mobile */ |
| 482 | + #app>div.flex.flex-wrap.app-wrapper.dark\:text-slate-300>main>div>section>div>header>div>div>div:nth-child(1)>div>span { |
| 483 | + display: none !important; |
| 484 | + } |
| 485 | + |
| 486 | + /* Ocultar bottom-left-labels no mobile */ |
| 487 | + #app>div.flex.flex-wrap.app-wrapper.dark\:text-slate-300>main>div>div>header>div.bottom-left-labels { |
| 488 | + display: none !important; |
| 489 | + } |
| 490 | + |
| 491 | + /* Ocultar bottom-right-actions button no mobile */ |
| 492 | + #app>div.flex.flex-wrap.app-wrapper.dark\:text-slate-300>main>div>div>header>div.bottom-right-actions>div>div>button { |
| 493 | + display: none !important; |
| 494 | + } |
| 495 | + |
448 | 496 | /* Botão de voltar */ |
449 | 497 | #app>div.flex.flex-wrap.app-wrapper.dark\:text-slate-300>main>section>div.conversation-details-wrap.bg-n-background>div.flex.flex-col.items-center.justify-between.px-4.py-2.border-b.bg-n-background.border-n-weak.md\:flex-row>div>div.flex.items-center.justify-start.max-w-full.min-w-0.w-fit>button { |
450 | 498 | display: flex !important; |
|
0 commit comments