mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Website: Update rituals table styles (#33242)
Closes: https://github.com/fleetdm/fleet/issues/31942 Changes: - Updated the styles of ritual tables in the handbook to keep the formatting of multi-line descriptions.
This commit is contained in:
parent
e706507ae5
commit
db79280f1e
2 changed files with 5 additions and 2 deletions
|
|
@ -46,8 +46,8 @@ parasails.registerComponent('rituals', {
|
|||
<td>{{ritual.task}}</td>
|
||||
<td>{{ritual.startedOn}}</td>
|
||||
<td>{{ritual.frequency}}</td>
|
||||
<td v-if="!ritual.moreInfoUrl">{{ritual.description}}</td>
|
||||
<td v-else><a :href="ritual.moreInfoUrl">{{ritual.description}}</a></td>
|
||||
<td purpose="ritual-description" v-if="!ritual.moreInfoUrl">{{ritual.description}}</td>
|
||||
<td purpose="ritual-description" v-else><a :href="ritual.moreInfoUrl">{{ritual.description}}</a></td>
|
||||
<td>{{ritual.dri}}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
|
|
|||
|
|
@ -463,6 +463,9 @@
|
|||
padding-bottom: 0px;
|
||||
}
|
||||
}
|
||||
[purpose='ritual-description'] {
|
||||
white-space: preserve;
|
||||
}
|
||||
[purpose='checklist-item'] {
|
||||
display: flex;
|
||||
input[type='checkbox'] {
|
||||
|
|
|
|||
Loading…
Reference in a new issue