blob: d19a74dfc9d461728ffb856e585fbd834262d13b [file] [log] [blame]
/*
* Copyright 2017-present Open Networking Foundation
* Licensed 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.
*/
@import '../../../styles/animations.scss';
xos-table {
display: block;
tr.ng-move,
tr.ng-enter,
tr.ng-leave {
transition:all linear 0.5s;
}
tr.ng-leave.ng-leave-active,
tr.ng-move,
tr.ng-enter {
opacity:0;
animation: 0.5s slideOutRight ease-in-out;
}
tr.ng-leave,
tr.ng-move.ng-move-active,
tr.ng-enter.ng-enter-active {
opacity:1;
animation: 0.5s slideInRight ease-in-out;
}
td dl {
margin-bottom: 0;
dt {
width: auto !important;
margin-right: 10px;
}
dt:after {
/*display: block;*/
content: ':';
}
dd {
margin-left: 0 !important;
}
}
}