mirror of
https://github.com/Facepunch/sbox-public.git
synced 2026-04-18 05:17:53 -04:00
This commit imports the C# engine code and game files, excluding C++ source code. [Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
42 lines
543 B
SCSS
42 lines
543 B
SCSS
|
|
ControlSheetRow
|
|
{
|
|
flex-direction: row;
|
|
flex-shrink: 0;
|
|
max-height: 32px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
ControlSheetRow > .left
|
|
{
|
|
width: 150px;
|
|
flex-shrink: 0;
|
|
flex-grow: 0;
|
|
padding: 6px;
|
|
}
|
|
|
|
ControlSheetRow > .right
|
|
{
|
|
flex-grow: 1;
|
|
}
|
|
|
|
ControlSheetRow > .left > .title
|
|
{
|
|
width: 150px;
|
|
flex-shrink: 0;
|
|
flex-grow: 0;
|
|
font-size: 13px;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
ControlSheetRow > .right > textentry,
|
|
ControlSheetRow > .right numberentry
|
|
{
|
|
background-color: #000a;
|
|
flex-grow: 1;
|
|
padding: 4px 8px;
|
|
border-radius: 2px;
|
|
}
|
|
|