blob: 4918f2675559a4a8b0d6d484e27d158695382b21 [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.
*
* CSS for DesktopUniversalPopup.
* Author: macpherson@google.com (Luke Macpherson)
*/
.popup {
position: absolute;
z-index: 1000; /* Make popup appear on top of other panels */
background-color: white;
}
@eval fadeInTime INSTANCE.FADE_IN_MS;
.fadeIn {
\-webkit-transition: opacity fadeInTime ease-in;
\-moz-transition: opacity fadeInTime ease-in;
transition: opacity fadeInTime ease-in;
}
@eval fadeOutTime INSTANCE.FADE_OUT_MS;
.fadeOut {
\-webkit-transition: opacity fadeOutTime ease-out;
\-moz-transition: opacity fadeOutTime ease-out;
transition: opacity fadeOutTime ease-out;
}
.mask {
position: absolute;
top: 0px;
right: 0px;
bottom: 0px;
left: -12px;
background-color: black;
opacity: 0.6;
filter: "alpha(opacity=40%)";
z-index: 3;
}