diff --git a/src/components/ContainerSettingsGeneral.react.js b/src/components/ContainerSettingsGeneral.react.js index 889e23e042..70cfa87815 100644 --- a/src/components/ContainerSettingsGeneral.react.js +++ b/src/components/ContainerSettingsGeneral.react.js @@ -72,7 +72,7 @@ var ContainerSettingsGeneral = React.createClass({ _this.setState({ copiedId: false }); - }, 3000); + }, 5000); }, handleSaveContainerName: function () { @@ -189,7 +189,7 @@ var ContainerSettingsGeneral = React.createClass({ if (this.state.copiedId) { clipboardStatus = ( -

Copied to Clipboard

+

Copied to Clipboard

); } diff --git a/styles/container-settings.less b/styles/container-settings.less index 8a8153c0b4..9ebedeb440 100644 --- a/styles/container-settings.less +++ b/styles/container-settings.less @@ -83,6 +83,15 @@ .disabled { border-bottom: none; } + .fadeOut { + animation: fade-out 5s ease-in-out forwards; + } + @keyframes fade-out { + 0% { opacity: 0; } + 10% { opacity: 1; } + 85% { opacity: 1; } + 100% { opacity: 0; } + } p { font-weight: 300; margin-top: 5px;