Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Enterprise Skin CSS error / typo

    Hi Isomorphic,

    please see this CSS lines in current Enterprise Skin:

    line 1762:
    Code:
    .sectionHeaderDisabledopened,
    .sectionHeaderDisabledclosed {
      background-color: whitesmoke;
      *zoom: 1;
      filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFF5F5F5', endColorstr='#FFEBEBEB');
      background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y1ZjVmNSIvPjxzdG9wIG9mZnNldD0iMjIlIiBzdG9wLWNvbG9yPSIjZjVmNWY1Ii8+PHN0b3Agb2Zmc2V0PSI0OCUiIHN0b3AtY29sb3I9IiNlYmViZWIiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlYmViZWIiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
      background-size: 100%;
      background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f5f5f5), color-stop(22%, #f5f5f5), color-stop(48%, #ebebeb), color-stop(100%, #ebebeb));
      background-image: -moz-linear-gradient(top, #f5f5f5 0%, #f5f5f5 22%, #ebebeb 48%, #ebebeb 100%);
      background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #f5f5f5 22%, #ebebeb 48%, #ebebeb 100%);
      background-image: linear-gradient(to bottom, #f5f5f5 0%, #f5f5f5 22%, #ebebeb 48%, #ebebeb 100%);
      border: 1px solid #e6e6e6;
      color: gray;
    }
    I think the "*" before the zoom is wrong, also startColorstr and endColorstr have 8 chars instead of 6.

    Best regards
    Blama

    #2
    The 8 characters color strings are allowed (see here), and the "*" is an IE7 hack, which we're going to leave there for the time being.

    Regards
    Isomorphic Software

    Comment

    Working...
    X