Commit bebb30e4 authored by Jacob Schatz's avatar Jacob Schatz Committed by Eric Eastwood

Add generic css class.

parent a4ab2a0f
...@@ -65,7 +65,7 @@ export default RepoFile; ...@@ -65,7 +65,7 @@ export default RepoFile;
<template> <template>
<tr class="file" v-if="canShowFile" :class="activeFileClass" @click.prevent="linkClicked(file)"> <tr class="file" v-if="canShowFile" :class="activeFileClass" @click.prevent="linkClicked(file)">
<td> <td>
<i class="fa fa-fw" :class="fileIcon" :style="fileIndentation" aria-label="file icon"></i> <i class="fa fa-fw file-icon" :class="fileIcon" :style="fileIndentation" aria-label="file icon"></i>
<a :href="file.url" class="repo-file-name" :title="file.url">{{file.name}}</a> <a :href="file.url" class="repo-file-name" :title="file.url">{{file.name}}</a>
</td> </td>
......
...@@ -156,7 +156,7 @@ ...@@ -156,7 +156,7 @@
color: $gray-darkest; color: $gray-darkest;
} }
i.fa.fa-circle { .unsaved-icon {
color: $brand-success; color: $brand-success;
} }
...@@ -272,7 +272,7 @@ ...@@ -272,7 +272,7 @@
} }
} }
.fa { .file-icon {
margin-right: 5px; margin-right: 5px;
} }
......
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