Tabs CSS Hotfix and hash CSS file contents (#98)

Co-authored-by: Victor Meng <vimeng@microsoft.com>
This commit is contained in:
Steve Faulkner 2020-07-16 20:35:18 -05:00 committed by GitHub
parent e491c1a042
commit ffae9baca2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 6 additions and 5 deletions

View File

@ -1,7 +1,6 @@
name: CI name: CI
on: on:
push: push:
branches: [master]
pull_request: pull_request:
branches: [master] branches: [master]
jobs: jobs:

View File

@ -2349,9 +2349,9 @@ a:link {
text-decoration: none; text-decoration: none;
} }
.tabsContainer { .tabsManagerContainer {
height: 100%; height: 100%;
width: 100%; flex-grow: 1;
overflow: hidden; overflow: hidden;
} }

View File

@ -194,7 +194,7 @@
</form> </form>
</div> </div>
<tabs-manager <tabs-manager
class="tabsContainer" class="tabsManagerContainer"
params="{data: tabsManager}" params="{data: tabsManager}"
data-bind="visible: tabsManager.openedTabs().length > 0" data-bind="visible: tabsManager.openedTabs().length > 0"
></tabs-manager> ></tabs-manager>

View File

@ -111,7 +111,9 @@ module.exports = function(env = {}, argv = {}) {
content: `${gitSha.trim()} ${new Date().toUTCString()}` content: `${gitSha.trim()} ${new Date().toUTCString()}`
}), }),
new CaseSensitivePathsPlugin(), new CaseSensitivePathsPlugin(),
new MiniCssExtractPlugin(), new MiniCssExtractPlugin({
filename: "[name].[contenthash].css"
}),
new HtmlWebpackPlugin({ new HtmlWebpackPlugin({
filename: "explorer.html", filename: "explorer.html",
template: "src/explorer.html", template: "src/explorer.html",