blob: be7e28a311c80813244e8dc6cd2ec9622d7e6193 [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.
*/
@import "_variables.scss";
$menu-z-index: 98888;
.transparent {
opacity: 0;
}
.viewport-sized {
display: block;
position: fixed;
z-index: $menu-z-index;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: aqua;
}
.dropdown-menu {
display: block;
z-index: $menu-z-index + 1;
font-size: .9em;
padding: 0 0 .5rem 0;
.card-header {
padding: .3rem .6rem .2rem .6rem;
margin-bottom: .5rem;
background-color: $gray;
color: $black;
font-size: .8rem;
}
.dropdown-item {
border: none !important;
cursor: pointer;
}
.dropdown-item:hover {
background-color: $abbey !important;
}
.dropdown-divider {
border-top: 1px solid #4d4d4d;
}
}