blob: 9a254e9751e0c0be06055480b2f7438543f7756d [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.
*/
.data-dictionary {
height: 60vh;
&__toolbar {
padding: 1em 0;
}
&__types-list {
flex: 1 1 0;
overflow-y: auto;
padding: 1em;
background-color: var(--pf-global--BackgroundColor--200);
}
&__validation-alert {
margin-bottom: 1em;
}
&__overview {
height: 100%;
display: flex;
flex-direction: column;
justify-content: stretch;
&-enter {
opacity: 0;
}
&-enter-active {
opacity: 1;
transition: opacity 230ms;
}
&-exit {
opacity: 1;
}
&-exit-active {
opacity: 0;
transition: opacity 100ms;
}
}
}
.enter-from-above {
&-enter {
transform: translateY(-50px);
opacity: 0;
}
&-enter-active {
transform: translateY(0);
opacity: 1;
transition: all 230ms;
}
&-exit {
transform: translateY(0);
opacity: 1;
}
&-exit-active {
opacity: 0;
transform: translateY(-21px);
transition: all 100ms;
}
}
.enter-from-right {
&-enter {
transform: translateX(100px);
opacity: 0;
}
&-enter-active {
transform: translateX(0);
opacity: 1;
transition: all 230ms;
}
&-exit {
transform: translateX(0);
opacity: 1;
}
&-exit-active {
opacity: 0;
transform: translateX(44px);
transition: all 100ms;
}
}