diff --git a/assets/styles/layouts/_ui-messages.scss b/assets/styles/layouts/_ui-messages.scss index bc5af7c20..d10bb8de5 100644 --- a/assets/styles/layouts/_ui-messages.scss +++ b/assets/styles/layouts/_ui-messages.scss @@ -1,46 +1,44 @@ .article--content { .ui-message { - max-width: 350px; + display: flex; + align-items: center; + width: 375px; margin: 1rem 0 2rem; - padding: .85rem 2.75rem; - font-size: .85rem; + padding: .85rem 0; + font-size: .9rem; border-radius: 5px; - position: relative; color: $g20-white; - &:before { + .icon, .close { + width: 13%; + text-align: center; font-family: 'icomoon'; - display: block; - position: absolute; - left: 14px; - top: 17px; font-size: 1.1rem; } - &:after { + .close:after { content: "\e932"; - font-family: 'icomoon'; - display: block; - position: absolute; - right: 14px; - top: 18px; - font-size: 1.1rem; opacity: .25; } + .text { + width: 74%; + font-weight: 600; + } + &.green { background: linear-gradient(to right, #4dd7a1, #21adf5); - &:before { content: "\e922"; } + .icon:before { content: "\e922"; } } &.blue { background: linear-gradient(to right, #22adf6, #4591ed); - &:before { content: "\e935"; } + .icon:before { content: "\e935"; } } &.red { background: linear-gradient(to right, #e8695c, #7669e8); - &:before { content: "\e920"; } + .icon:before { content: "\e920"; } } diff --git a/content/v2.0/collect-data/use-telegraf/auto-config/update-telegraf-config.md b/content/v2.0/collect-data/use-telegraf/auto-config/update-telegraf-config.md index 659d28a24..5a9a4451f 100644 --- a/content/v2.0/collect-data/use-telegraf/auto-config/update-telegraf-config.md +++ b/content/v2.0/collect-data/use-telegraf/auto-config/update-telegraf-config.md @@ -12,11 +12,9 @@ The InfluxDB user interface (UI) allows you to update the **name** or **descript of a Telegraf configuration created in the UI. {{% note %}} -You cannot modify the actual Telegraf settings associated with a configuration. -To modify Telegraf settings, [create a new Telegraf configuration](/v2.0/collect-data/use-telegraf/auto-config). +You cannot modify Telegraf settings in existing Telegraf configurations through the UI. {{% /note %}} - 1. Click **Organizations** in the left navigation menu. {{< nav-icon "orgs" >}} diff --git a/layouts/shortcodes/ui-message.html b/layouts/shortcodes/ui-message.html index 8096b6e22..175a44eef 100644 --- a/layouts/shortcodes/ui-message.html +++ b/layouts/shortcodes/ui-message.html @@ -2,5 +2,7 @@ {{ $color := .Get "color" | default "green" }}
- {{ $text }} +
+
{{ $text }}
+