Browse Source

Fix Edge and IE11 bug with pointer-events

pull/49/merge
Quique Fernandez 8 years ago
parent
commit
4104e6d931
5 changed files with 5 additions and 1 deletions
  1. +1
    -1
      src/Web/WebMVC/wwwroot/css/app.min.css
  2. +1
    -0
      src/Web/WebMVC/wwwroot/css/basket/basket-status/basket-status.component.css
  3. +1
    -0
      src/Web/WebMVC/wwwroot/css/shared/components/pager/pager.css
  4. +1
    -0
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/basket/basket-status/basket-status.component.scss
  5. +1
    -0
      src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/components/pager/pager.scss

+ 1
- 1
src/Web/WebMVC/wwwroot/css/app.min.css
File diff suppressed because it is too large
View File


+ 1
- 0
src/Web/WebMVC/wwwroot/css/basket/basket-status/basket-status.component.css View File

@ -1,5 +1,6 @@
.esh-basketstatus {
cursor: pointer;
display: inline-block;
float: right;
position: relative;
transition: all 0.35s;


+ 1
- 0
src/Web/WebMVC/wwwroot/css/shared/components/pager/pager.css View File

@ -8,6 +8,7 @@
}
.esh-pager-item--navigable {
display: inline-block;
cursor: pointer;
}


+ 1
- 0
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/basket/basket-status/basket-status.component.scss View File

@ -2,6 +2,7 @@
.esh-basketstatus {
cursor: pointer;
display: inline-block;
float: right;
position: relative;
transition: all $animation-speed-default;


+ 1
- 0
src/Web/WebSPA/eShopOnContainers.WebSPA/Client/modules/shared/components/pager/pager.scss View File

@ -18,6 +18,7 @@
&--navigable {
cursor: pointer;
display: inline-block;
&:hover {
color: $color-secondary;


Loading…
Cancel
Save