mast.css 1.89 KB
/*
 * Copyright 2014-present Open Networking Laboratory
 *
 * 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.
 */

/*
 ONOS GUI -- Masthead (layout) -- CSS file
 */

#mast {
    height: 48px;
    padding: 0;
}

#mast a:hover {
    text-decoration: none;
}

html[data-platform='iPad'] #mast {
    padding-top: 16px;
}

#mast .nav-menu-button {
    width: 26px;
    height: 21px;
    margin: 14px 18px 14px 14px;
}

#mast img.logo {
    height: 47px;
    width: 436px;
    margin: 0;
}

#mast-right {
    display: inline-block;
    float: right;
    position: relative;
    top: 0;
    padding-right: 15px;
    line-height: 44px;
}


/*
    MAST HEAD DROPDOWN MENU
*/

#mast .dropdown-parent {
    position: relative;
}

#mast .dropdown-parent i.dropdown-icon {
    display: inline-block;
    height: 7px;
    width: 9px;
    margin-left: 10px;
    background: url('../../../data/img/dropdown-icon.png') no-repeat;
}

#mast .dropdown {
    position: absolute;
    top: 40px;
    right: -8px;
    display: none;
    min-width: 100px;
    line-height: 16px;
    font-size: 12pt;
    z-index: 1000;
}

#mast .dropdown a {
    text-decoration: none;
    font-size: 12px;
    display: block;
    padding: 8px 16px 6px 12px;
}

#mast .dropdown-parent:hover .dropdown {
    display: block;
}

#mast .dropdown-parent:hover i.dropdown-icon {
    background-position-x: -14px
}

html[data-platform='iPad'] #mast .dropdown {
    top: 57px;
}