Browse Source

云版面状态应该叠加到宝珠前面去,转转则应该在宝珠后面

tags/v26.0
枫谷剑仙 3 years ago
parent
commit
ecb07d1ae4
2 changed files with 5 additions and 3 deletions
  1. +1
    -1
      service-worker.js
  2. +4
    -2
      style.css

+ 1
- 1
service-worker.js View File

@@ -6415,7 +6415,7 @@ const cachesMap = new Map([
],
[
"style.css",
"4096273933840e59298db168f496c19e"
"f853aaf92d614083ca5a295b7a9a3bd1"
],
[
"temp.js",


+ 4
- 2
style.css View File

@@ -2737,20 +2737,22 @@ icon.inflicts::after
height: 36px;
background-repeat: no-repeat;
}
/*轮盘位,在宝珠后面*/
.block.roulette::before
{
content: "";
background-image: url(images/icon-orbs.png);
background-position-x:calc(-36px * 1);
background-position-y:calc(-36px * 7);
transform: scale(1);
}
.block.cloud::before
/*云,在宝珠前面*/
.block.cloud::after
{
content: "";
background-image: url(images/icon-cloud-1.png);
background-size: contain;
transform: scale(1.2);
z-index: 99;
}
.orb-icon
{


Loading…
Cancel
Save