global.scss 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /**
  2. * Ces règles s'appliqueront à toutes les pages, layouts et components de l'application
  3. *
  4. * Quand c'est possible, préférer les règles par page, layout ou composant
  5. */
  6. // TODO: voir si certaines de ces règles ne devraient pas être rapatriées dans des pages, layouts, components
  7. header .v-toolbar__content {
  8. padding-right: 0;
  9. }
  10. .e-grid .e-gridheader {
  11. position: -webkit-sticky;
  12. position: sticky;
  13. top: 58px; /* The height of top nav menu. */
  14. z-index: 1;
  15. }
  16. .no-decoration {
  17. text-decoration: none !important;
  18. color: inherit !important;
  19. }
  20. .v-application a {
  21. color: rgb(var(--v-theme-primary))
  22. }
  23. .v-menu__content {
  24. z-index: 400 !important;
  25. }
  26. .toolbarForm .v-toolbar__content {
  27. padding-left: 0 !important;
  28. }
  29. .toolbarForm .v-toolbar__title .v-icon {
  30. height: 46px;
  31. width: 46px;
  32. }
  33. .header-menu {
  34. max-height: 300px;
  35. min-width: 300px;
  36. overflow-y: auto;
  37. .v-list{
  38. .v-list-item{
  39. border-bottom: 1px solid;
  40. border-bottom-color: rgb(var(--v-theme-neutral));
  41. }
  42. }
  43. }
  44. // A supprimer quand l'issue https://github.com/vuetifyjs/vuetify-loader/issues/273 sera règlée
  45. .v-application {
  46. font-size: 0.9rem;
  47. }