diff --git a/public/app/core/components/search/search.html b/public/app/core/components/search/search.html
index 8342f180431..dff9cc6947a 100644
--- a/public/app/core/components/search/search.html
+++ b/public/app/core/components/search/search.html
@@ -70,7 +70,6 @@
{{::item.title}}
-
{{::item.folderTitle}}
diff --git a/public/app/core/routes/routes.ts b/public/app/core/routes/routes.ts
index e6861db4252..24f9101a88f 100644
--- a/public/app/core/routes/routes.ts
+++ b/public/app/core/routes/routes.ts
@@ -174,6 +174,7 @@ function setupAngularRoutes($routeProvider, $locationProvider) {
.when('/login', {
templateUrl: 'public/app/partials/login.html',
controller : 'LoginCtrl',
+ pageClass: 'page-login',
})
.when('/invite/:code', {
templateUrl: 'public/app/partials/signup_invited.html',
diff --git a/public/app/features/templating/partials/editor.html b/public/app/features/templating/partials/editor.html
index 5888af06a62..5a9fe04c625 100644
--- a/public/app/features/templating/partials/editor.html
+++ b/public/app/features/templating/partials/editor.html
@@ -37,36 +37,39 @@
No template variables defined
-
-
- |
-
- ${{variable.name}}
-
- |
-
- {{variable.query}}
- |
+
diff --git a/public/sass/_variables.scss b/public/sass/_variables.scss
index c3345661581..f853c3e4387 100644
--- a/public/sass/_variables.scss
+++ b/public/sass/_variables.scss
@@ -155,7 +155,7 @@ $link-hover-decoration: none !default;
//
// Customizes the `.table` component with basic values, each used across all table variations.
-$table-cell-padding: .75rem !default;
+$table-cell-padding: 4px 10px !default;
$table-sm-cell-padding: .3rem !default;
// Forms
diff --git a/public/sass/components/_filter-table.scss b/public/sass/components/_filter-table.scss
index 3aaaafef84f..23c9a9b5f77 100644
--- a/public/sass/components/_filter-table.scss
+++ b/public/sass/components/_filter-table.scss
@@ -13,47 +13,67 @@
.filter-table {
width: 100%;
- border-collapse: collapse;
-}
+ border-collapse: separate;
-.filter-table tr {
- background-color: $list-item-bg;
- border-bottom: 3px solid $page-bg;
-}
+ tbody {
+ tr:nth-child(odd) {
+ background: $dark-2;
+ }
+ }
-.filter-table th {
- width: auto;
- padding: $table-cell-padding;
- text-align: left;
-}
+ thead {
+ tr {
+ background: linear-gradient(0deg, #3c3f5a, #292f44);
+ }
+ }
-.filter-table td {
- padding: $table-cell-padding;
+ th {
+ width: auto;
+ padding: $table-cell-padding;
+ text-align: left;
+ line-height: 30px;
+ height: 30px;
+ white-space: nowrap;
+ }
+
+ td {
+ padding: $table-cell-padding;
+ line-height: 30px;
+ height: 30px;
+ border-bottom: 1px solid black;
+ white-space: nowrap;
- &.filter-table__switch-cell {
- padding: 0;
- border-right: 3px solid $page-bg;
+ &.filter-table__switch-cell {
+ padding: 0;
+ border-right: 3px solid $page-bg;
+ }
}
-}
-.filter-table .ellipsis {
- display: block;
- width: 100%;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
-}
+ .ellipsis {
+ display: block;
+ width: 100%;
+ white-space: nowrap;
+ overflow: hidden;
+ text-overflow: ellipsis;
+ }
-.filter-table .expanded {
- border-color: $panel-bg;
-}
+ .expanded {
+ border-color: $panel-bg;
+ }
-.filter-table .expanded > td {
- padding-bottom: 0;
-}
+ .expanded > td {
+ padding-bottom: 0;
+ }
+
+ .filter-table__avatar {
+ width: 25px;
+ height: 25px;
+ border-radius: 50%;
+ }
-.filter-table__avatar {
- width: 25px;
- height: 25px;
- border-radius: 50%;
+ &--hover {
+ tbody tr:hover {
+ background: $dark-3;
+ }
+ }
}
diff --git a/public/sass/components/_navbar.scss b/public/sass/components/_navbar.scss
index d42ff41f388..c83aca53669 100644
--- a/public/sass/components/_navbar.scss
+++ b/public/sass/components/_navbar.scss
@@ -6,7 +6,7 @@
padding-left: $side-menu-width;
box-shadow: $navbarShadow;
z-index: 1;
- background-color: $navbarBackground;
+ background: $navbarBackground;
}
.navbar-inner {
diff --git a/public/sass/pages/_login.scss b/public/sass/pages/_login.scss
index 2b3426b45b5..3c54224c4cc 100644
--- a/public/sass/pages/_login.scss
+++ b/public/sass/pages/_login.scss
@@ -8,6 +8,12 @@
padding-top: $spacer * 5; /* BAD HACK - experiement to see how it looks */
}
+.page-login {
+ .sidemenu {
+ display: none;
+ }
+}
+
.login-form {
display: inline-block;
max-width: 24rem;