Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add shortcut links within catalog layers context menu (layers and project settings) #392

Merged
merged 31 commits into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
ebce7f2
Create CatalogProjectContextMenu.vue and use common directive click-o…
volterra79 Mar 24, 2023
7585fcb
Add CatalogProjectContextMenu.vue and use common showContextMenu on C…
volterra79 Mar 24, 2023
b1be0bb
Set common css/less rules from catalog-context-menu
volterra79 Mar 24, 2023
21deaf0
extract event listeners from `components/Catalog.vue`)
Raruto Mar 27, 2023
bc0cae6
sort attributes
Raruto Mar 27, 2023
b857e48
vertical indentation
Raruto Mar 27, 2023
b081c57
missing yoda
Raruto Mar 27, 2023
21ca419
Update CatalogLayerContextMenu.vue
Raruto Mar 27, 2023
ac0cee2
exctract predicates
Raruto Mar 28, 2023
9a29f4f
Update CatalogProjectContextMenu.vue
Raruto Mar 28, 2023
14caffe
Update CatalogTristateTree.vue
Raruto Mar 28, 2023
7564e57
remove tautology
Raruto Mar 28, 2023
52d8904
shorten directive name (ref: `v-click-outside`)
Raruto Mar 28, 2023
a3565b4
Merge branch 'dev' into issue_391
Raruto Jun 22, 2023
764be65
function name
Raruto Jun 22, 2023
3f1b0c1
qgis icon
Raruto Jun 22, 2023
2c177c1
Merge branch 'dev' into issue_391
Raruto Jul 21, 2023
508302b
Merge branch 'dev' into issue_391
Raruto Jan 9, 2024
3b42887
fix duplicate const variable
Raruto Jan 9, 2024
de5827e
missing file
Raruto Jan 9, 2024
839cbfc
update since tags
Raruto Jan 9, 2024
25bf69d
add `edit_url` and `layers_url` links
Raruto Jan 9, 2024
ae7880b
Merge branch 'dev' into issue_391
Raruto Jan 16, 2024
cb3c3f7
Merge branch 'dev' into issue_391
volterra79 Jan 17, 2024
f7800e3
Merge branch 'dev' into issue_391
Raruto Jan 25, 2024
2711b0e
hide context menu items on empty config
Raruto Jan 25, 2024
7fb81e1
Merge branch 'dev' into issue_391
volterra79 Jan 31, 2024
55cc2ef
Merge branch 'dev' into issue_391
volterra79 Jan 31, 2024
0fd0035
Merge branch 'issue_391' of https://github.com/g3w-suite/g3w-client i…
volterra79 Jan 31, 2024
49359d8
Merge branch 'dev' into issue_391
Raruto Feb 1, 2024
ba45be9
Merge branch 'dev' into issue_391
Raruto Feb 1, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/assets/style/less/g3w-catalog.less
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ Licensed under MIT
}
}

#layer-menu {
.catalog-context-menu {
background: #FAFAFA;
border: 1px solid #BDBDBD;
border-radius: 3px;
Expand Down Expand Up @@ -391,7 +391,7 @@ Licensed under MIT
border:0;
}
}
#layer-menu {
.catalog-context-menu {
.wms-url-tooltip {
.tooltip-inner {
min-width: 200px;
Expand Down
2 changes: 1 addition & 1 deletion src/assets/style/less/g3w-skins/blue/g3w-catalog.less
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}
}

#layer-menu {
.catalog-context-menu {
li {
&.title {
border-bottom-color: @light-blue !important;
Expand Down
3 changes: 1 addition & 2 deletions src/assets/style/less/g3w-skins/green/g3w-catalog.less
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@
}
}


#layer-menu {
.catalog-context-menu {
li {
&.title {
border-bottom-color: @green !important;
Expand Down
3 changes: 1 addition & 2 deletions src/assets/style/less/g3w-skins/purple/g3w-catalog.less
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@
}
}


#layer-menu {
.catalog-context-menu {
li {
&.title {
border-bottom-color: @purple !important;
Expand Down
3 changes: 1 addition & 2 deletions src/assets/style/less/g3w-skins/red/g3w-catalog.less
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@
}
}


#layer-menu {
.catalog-context-menu {
li {
&.title {
border-bottom-color: @red !important;
Expand Down
3 changes: 1 addition & 2 deletions src/assets/style/less/g3w-skins/yellow/g3w-catalog.less
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@
}
}


#layer-menu {
.catalog-context-menu {
li {
&.title {
border-bottom-color: @yellow !important;
Expand Down
Loading