Skip to content

Commit

Permalink
Merge branch 'master' into missing-context-menu-icons
Browse files Browse the repository at this point in the history
  • Loading branch information
tacruc authored Jul 1, 2023
2 parents cce3ea3 + 68d5226 commit e15d617
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 24 deletions.
82 changes: 63 additions & 19 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"@nextcloud/axios": "^2.3.0",
"@nextcloud/dialogs": "^4.1.0",
"@nextcloud/event-bus": "^3.1.0",
"@nextcloud/l10n": "^2.1.0",
"@nextcloud/l10n": "^2.2.0",
"@nextcloud/moment": "^1.2.1",
"@nextcloud/paths": "^2.1.0",
"@nextcloud/router": "^2.1.2",
Expand Down
39 changes: 35 additions & 4 deletions src/components/Map.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1247,13 +1247,44 @@ export default {
margin-left: 0px;
}
::v-deep .leaflet-control-layers-base span,
::v-deep .leaflet-control-layers-overlays span {
::v-deep .leaflet-control-layers-expanded {
padding: 4px 0px !important;
}
::v-deep .leaflet-control-layers-base span:nth-child(1),
::v-deep .leaflet-control-layers-overlays span:nth-child(1) {
display: block;
height: 38px;
padding: 4px 10px;
border-top: 1px solid transparent;
border-bottom: 1px solid transparent;
color: var(--color-text-lighter) !important;
cursor: pointer !important;
}
::v-deep .leaflet-control-layers-selector {
min-height: 0;
::v-deep .leaflet-control-layers-base span:hover,
::v-deep .leaflet-control-layers-overlays span:hover {
color: var(--color-main-text) !important;
background-color: var(--color-background-hover) !important;
border-color: var(--color-border) !important;
}
::v-deep .leaflet-control-layers-base span:nth-child(2),
::v-deep .leaflet-control-layers-overlays span:nth-child(2) {
display: inline-block;
vertical-align: top;
line-height: 30px;
margin: 0px 10px;
cursor: pointer !important;
}
::v-deep .leaflet-control-layers-selector {
display: inline-block;
height: 30px;
margin: 0px;
}
::v-deep .leaflet-control-layers-separator {
border-color: var(--color-border) !important;
}
</style>

0 comments on commit e15d617

Please sign in to comment.