This repository was archived by the owner on Nov 19, 2021. It is now read-only.
File tree 4 files changed +13
-20
lines changed
oasp/oasp-ui/modal-dialog
4 files changed +13
-20
lines changed Original file line number Diff line number Diff line change 28
28
</ div >
29
29
30
30
</ div >
31
-
31
+ <!-- style="position:absolute; left: 0px; top: 0px; width:100%; height:100%;" -->
32
32
< modal-dialog id ="modal "
33
33
*ngIf ="hideModalDialog "
34
34
[modal] =true
35
35
[TITLE] =modalHeader
36
- style =" position:absolute; left: 0px; top: 0px; width:100%; height:100%; ">
36
+ class =" modaldialog ">
37
37
< tableDetails [parentTable] ="selectedTable " (closeWindowEvent) ="hideModalDialog = $event " (resultEvent) ="rowSelected($event) " [_commands] ="_commands "> </ tableDetails >
38
38
</ modal-dialog >
Original file line number Diff line number Diff line change @@ -9,8 +9,6 @@ export class DetailsService{
9
9
commands : Command [ ] = [ ] ;
10
10
commandList : Command [ ] = commandsList ;
11
11
12
-
13
-
14
12
addCommand ( c :Command ) {
15
13
16
14
let n = 0 ;
@@ -26,8 +24,6 @@ export class DetailsService{
26
24
}
27
25
28
26
removeCommand ( c :Command ) {
29
- // debugger
30
- // let index = this.commands.indexOf(c);
31
27
for ( let i = 0 ; i < this . commands . length ; i ++ ) {
32
28
if ( this . commands [ i ] . number === c . number ) {
33
29
this . commands . splice ( i , 1 ) ;
Original file line number Diff line number Diff line change 1
1
<!-- background mask -->
2
- < div [hidden] ="!modal " style = "position:absolute; left: 0px; top: 0px; width:100%; height:100%; background-color: grey ; opacity: 0.6; "> </ div >
2
+ < div [hidden] ="!modal " style = "position:absolute; left: 0px; top: 0px; width:100%; height:100%; background-color: black ; opacity: 0.6; "> </ div >
3
3
4
4
<!-- modal -->
5
- < div class ="modal-dialog " style =" left:250px; top:250px; " >
5
+ < div class ="modal-dialog ">
6
6
< div class ="modal-content ">
7
7
< div class ="modal-header ">
8
8
< h3 class ="modal-title "> {{title}}</ h3 >
Original file line number Diff line number Diff line change @@ -7146,26 +7146,23 @@ tr.selected {
7146
7146
width : 60% ;
7147
7147
}
7148
7148
7149
- /*--------- MODAL--------- */
7149
+ /*********** MODAL-DIALOG********* */
7150
7150
7151
- .modal {
7152
- text-align : center;
7153
- }
7154
-
7155
- @media screen and (min-width : 768px ) {
7156
- .modal : before {
7157
- display : inline-block;
7158
- vertical-align : middle;
7159
- content : " " ;
7160
- height : 100% ;
7161
- }
7151
+ .modaldialog {
7152
+ position : absolute;
7153
+ left : 0px ;
7154
+ top : 0px ;
7155
+ width : 100% ;
7156
+ height : 100% ;
7162
7157
}
7163
7158
7159
+ /*
7164
7160
.modal-dialog {
7165
7161
display: inline-block;
7166
7162
text-align: left;
7167
7163
vertical-align: middle;
7168
7164
}
7165
+ */
7169
7166
7170
7167
/************** PAGINATION ****************/
7171
7168
You can’t perform that action at this time.
0 commit comments