87 lines
1.8 KiB
CSS
87 lines
1.8 KiB
CSS
/*
|
|
* Copyright @ 2015 Atlassian Pty Ltd
|
|
*
|
|
* 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.
|
|
*/
|
|
/*Initialize*/
|
|
ul.popupmenu {
|
|
display:none;
|
|
position: absolute;
|
|
padding:10px;
|
|
margin: 0;
|
|
bottom: 0;
|
|
margin-bottom: 35px;
|
|
padding-bottom: 10px;
|
|
padding-top: 10px;
|
|
right: 10px;
|
|
left: -5px;
|
|
width: 100px;
|
|
background-color: rgba(0,0,0,0.9);
|
|
border: 1px solid rgba(256, 256, 256, 0.2);
|
|
border-radius:8px;
|
|
}
|
|
|
|
ul.popupmenu:after {
|
|
content: url('../images/popupPointer.png');
|
|
display: block;
|
|
position: absolute;
|
|
bottom: -8px;
|
|
left: 11px;
|
|
}
|
|
|
|
ul.popupmenu li {
|
|
list-style-type: none;
|
|
text-align: left;
|
|
}
|
|
|
|
ul.popupmenu li:hover {
|
|
background-color: rgba(256, 256, 256, .2);
|
|
border-radius:6px;
|
|
}
|
|
|
|
/*Link Appearance*/
|
|
ul.popupmenu li a {
|
|
text-decoration: none;
|
|
color: #fff;
|
|
padding: 5px;
|
|
display: inline-block;
|
|
font-size: 9pt;
|
|
}
|
|
|
|
ul.popupmenu li a i.icon-kick {
|
|
font-size: 8pt;
|
|
}
|
|
|
|
ul.popupmenu li a span {
|
|
display: inline-block;
|
|
width: 20px;
|
|
height: 16px;
|
|
text-align: center;
|
|
}
|
|
|
|
span.remotevideomenu:hover ul.popupmenu, ul.popupmenu:hover {
|
|
display:block !important;
|
|
}
|
|
|
|
a.disabled {
|
|
color: gray !important;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.popupmenuPadding {
|
|
height: 35px;
|
|
width: 100px;
|
|
position: absolute;
|
|
bottom: -35;
|
|
left: 0px;
|
|
} |