mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Removing header part Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Restyling PageLayout Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Restyling .round-black Input Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Adding Tab navigation to Preferences Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Styling Application tab Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Add esc button Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Add media queries Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Introducting Switcher component Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Styling Proxy tab Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Moving start-up switcher to Other tab Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Styling Kubernetes tab Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Styling Extensions tab Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Styling inputs and selects Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Styling helm chart section Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Create a telemetry tab with extensions Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Adding lens Select theme Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Remove Other tab Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fix mainBackground color Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Simplifying Tabs boilerplate Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Replacing button font Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fixing one-column settings layout Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fixing integration tests Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Fixin tests harder Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com> * Showing bottom bar in workspaces Signed-off-by: Alex Andreev <alex.andreev.email@gmail.com>
199 lines
3.6 KiB
SCSS
199 lines
3.6 KiB
SCSS
.PageLayout {
|
|
--width: 75%;
|
|
--nav-width: 180px;
|
|
--nav-column-width: 30vw;
|
|
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
display: grid !important;
|
|
|
|
@include media("<1000px") {
|
|
--width: 85%;
|
|
}
|
|
|
|
&.showNavigation {
|
|
grid-template-columns: var(--nav-column-width) 1fr;
|
|
|
|
> .contentRegion {
|
|
justify-content: flex-start;
|
|
}
|
|
}
|
|
|
|
// covers whole app view area
|
|
&.showOnTop {
|
|
position: fixed !important; // allow to cover ClustersMenu
|
|
z-index: 3;
|
|
left: 0;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
height: unset;
|
|
background-color: var(--settingsBackground);
|
|
}
|
|
|
|
> .sidebarRegion {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
overflow-y: auto;
|
|
background-color: var(--secondaryBackground);
|
|
|
|
.sidebar {
|
|
width: 218px;
|
|
padding: 60px 10px 60px 20px;
|
|
|
|
.Tabs {
|
|
.header {
|
|
padding: 6px 10px;
|
|
font-size: 13px;
|
|
font-weight: 800;
|
|
line-height: 16px;
|
|
text-transform: uppercase;
|
|
|
|
&:first-child {
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
|
|
.Tab {
|
|
padding: 6px 10px;
|
|
margin-bottom: 2px;
|
|
border-radius: 4px;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
font-weight: 500;
|
|
font-size: 15px;
|
|
line-height: 20px;
|
|
cursor: pointer;
|
|
color: var(--textColorSecondary);
|
|
|
|
&::after {
|
|
content: none;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: var(--navHoverBackground);
|
|
color: var(--navHoverColor);
|
|
}
|
|
|
|
&.active {
|
|
background-color: var(--navSelectedBackground);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
> .contentRegion {
|
|
display: flex;
|
|
overflow: auto;
|
|
justify-content: center;
|
|
|
|
> .content {
|
|
width: var(--width);
|
|
padding: 60px 40px 80px;
|
|
|
|
> section {
|
|
&:last-of-type {
|
|
margin-bottom: 80px;
|
|
}
|
|
}
|
|
}
|
|
|
|
> .toolsRegion {
|
|
.fixedTools {
|
|
position: fixed;
|
|
top: 60px;
|
|
|
|
.closeBtn {
|
|
width: 35px;
|
|
height: 35px;
|
|
display: grid;
|
|
place-items: center;
|
|
border: 2px solid var(--textColorDimmed);
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background-color: #72767d4d;
|
|
}
|
|
|
|
&:active {
|
|
transform: translateY(1px);
|
|
}
|
|
|
|
.Icon {
|
|
color: var(--textColorSecondary);
|
|
}
|
|
}
|
|
|
|
.esc {
|
|
text-align: center;
|
|
margin-top: 4px;
|
|
font-weight: 600;
|
|
font-size: 14px;
|
|
color: var(--textColorDimmed);
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
a {
|
|
color: var(--colorInfo);
|
|
}
|
|
|
|
section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
&:not(:first-of-type) {
|
|
margin-top: 40px;
|
|
|
|
&.small {
|
|
margin-top: 20px;
|
|
}
|
|
}
|
|
|
|
h1, h2 {
|
|
color: var(--textColorAccent);
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
font-weight: 600;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.hint {
|
|
margin-top: 8px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.SubTitle {
|
|
margin-top: 0;
|
|
margin-bottom: 8px;
|
|
padding-bottom: 0;
|
|
font-size: 12px;
|
|
line-height: 1;
|
|
}
|
|
|
|
hr {
|
|
margin-top: 40px;
|
|
height: 1px;
|
|
border-top: thin solid var(--hrColor);
|
|
|
|
&.small {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
&:last-child {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|