diff --git a/public/app/features/datasources/partials/http_settings.html b/public/app/features/datasources/partials/http_settings.html index 8035fa45527..ffbba17865e 100644 --- a/public/app/features/datasources/partials/http_settings.html +++ b/public/app/features/datasources/partials/http_settings.html @@ -8,7 +8,7 @@
- + Access Direct = url is used directly from browser, Proxy = Grafana backend will proxy the request diff --git a/public/app/features/profile/partials/profile.html b/public/app/features/profile/partials/profile.html index 9ce7589a864..6d50a7eff4b 100644 --- a/public/app/features/profile/partials/profile.html +++ b/public/app/features/profile/partials/profile.html @@ -10,25 +10,19 @@

Preferences

- Name - + Name +
-
-
- Email - + Email +
-
-
- Username - + Username +
-
-
- UI Theme + UI Theme
diff --git a/public/sass/components/_gf-form.scss b/public/sass/components/_gf-form.scss index e5c9680124f..ec67c6011c1 100644 --- a/public/sass/components/_gf-form.scss +++ b/public/sass/components/_gf-form.scss @@ -67,6 +67,7 @@ $gf-form-margin: 4px; width: 100%; margin-right: $gf-form-margin; } + &.gf-size-auto { width: auto; } } input[type=checkbox].gf-form-checkbox { @@ -80,6 +81,7 @@ select.gf-form-input { display: block; width: 100%; margin-right: $gf-form-margin; + &.gf-size-auto { width: auto; } } @each $size, $value in $form-sizes { @@ -90,7 +92,6 @@ select.gf-form-input { } } -.gf-size-auto { width: auto; } .gf-size-max { width: 100%; } - +.gf-size-auto { width: auto; }