Sha256: c096dc944985dae89de628102af365c78a150f9e0b5881a4c75423b212028d20

Contents?: true

Size: 821 Bytes

Versions: 6

Compression:

Stored size: 821 Bytes

Contents

/*
Safari Hack: Safari create reflow glitches due to a webkit bug with border-spacing (cellspacing)
when the template being edited makes use of horizontal border spacing.
  See: https://github.com/voidlabs/mosaico/issues/53
The following are terrible hacks to make this happens less often.
It seems something similar happens to Chrome, too;
  See:; https://github.com/voidlabs/mosaico/issues/85
So we broadened the application of this hack to include Chrome.
*/
@media screen and (min-color-index:0) and (-webkit-min-device-pixel-ratio:0) { @media {
  #main-wysiwyg-area table:not(.img-wysiwyg), #main-wysiwyg-area .selected table:not(.img-wysiwyg):hover {
    position: relative;
  }
  #main-wysiwyg-area table:not(.img-wysiwyg):hover, #main-wysiwyg-area .selected table:not(.img-wysiwyg) {
    position: static;
  }
}}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mosaico-2.0.0 vendor/assets/mosaico-0.16.0/mosaico/src/css/safarihack.css
mosaico-1.1.1 vendor/assets/mosaico-0.16.0/mosaico/src/css/safarihack.css
mosaico-1.1.0 vendor/assets/mosaico-0.16.0/mosaico/src/css/safarihack.css
mosaico-1.0.2 vendor/assets/mosaico-0.16.0/mosaico/src/css/safarihack.css
mosaico-1.0.1 vendor/assets/mosaico-0.16.0/mosaico/src/css/safarihack.css
mosaico-1.0.0 vendor/assets/mosaico-0.16.0/mosaico/src/css/safarihack.css