mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
[Settings] Fix HTML settings build (#10307)
This commit is contained in:
33
src/settings/settings-html/dist/bundle.js
vendored
33
src/settings/settings-html/dist/bundle.js
vendored
File diff suppressed because one or more lines are too long
32
src/settings/settings-html/dist/bundle.js.LICENSE.txt
vendored
Normal file
32
src/settings/settings-html/dist/bundle.js.LICENSE.txt
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
/*
|
||||
object-assign
|
||||
(c) Sindre Sorhus
|
||||
@license MIT
|
||||
*/
|
||||
|
||||
/** @license React v0.13.6
|
||||
* scheduler.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v16.8.6
|
||||
* react-dom.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
/** @license React v16.8.6
|
||||
* react.production.min.js
|
||||
*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
63
src/settings/settings-html/dist/layout.css
vendored
Normal file
63
src/settings/settings-html/dist/layout.css
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
.body {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.body .sidebar {
|
||||
order: -1;
|
||||
max-width: 228px;
|
||||
min-width: 228px;
|
||||
flex-basis: 228px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.body .sidebar.collapsed {
|
||||
max-width: 48px;
|
||||
min-width: 48px;
|
||||
flex-basis: 48px;
|
||||
}
|
||||
|
||||
.body .editorzone {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
.body .editorzone .editorhead {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-grow: 1;
|
||||
min-height: 50px;
|
||||
max-height: 50px;
|
||||
border-bottom: 1px solid #f3f2f1;
|
||||
padding-left: 16px;
|
||||
padding-right: 16px;
|
||||
}
|
||||
|
||||
.body .editorzone .editorhead .editortitle {
|
||||
align-self: center;
|
||||
flex-basis: 0;
|
||||
flex-grow: 1;
|
||||
flex-shrink: 1;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.body .editorzone .editorhead .editorheadbuttons {
|
||||
justify-self: right;
|
||||
justify-content: right;
|
||||
align-self: center;
|
||||
}
|
||||
|
||||
.body .editorzone .editorbody {
|
||||
display: flex;
|
||||
position: relative;
|
||||
flex-direction: column;
|
||||
flex-grow: 1;
|
||||
}
|
||||
.SubHeader{
|
||||
font-weight: bold;
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user