Browse Source

polish #1967: Changed the item effects color on tooltips to blueB

tags/v0.12.0
Shaun 1 year ago
parent
commit
adfe6e1c2e
2 changed files with 11 additions and 2 deletions
  1. +10
    -1
      src/client/ui/templates/tooltipItem/buildTooltip/lineBuilders.js
  2. +1
    -1
      src/client/ui/templates/tooltipItem/styles.less

+ 10
- 1
src/client/ui/templates/tooltipItem/buildTooltip/lineBuilders.js View File

@@ -214,7 +214,16 @@ define([
html += '<br />';
});

return html;
const result = (
lineBuilders.div('space', ' ') +
lineBuilders.div('line', ' ') +
lineBuilders.div('smallSpace', ' ') +
html +
lineBuilders.div('smallSpace', ' ') +
lineBuilders.div('line', ' ')
);

return result;
},

material: () => {


+ 1
- 1
src/client/ui/templates/tooltipItem/styles.less View File

@@ -99,7 +99,7 @@
}

.effects {
color: @white;
color: @blueB;
}

.faction {


Loading…
Cancel
Save