Resize sidebar to show "Context Data" by default

This commit is contained in:
persuasive0pest 2024-07-29 15:51:47 -04:00
parent 8af821d380
commit d5f789798e
4 changed files with 8 additions and 4 deletions

View File

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

View File

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

View File

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

View File

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