diff --git a/public/app/features/dashboard/partials/settings.html b/public/app/features/dashboard/partials/settings.html index 0e9221845ad..984390227f8 100644 --- a/public/app/features/dashboard/partials/settings.html +++ b/public/app/features/dashboard/partials/settings.html @@ -16,60 +16,40 @@ -
+
-
-
-
Dashboard info
-
-
    -
  • - Title -
  • -
  • - -
  • -
  • - Tags - Press enter to a add tag -
  • -
  • - - -
  • -
-
-
-
-
    -
  • - Timezone -
  • -
  • - -
  • -
-
+ +
Dashboard Detail
+
+
+ + +
+
+ + + +
+ +
+ +
+
-
-
-
Toggles
-
-
    -
  • - -
  • -
  • - -
  • -
  • - -
  • -
-
+
On/Off Toggles
+
+
+
+ +
+
+ +
+
+
@@ -116,68 +96,68 @@
-
-
-
Dashboard info
-
-
-
    -
  • - Last updated at: -
  • -
  • - {{formatDate(dashboardMeta.updated)}} -
  • -
-
-
-
-
    -
  • - Last updated by: -
  • -
  • - {{dashboardMeta.updatedBy}} -
  • -
-
-
-
-
    -
  • - Created at: -
  • -
  • - {{formatDate(dashboardMeta.created)}} -
  • -
-
-
-
-
    -
  • - Created by: -
  • -
  • - {{dashboardMeta.createdBy}} -
  • -
-
-
-
-
    -
  • - Current version: -
  • -
  • - {{dashboardMeta.version}} -
  • -
-
-
-
-
-
+
+
+
Dashboard info
+
+
+
    +
  • + Last updated at: +
  • +
  • + {{formatDate(dashboardMeta.updated)}} +
  • +
+
+
+
+
    +
  • + Last updated by: +
  • +
  • + {{dashboardMeta.updatedBy}} +
  • +
+
+
+
+
    +
  • + Created at: +
  • +
  • + {{formatDate(dashboardMeta.created)}} +
  • +
+
+
+
+
    +
  • + Created by: +
  • +
  • + {{dashboardMeta.createdBy}} +
  • +
+
+
+
+
    +
  • + Current version: +
  • +
  • + {{dashboardMeta.version}} +
  • +
+
+
+
+
+
diff --git a/public/sass/components/_tabbed_view.scss b/public/sass/components/_tabbed_view.scss index bc503fe3e80..bcfab098a13 100644 --- a/public/sass/components/_tabbed_view.scss +++ b/public/sass/components/_tabbed_view.scss @@ -3,7 +3,7 @@ background-image: linear-gradient(60deg, transparent 70%, darken($page-bg, 4%) 98%); margin: -$dashboard-padding; margin-bottom: $spacer*2; - padding: $spacer*2; + padding: $spacer*3; } .tabbed-view-header { @@ -39,7 +39,11 @@ } .tabbed-view-body { - padding: 20px; - min-height: 150px; + padding: $spacer*2; + min-height: 250px; } +.section-heading { + font-size: 1.1rem; + margin-bottom: 0.6rem; +} diff --git a/public/sass/components/_tabs.scss b/public/sass/components/_tabs.scss index 254a874968b..6ffad0a0a47 100644 --- a/public/sass/components/_tabs.scss +++ b/public/sass/components/_tabs.scss @@ -44,15 +44,18 @@ } .gf-tabs-link { - padding: ($spacer * 0.75) $spacer; + padding: 0.80rem 1rem 0.60rem 1rem; margin-right: $spacer/2; line-height: $line-height-base; border: 1px solid transparent; - @include border-radius(4px 4px 0 0); + position: relative; + top: 3px; + + @include border-radius(2px 2px 0 0); &:hover, &:focus { - border-color: $divider-border-color; + border-color: #F9952B; color: $link-color; } @@ -60,11 +63,9 @@ &.active:hover, &.active:focus { @include border-radius(3px); - border: 1px solid $divider-border-color; + border: 1px solid #F9952B; background-color: transparent; border-bottom: 1px solid $panel-bg; color: $link-color; - position: relative; - top: 1px; } }