Skip to content
This repository was archived by the owner on Nov 19, 2021. It is now read-only.

Commit 41da888

Browse files
committed
modal style
1 parent 0da9483 commit 41da888

File tree

4 files changed

+13
-20
lines changed

4 files changed

+13
-20
lines changed

oasp4js-sample/src/app/components/crud/view/Crud.component.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
</div>
2929

3030
</div>
31-
31+
<!-- style="position:absolute; left: 0px; top: 0px; width:100%; height:100%;" -->
3232
<modal-dialog id="modal"
3333
*ngIf="hideModalDialog"
3434
[modal]=true
3535
[TITLE]=modalHeader
36-
style="position:absolute; left: 0px; top: 0px; width:100%; height:100%;">
36+
class="modaldialog">
3737
<tableDetails [parentTable]="selectedTable" (closeWindowEvent)="hideModalDialog = $event" (resultEvent)="rowSelected($event)" [_commands]="_commands"></tableDetails>
3838
</modal-dialog>

oasp4js-sample/src/app/components/details/service/Details.service.ts

-4
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ export class DetailsService{
99
commands : Command[] = [];
1010
commandList : Command[] = commandsList;
1111

12-
13-
1412
addCommand(c:Command){
1513

1614
let n = 0;
@@ -26,8 +24,6 @@ export class DetailsService{
2624
}
2725

2826
removeCommand(c:Command){
29-
// debugger
30-
// let index = this.commands.indexOf(c);
3127
for(let i = 0; i < this.commands.length ; i ++){
3228
if(this.commands[i].number === c.number){
3329
this.commands.splice(i,1);

oasp4js-sample/src/app/oasp/oasp-ui/modal-dialog/modal-dialog.component.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!-- 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>
33

44
<!-- modal -->
5-
<div class="modal-dialog" style="left:250px; top:250px;">
5+
<div class="modal-dialog">
66
<div class="modal-content">
77
<div class="modal-header">
88
<h3 class="modal-title">{{title}}</h3>

oasp4js-sample/src/app/oasp4js-sample.component.css

+9-12
Original file line numberDiff line numberDiff line change
@@ -7146,26 +7146,23 @@ tr.selected {
71467146
width:60%;
71477147
}
71487148

7149-
/*---------MODAL---------*/
7149+
/***********MODAL-DIALOG**********/
71507150

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%;
71627157
}
71637158

7159+
/*
71647160
.modal-dialog {
71657161
display: inline-block;
71667162
text-align: left;
71677163
vertical-align: middle;
71687164
}
7165+
*/
71697166

71707167
/************** PAGINATION ****************/
71717168

0 commit comments

Comments
 (0)