[Settings] Fix HTML settings build (#10307)

This commit is contained in:
Andrey Nekrasov
2021-03-18 17:14:37 +03:00
committed by GitHub
parent fa5ce634e1
commit 7c28459673
12 changed files with 939 additions and 65 deletions

File diff suppressed because one or more lines are too long

View 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.
*/

View 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