mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-14 01:25:37 -05:00
* Initial VS Code 1.21 file copy with patches * A few more merges * Post npm install * Fix batch of build breaks * Fix more build breaks * Fix more build errors * Fix more build breaks * Runtime fixes 1 * Get connection dialog working with some todos * Fix a few packaging issues * Copy several node_modules to package build to fix loader issues * Fix breaks from master * A few more fixes * Make tests pass * First pass of license header updates * Second pass of license header updates * Fix restore dialog issues * Remove add additional themes menu items * fix select box issues where the list doesn't show up * formatting * Fix editor dispose issue * Copy over node modules to correct location on all platforms
46 lines
831 B
HTML
46 lines
831 B
HTML
<!-- Copyright (C) Microsoft Corporation. All rights reserved. -->
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>Manage Built-in Extensions</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<script src="browser-main.js"></script>
|
|
<style>
|
|
body {
|
|
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
|
|
font-size: 10pt;
|
|
}
|
|
|
|
code {
|
|
font-family: 'Menlo', 'Courier New', 'Courier', monospace;
|
|
}
|
|
|
|
ul {
|
|
padding-left: 1em;
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
padding: 0.3em 0;
|
|
}
|
|
|
|
label {
|
|
margin-right: 1em;
|
|
}
|
|
|
|
form {
|
|
padding: 0.3em 0 0.3em 0.3em;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<h1>Built-in Extensions</h1>
|
|
<div id="extensions"></div>
|
|
</body>
|
|
|
|
</html> |