Commit 04f9732b authored by Thomas Randolph's avatar Thomas Randolph

Use GL utility classes

parent 7a9043b6
...@@ -53,8 +53,8 @@ export default { ...@@ -53,8 +53,8 @@ export default {
<div <div
class="diff-stats" class="diff-stats"
:class="{ :class="{
'is-compare-versions-header d-none d-lg-inline-flex': isCompareVersionsHeader, 'is-compare-versions-header gl-display-none gl-lg-display-inline-flex': isCompareVersionsHeader,
'd-none d-sm-inline-flex': !isCompareVersionsHeader, 'gl-display-none gl-sm-display-inline-flex': !isCompareVersionsHeader,
}" }"
> >
<div v-if="notDiffable" :class="fileStats.classes"> <div v-if="notDiffable" :class="fileStats.classes">
...@@ -66,14 +66,14 @@ export default { ...@@ -66,14 +66,14 @@ export default {
<span class="text-secondary bold">{{ diffFilesCountText }} {{ filesText }}</span> <span class="text-secondary bold">{{ diffFilesCountText }} {{ filesText }}</span>
</div> </div>
<div <div
class="diff-stats-group cgreen d-flex align-items-center" class="diff-stats-group gl-text-green-600 gl-display-flex gl-align-items-center"
:class="{ bold: isCompareVersionsHeader }" :class="{ bold: isCompareVersionsHeader }"
> >
<span>+</span> <span>+</span>
<span class="js-file-addition-line">{{ addedLines }}</span> <span class="js-file-addition-line">{{ addedLines }}</span>
</div> </div>
<div <div
class="diff-stats-group cred d-flex align-items-center" class="diff-stats-group gl-text-red-500 gl-display-flex gl-align-items-center"
:class="{ bold: isCompareVersionsHeader }" :class="{ bold: isCompareVersionsHeader }"
> >
<span>-</span> <span>-</span>
......
...@@ -105,9 +105,9 @@ export function stats(file) { ...@@ -105,9 +105,9 @@ export function stats(file) {
valid = true; valid = true;
if (diff > 0) { if (diff > 0) {
classes = 'cgreen'; classes = 'gl-text-green-600';
} else if (diff < 0) { } else if (diff < 0) {
classes = 'cred'; classes = 'gl-text-red-500';
} }
} }
......
...@@ -58,7 +58,7 @@ describe('diff_stats', () => { ...@@ -58,7 +58,7 @@ describe('diff_stats', () => {
it("renders the bytes changes instead of line changes when the file isn't diffable", () => { it("renders the bytes changes instead of line changes when the file isn't diffable", () => {
const content = getBytesContainer(); const content = getBytesContainer();
expect(content.classes('cgreen')).toBe(true); expect(content.classes('gl-text-green-600')).toBe(true);
expect(content.text()).toBe('+1.00 KiB (+100%)'); expect(content.text()).toBe('+1.00 KiB (+100%)');
}); });
}); });
......
...@@ -181,7 +181,7 @@ describe('diff_file utilities', () => { ...@@ -181,7 +181,7 @@ describe('diff_file utilities', () => {
{ {
changed: 1024, changed: 1024,
percent: 100, percent: 100,
classes: 'cgreen', classes: 'gl-text-green-600',
sign: '+', sign: '+',
text: '+1.00 KiB (+100%)', text: '+1.00 KiB (+100%)',
valid: true, valid: true,
...@@ -197,7 +197,7 @@ describe('diff_file utilities', () => { ...@@ -197,7 +197,7 @@ describe('diff_file utilities', () => {
{ {
changed: -1024, changed: -1024,
percent: -100, percent: -100,
classes: 'cred', classes: 'gl-text-red-500',
sign: '', sign: '',
text: '-1.00 KiB (-100%)', text: '-1.00 KiB (-100%)',
valid: true, valid: true,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment