app/Resources/views/default/ie8-alert.html.twig line 1

Open in your IDE?
  1. <style>
  2.   .lt-ie9 {
  3.     overflow: hidden;
  4.   }
  5.   .ie-mask {
  6.     z-index: 999999;
  7.     position: fixed;
  8.     top: 0;
  9.     right: 0;
  10.     bottom: 0;
  11.     left: 0;
  12.     filter: alpha(opacity=50);
  13.     opacity: 0.5;
  14.     background: #000;
  15.   }
  16.   .ie-alert-wrap {
  17.     position: absolute;
  18.     z-index: 1000000;
  19.     margin: -200px auto 0;
  20.     top: 50%;
  21.     left: 0;
  22.     right: 0;
  23.     text-align: center;
  24.   }
  25.   .ie-alert {
  26.     width: 514px;
  27.     height: 397px;
  28.     margin: 0 auto;
  29.   }
  30.   .ie-alert__chrome,
  31.   .ie-alert__firefox {
  32.     position: absolute;
  33.     z-index: 1000001;
  34.     display: block;
  35.     bottom: 48px;
  36.     width: 60px;
  37.     height: 80px;
  38.   }
  39.   .ie-alert__chrome {
  40.     left: 50%;
  41.     margin-left: -80px;
  42.   }
  43.   .ie-alert__firefox {
  44.     right: 50%;
  45.     margin-right: -80px;
  46.   }
  47. </style>
  48. <div class="ie-mask"></div>
  49. <div class="ie-alert-wrap">
  50.   <div class="ie-alert" style="background:url('{{asset("static-dist/app/img/browser/browser_update.png")}}')">
  51.     <a href="http://www.baidu.com/s?wd=%E8%B0%B7%E6%AD%8C%E6%B5%8F%E8%A7%88%E5%99%A8" target="_blank" class="ie-alert__chrome"></a>
  52.     <a href="http://firefox.com.cn/download/" target="_blank" class="ie-alert__firefox"></a>
  53.   </div>
  54. </div>