mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 17:22:48 -05:00
fixes tab focus not beig visible after deploying a server (#11410)
This commit is contained in:
@@ -94,14 +94,15 @@ export default () => `
|
||||
<div class="resources-container">
|
||||
<h2>${escape(localize('welcomePage.resources', "Resources"))}</h2>
|
||||
<div class="tabs">
|
||||
<input class="input" name="tabs" type="radio" id="tab-1" checked="checked" />
|
||||
<span class="label" for="tab-1" tabIndex="0">${escape(localize('welcomePage.history', "History"))}</span>
|
||||
<!-- Checkbox is not accessible to user yet, this feature is still in development -->
|
||||
<input tabindex="-1" class="input" name="tabs" type="radio" id="tab-1" checked="checked" />
|
||||
<span id="historyLabel" class="label" for="tab-1" tabIndex="0">${escape(localize('welcomePage.history', "History"))}</span>
|
||||
<div class="panel">
|
||||
<div class="recent history">
|
||||
<div class="flex list-header-container">
|
||||
<i class="icon-document themed-icon"></i>
|
||||
<span tabindex="0" class="list-header"><b>${escape(localize('welcomePage.name', "Name"))}</b></span>
|
||||
<span tabindex="0" class="list-header-last-opened"><b>${escape(localize('welcomePage.lastOpened', "Last Opened"))}</b></span>
|
||||
<span class="list-header">${escape(localize('welcomePage.name', "Name"))}</span>
|
||||
<span class="list-header-last-opened">${escape(localize('welcomePage.lastOpened', "Last Opened"))}</span>
|
||||
</div>
|
||||
<ul class="list">
|
||||
<!-- Filled programmatically -->
|
||||
@@ -110,8 +111,8 @@ export default () => `
|
||||
<div class="moreRecent">
|
||||
<a class="ads-welcome-page-link" href="command:workbench.action.openRecent">${escape(localize('welcomePage.moreRecent', "Show more"))}
|
||||
<i class="icon-arrow-down-dark"></i>
|
||||
</a>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user