mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
feat(plugins): progress on plugins page
This commit is contained in:
14
public/sass/layout/_lists.scss
Normal file
14
public/sass/layout/_lists.scss
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
.ui-list {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
|
||||
> li {
|
||||
margin-bottom: 0.3125rem;
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -3,21 +3,10 @@
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.dashboard-container {
|
||||
padding: $dashboard-padding;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.main-view {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.page-dashboard {
|
||||
.main-view {
|
||||
background-image: none;
|
||||
}
|
||||
}
|
||||
|
||||
.page-container {
|
||||
background-color: $page-bg;
|
||||
padding: ($spacer * 2) ($spacer * 4);
|
||||
@@ -27,12 +16,29 @@
|
||||
background-image: linear-gradient(60deg, transparent 70%, darken($page-bg, 4%) 98%)
|
||||
}
|
||||
|
||||
.page-header-logo {
|
||||
max-width: 7rem;
|
||||
.page-body {
|
||||
@include media-breakpoint-up(md) {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
}
|
||||
|
||||
.page-content-with-sidebar {
|
||||
width: calc(100% - #{$page-sidebar-width + $page-sidebar-margin}); // sidebar width + margin
|
||||
}
|
||||
|
||||
.page-sidebar {
|
||||
@include media-breakpoint-up(md) {
|
||||
width: $page-sidebar-width;
|
||||
margin-left: $page-sidebar-margin;
|
||||
}
|
||||
}
|
||||
|
||||
.page-header {
|
||||
padding: $spacer 0 $spacer/2 0;
|
||||
margin-bottom: 2rem;
|
||||
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
align-items: flex-end;
|
||||
@@ -40,13 +46,12 @@
|
||||
@include brand-bottom-border();
|
||||
|
||||
h1 {
|
||||
font-style: italic;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
button, a {
|
||||
margin-left: $spacer;
|
||||
}
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.page-heading {
|
||||
@@ -75,3 +80,20 @@
|
||||
}
|
||||
}
|
||||
|
||||
.page-sidebar {
|
||||
color: $text-color-weak;
|
||||
h4 {
|
||||
font-size: $font-size-base;
|
||||
font-weight: $font-weight-semi-bold;
|
||||
color: $text-color-strong;
|
||||
}
|
||||
h5 {
|
||||
font-size: $font-size-base;
|
||||
color: $text-color-weak;
|
||||
font-weight: $font-weight-semi-bold;
|
||||
}
|
||||
}
|
||||
|
||||
.page-sidebar-section {
|
||||
margin-bottom: $spacer*2;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user