| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /**
- * Ces règles s'appliqueront à toutes les pages, layouts et components de l'application
- *
- * Quand c'est possible, préférer les règles par page, layout ou composant
- */
- // TODO: voir si certaines de ces règles ne devraient pas être rapatriées dans des pages, layouts, components
- header .v-toolbar__content {
- padding-right: 0;
- }
- .e-grid .e-gridheader {
- position: -webkit-sticky;
- position: sticky;
- top: 58px; /* The height of top nav menu. */
- z-index: 1;
- }
- .no-decoration {
- text-decoration: none !important;
- color: inherit !important;
- }
- .v-application a {
- color: rgb(var(--v-theme-primary))
- }
- .v-menu__content {
- z-index: 400 !important;
- }
- .toolbarForm .v-toolbar__content {
- padding-left: 0 !important;
- }
- .toolbarForm .v-toolbar__title .v-icon {
- height: 46px;
- width: 46px;
- }
- .header-menu {
- max-height: 300px;
- min-width: 300px;
- overflow-y: auto;
- .v-list{
- .v-list-item{
- border-bottom: 1px solid;
- border-bottom-color: rgb(var(--v-theme-neutral));
- }
- }
- }
- // A supprimer quand l'issue https://github.com/vuetifyjs/vuetify-loader/issues/273 sera règlée
- .v-application {
- font-size: 0.9rem;
- }
|