Commit 3795ce73 authored by Phil Hughes's avatar Phil Hughes

Fixed multi-file editor table cells content width jumping

parent dc1e6b43
......@@ -54,7 +54,10 @@
<tr
class="file"
@click.prevent="clickedTreeRow(file)">
<td :colspan="submoduleColSpan">
<td
class="multi-file-table-col-name"
:colspan="submoduleColSpan"
>
<i
class="fa fa-fw file-icon"
:class="fileIcon"
......
......@@ -19,7 +19,7 @@
class="loading-file"
aria-label="Loading files"
>
<td>
<td class="multi-file-table-col-name">
<skeleton-loading-container
:small="true"
/>
......
......@@ -57,7 +57,7 @@ export default {
</strong>
</th>
<template v-else>
<th class="name">
<th class="name multi-file-table-col-name">
Name
</th>
<th class="hidden-sm hidden-xs last-commit">
......
......@@ -298,3 +298,7 @@
width: 100%;
}
}
.multi-file-table-col-name {
width: 350px;
}
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