Commit c1c2a83c5641b04bed059c6393cb4bc9546d4bd8

Authored by Marcelo Puebla
1 parent 1096eac640
Exists in develop

Add

z-index = 1000 a modal de sinonimos y promociones
src/app/shared/promocion/promocion.component.html
... ... @@ -10,7 +10,7 @@
10 10 ondragstart="return false;"
11 11 (contextmenu)="false"
12 12 (click)="selectPromo(articulosPromo[0])"
13   - class="btn-effect mt-n3 icon-30 mr-2 position-absolute right-0"
  13 + class="btn-effect mt-n3 icon-30 mr-2 position-absolute right-0 z-index"
14 14 src="assets/img/icono-cancelar-blanco.svg">
15 15 <div class="row mx-0 w-100 justify-content-between mt-3">
16 16 <div class="col-8">
src/app/shared/sinonimo/sinonimo.component.html
... ... @@ -5,7 +5,7 @@
5 5 ondragstart="return false;"
6 6 (contextmenu)="false"
7 7 (click)="modalRef.hide()"
8   - class="btn-effect icon-30 mt-2 mr-2 position-absolute right-0 top-0"
  8 + class="btn-effect icon-30 mt-2 mr-2 position-absolute right-0 top-0 z-index"
9 9 src="assets/img/icono-cancelar-blanco.svg">
10 10 <p class="col-7 h4 px-0 align-self-center">{{articulo.DetArt}}</p>
11 11 <div class="col-5 pt-4 pr-0 text-right">
... ... @@ -98,3 +98,7 @@ p {
98 98 .modal-content {
99 99 background: transparent !important;
100 100 }
  101 +
  102 +.z-index {
  103 + z-index: 1000;
  104 +}