Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Selective bold text #16748

Merged
merged 3 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion client/src/components/Dataset/DatasetName.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div>
<b-link
id="dataset-dropdown"
class="workflow-dropdown font-weight-bold p-2"
class="workflow-dropdown p-2"
data-toggle="dropdown"
aria-haspopup="true"
aria-expanded="false">
Expand Down
4 changes: 2 additions & 2 deletions client/src/components/History/Content/ContentItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
@keydown="onKeyDown">
<div class="p-1 cursor-pointer" draggable @dragstart="onDragStart" @dragend="onDragEnd" @click.stop="onClick">
<div class="d-flex justify-content-between">
<span class="p-1 font-weight-bold" data-description="content item header info">
<span class="p-1" data-description="content item header info">
<b-button v-if="selectable" class="selector p-0" @click.stop="$emit('update:selected', !selected)">
<icon v-if="selected" fixed-width size="lg" :icon="['far', 'check-square']" />
<icon v-else fixed-width size="lg" :icon="['far', 'square']" />
Expand Down Expand Up @@ -46,7 +46,7 @@
<icon fixed-width :icon="contentState.icon" :spin="contentState.spin" />
</span>
<span class="id hid">{{ id }}:</span>
<span class="content-title name">{{ name }}</span>
<span class="content-title name font-weight-bold">{{ name }}</span>
</span>
<span v-if="item.purged" class="align-self-start btn-group p-1">
<b-badge variant="secondary" title="This dataset has been permanently deleted">
Expand Down
4 changes: 2 additions & 2 deletions client/src/components/Workflow/InvocationsList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
:title="getStoredWorkflowNameByInstanceId(data.item.workflow_id)"
class="truncate">
<b-link href="#" @click.stop="swapRowDetails(data)">
<b>{{ getStoredWorkflowNameByInstanceId(data.item.workflow_id) }}</b>
{{ getStoredWorkflowNameByInstanceId(data.item.workflow_id) }}
</b-link>
</div>
</template>
Expand All @@ -60,7 +60,7 @@
:title="`<b>Switch to</b><br>${getHistoryNameById(data.item.history_id)}`"
class="truncate">
<b-link id="switch-to-history" href="#" @click.stop="switchHistory(data.item.history_id)">
<b>{{ getHistoryNameById(data.item.history_id) }}</b>
{{ getHistoryNameById(data.item.history_id) }}
</b-link>
</div>
</template>
Expand Down