mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
feat(sync): add horizontal padding between table columns in conflict dialog
This commit is contained in:
parent
133d1b6145
commit
b3a82294f1
2 changed files with 10 additions and 2 deletions
|
|
@ -75,6 +75,7 @@
|
|||
|
||||
<!-- Vector Clock Table -->
|
||||
@if (localVectorClock || remoteVectorClock) {
|
||||
<h3>Vector Clock</h3>
|
||||
<table>
|
||||
<tr>
|
||||
<td>{{ T.F.SYNC.D_CONFLICT.REMOTE | translate }}</td>
|
||||
|
|
@ -91,7 +92,7 @@
|
|||
<tr>
|
||||
<td>{{ T.F.SYNC.D_CONFLICT.COMPARISON_RESULT | translate }}</td>
|
||||
<td>
|
||||
<strong>{{ getVectorClockComparisonLabel() }}</strong>
|
||||
<strong>{{ getVectorClockComparisonLabel() | translate }}</strong>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
|
|||
|
|
@ -13,11 +13,18 @@ table + table {
|
|||
margin-top: 20px;
|
||||
}
|
||||
|
||||
td {
|
||||
td,
|
||||
th {
|
||||
padding: 2px 8px;
|
||||
text-align: center;
|
||||
|
||||
&:first-child {
|
||||
text-align: left;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
padding-right: 0;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue