Skip to content

Commit 026e8f2

Browse files
Merge pull request #19182 from MauricioFauth/gis-editor
Refactor GIS editor modal
2 parents 69f7b5e + f30b98e commit 026e8f2

43 files changed

Lines changed: 541 additions & 596 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

public/themes/bootstrap/scss/_common.scss

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -785,19 +785,6 @@ select.invalid_value,
785785
width: 100%;
786786
}
787787

788-
#popup_background {
789-
display: none;
790-
position: fixed;
791-
width: 100%;
792-
height: 100%;
793-
top: 0;
794-
left: 0;
795-
background: $black;
796-
opacity: 0.7;
797-
z-index: 1000;
798-
overflow: hidden;
799-
}
800-
801788
#structure-action-links a {
802789
margin-right: 1em;
803790
}

public/themes/bootstrap/scss/_gis.scss

Lines changed: 0 additions & 45 deletions
This file was deleted.

public/themes/bootstrap/scss/theme.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
@import "bootstrap";
33
@import "common";
44
@import "enum-editor";
5-
@import "gis";
65
@import "navigation";
76
@import "designer";
87
@import "codemirror";

public/themes/metro/scss/_common.scss

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,19 +1073,6 @@ input {
10731073
width: 100%;
10741074
}
10751075

1076-
#popup_background {
1077-
display: none;
1078-
position: fixed;
1079-
width: 100%;
1080-
height: 100%;
1081-
top: 0;
1082-
left: 0;
1083-
background: #000;
1084-
opacity: 0.7;
1085-
z-index: 1000;
1086-
overflow: hidden;
1087-
}
1088-
10891076
#structure-action-links a {
10901077
margin-right: 1em;
10911078
}

public/themes/metro/scss/theme.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
@import "root";
55
@import "common";
66
@import "enum-editor";
7-
@import "../../bootstrap/scss/gis";
87
@import "navigation";
98
@import "designer";
109
@import "codemirror";

public/themes/original/scss/_common.scss

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -781,19 +781,6 @@ select.invalid_value,
781781
width: 100%;
782782
}
783783

784-
#popup_background {
785-
display: none;
786-
position: fixed;
787-
width: 100%;
788-
height: 100%;
789-
top: 0;
790-
left: 0;
791-
background: #000;
792-
opacity: 0.7;
793-
z-index: 1000;
794-
overflow: hidden;
795-
}
796-
797784
/**
798785
* Create table styles
799786
*/

public/themes/original/scss/theme.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
@import "../../bootstrap/scss/bootstrap";
33
@import "common";
44
@import "../../pmahomme/scss/enum-editor";
5-
@import "../../bootstrap/scss/gis";
65
@import "navigation";
76
@import "../../pmahomme/scss/designer";
87
@import "../../pmahomme/scss/codemirror";

public/themes/pmahomme/scss/_common.scss

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -980,19 +980,6 @@ input#import_merge {
980980
margin: 0;
981981
}
982982

983-
#popup_background {
984-
display: none;
985-
position: fixed;
986-
width: 100%;
987-
height: 100%;
988-
top: 0;
989-
left: 0;
990-
background: #000;
991-
opacity: 0.7;
992-
z-index: 1000;
993-
overflow: hidden;
994-
}
995-
996983
#structure-action-links a {
997984
margin-right: 1em;
998985
}

public/themes/pmahomme/scss/theme.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
@import "../../bootstrap/scss/bootstrap";
33
@import "common";
44
@import "enum-editor";
5-
@import "../../bootstrap/scss/gis";
65
@import "navigation";
76
@import "designer";
87
@import "codemirror";

resources/js/global.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ interface Window {
99
zxcvbnts: any;
1010
msCrypto: any;
1111
u2f: any;
12-
drawOpenLayers: () => any;
1312
variableNames: string[];
1413

1514
sprintf(format: string, ...values: (string|number)[]): string;

0 commit comments

Comments
 (0)