Merge d5f789798ee3a392356f38e78ebb46bdd4d63f11 into 8af821d380ddd6a3368dfa6705ba1e58c72bfba8

This commit is contained in:
persuasive0pest 2024-07-29 19:51:55 +00:00 committed by GitHub
commit 5f2f572c5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 8 additions and 4 deletions

View File

@ -19,7 +19,7 @@
top: 0px; top: 0px;
right: 0px; right: 0px;
bottom: 0px; bottom: 0px;
width: 315px; width: var(--red-ui-sidebar-width);
background: var(--red-ui-primary-background); background: var(--red-ui-primary-background);
box-sizing: border-box; box-sizing: border-box;
z-index: 10; z-index: 10;
@ -43,7 +43,7 @@
#red-ui-sidebar-separator { #red-ui-sidebar-separator {
position: absolute; position: absolute;
top: 5px; top: 5px;
right: 315px; right: var(--red-ui-sidebar-width);
bottom:10px; bottom:10px;
width: 7px; width: 7px;
// z-index: 11; // z-index: 11;

View File

@ -14,4 +14,5 @@
* limitations under the License. * limitations under the License.
**/ **/
$header-height: 48px; $header-height: 48px;
$sidebar-width: 340px;

View File

@ -19,6 +19,9 @@
// Header Height // Header Height
--red-ui-header-height: #{$header-height}; --red-ui-header-height: #{$header-height};
// Sidebar width
--red-ui-sidebar-width: #{$sidebar-width};
// Main body text // Main body text
--red-ui-primary-text-color: #{$primary-text-color}; --red-ui-primary-text-color: #{$primary-text-color};
// UI control label text // UI control label text

View File

@ -20,7 +20,7 @@
top:0px; top:0px;
left:179px; left:179px;
bottom: 0px; bottom: 0px;
right: 322px; right: calc(var(--red-ui-sidebar-width) + 7px);
overflow: hidden; overflow: hidden;
@include component-border; @include component-border;
transition: left 0.1s ease-in-out; transition: left 0.1s ease-in-out;