blob: eb7610c38565e60eba9c728d9a8217a06c99af1a [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
brooklyn-status-icon {
.status-stopping {
transform: rotate(-90deg);
circle {
fill: none;
stroke: @brand-warning;
stroke-width: @status-stroke-width;
animation: stopping ease 2s infinite;
}
circle.background {
fill: none;
stroke: @circleBackgroundColor;
animation: stoppingbackground linear 2s infinite;
}
}
@keyframes stopping {
0% {
stroke-dasharray: 156 360;
stroke-dashoffset: 0;
}
100% {
stroke-dasharray: 1 360;
stroke-dashoffset: -77;
}
}
@keyframes stoppingbackground {
0% {
stroke: @circleBackgroundColor;
}
90% {
stroke: @circleBackgroundColor;
}
100% {
stroke: @brand-warning;
}
}
}
brooklyn-status.status-sm,
brooklyn-status-icon.status-sm {
.status-stopping {
circle {
stroke-width: @status-stroke-width-sm;
}
}
}
brooklyn-status-text .status-stopping {
}