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

Fix to issue #4606 : Links leading outside Studio need to have a pop out icon #4622

Merged
merged 11 commits into from
Aug 9, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
{{ $tr('apiTokenMessage') }}
<KExternalLink
href="https://ricecooker.readthedocs.io/en/latest/index.html"
target="_blank"
openInNewTab
:text="$tr('apiDocumentation')"
rel="noopener noreferrer"
/>
Expand Down Expand Up @@ -233,5 +233,4 @@
.row {
padding: 8px 0;
}

</style>
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,12 @@

<p>

<span>{{ $tr('requestMoreSpaceMessage') }}</span>
<span>{{ $tr('requestMoreSpaceMessage') + " " }}</span>

<KExternalLink
style="display: inline;"
:text="$tr('learnMoreAboutImportingContentFromChannels')"
href="https://kolibri-studio.readthedocs.io/en/latest/add_content.html#import-content-from-other-channels"
target="_blank"
openInNewTab
/>

</p>
Expand Down Expand Up @@ -161,4 +160,4 @@
}
}

</style>
</style>
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@
</p>
<p>
<KExternalLink
class="kexternal-redirect"
href="https://kolibri-studio.readthedocs.io/en/latest/index.html"
target="_blank"
openInNewTab
:text="$tr('userDocsLink')"
rel="noopener noreferrer"
/>
Expand All @@ -50,9 +51,10 @@
<li>{{ $tr('bestPractice5') }}</li>
<li>
<KExternalLink
class="kexternal-redirect"
href="https://ricecooker.readthedocs.io/en/latest/video_compression.html"
:text="$tr('bestPractice6')"
target="_blank"
openInNewTab
rel="noopener noreferrer"
/>
</li>
Expand All @@ -64,16 +66,18 @@
<!-- Issues -->
<h2>{{ $tr('notableIssues') }}</h2>
<KExternalLink
class="kexternal-redirect"
href="https://github.com/learningequality/studio/issues/3992"
:text="$tr('issueLink1')"
target="_blank"
openInNewTab
rel="noopener noreferrer"
/>
<p>{{ $tr('issue1') }}</p>
<KExternalLink
class="kexternal-redirect"
href="https://github.com/learningequality/studio/issues"
:text="$tr('issuesPageLink')"
target="_blank"
openInNewTab
rel="noopener noreferrer"
/>
</div>
Expand Down Expand Up @@ -141,4 +145,7 @@
h2 {
margin-top: 32px;
}
</style>
.kexternal-redirect{
margin-left: -8px;
}
</style>