We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf89efa commit 9b26ffdCopy full SHA for 9b26ffd
contentcuration/contentcuration/frontend/settings/pages/Storage/RequestForm.vue
@@ -63,7 +63,11 @@
63
<!-- Who can use content -->
64
<h3>
65
{{ $tr('whoCanUseContentLabel') }}
66
- <InfoModal :header="$tr('licenseInfoHeader')" :items="licenseOptions">
+ <InfoModal
67
+ :header="$tr('licenseInfoHeader')"
68
+ :items="licenseOptions"
69
+ :style="{ position: 'relative', top: '5px' }"
70
+ >
71
<template #header="{ item }">
72
{{ translateConstant(item.license_name) }}
73
</template>
contentcuration/contentcuration/frontend/shared/views/InfoModal.vue
@@ -1,8 +1,9 @@
1
<template>
2
3
<div :style="{ display: 'inline' }">
4
- <Icon
+ <KIconButton
5
icon="help"
6
+ size="mini"
7
:color="$themeTokens.primary"
8
data-test="info-icon"
9
@click="displayDialog = !displayDialog"
0 commit comments