| /* |
| * 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. |
| */ |
| |
| .view { |
| } |
| |
| .view .ng-enter { |
| overflow-y: auto; |
| } |
| |
| .view .ng-leave { |
| opacity: 0; |
| -webkit-transition: opacity .2s linear; |
| transition: opacity 0.2s linear; |
| } |
| |
| .ng-hide-add { |
| transform: rotateZ(0); |
| transform-origin: right; |
| transition: all 0.2s ease-in-out; |
| } |
| |
| .ng-hide-add.ng-hide-add-active { |
| transform: rotateZ(-135deg); |
| } |
| |
| .ng-hide-remove { |
| transform: rotateY(90deg); |
| transform-origin: left; |
| transition: all 0.2s ease; |
| } |
| |
| .ng-hide-remove.ng-hide-remove-active { |
| transform: rotateY(0); |
| } |