mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 16:49:48 +01:00
145 lines
2.9 KiB
CSS
145 lines
2.9 KiB
CSS
/*
|
|
Copyright (c) 2016 VMware, Inc. All Rights Reserved.
|
|
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.
|
|
*/
|
|
.navbar-custom {
|
|
background-image: none;
|
|
background-color: #057ac9;
|
|
height: 66px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
nav .container {
|
|
margin-top: 15px;
|
|
}
|
|
|
|
nav .container-custom {
|
|
min-width: 1024px;
|
|
}
|
|
|
|
.navbar-custom .navbar-nav > li > a,
|
|
.navbar-custom .navbar-nav > li > a:hover,
|
|
.navbar-custom .navbar-nav > li > a:focus,
|
|
.navbar-custom .navbar-nav > li > a:active {
|
|
color: white; /*Change active text color here*/
|
|
}
|
|
|
|
.navbar-brand > img {
|
|
margin-top: -30px;
|
|
}
|
|
|
|
.navbar-form {
|
|
margin-top: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
.search-icon {
|
|
background: url("/static/resources/img/magnitude-glass.jpg") no-repeat 97% 6px;
|
|
background-size: 1.5em;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
.nav-custom li {
|
|
float: left;
|
|
padding: 10px 0 0 0;
|
|
margin-right: 12px;
|
|
list-style: none;
|
|
display: inline-block;
|
|
}
|
|
|
|
.nav-custom li a {
|
|
font-size: 14px;
|
|
color: #FFFFFF;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.nav-custom .active {
|
|
border-bottom: 3px solid #EFEFEF;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.dropdown {
|
|
float: left;
|
|
}
|
|
|
|
.dropdown .btn-link:hover,
|
|
.dropdown .btn-link:visited,
|
|
.dropdown .btn-link:link {
|
|
display:inline-block;
|
|
text-decoration: none;
|
|
color: #FFFFFF;
|
|
}
|
|
|
|
.dropdown-submenu {
|
|
position: relative;
|
|
}
|
|
|
|
.dropdown-submenu>.dropdown-menu {
|
|
top: 0;
|
|
left: 100%;
|
|
margin-top: -6px;
|
|
margin-left: -1px;
|
|
-webkit-border-radius: 0 6px 6px 6px;
|
|
-moz-border-radius: 0 6px 6px;
|
|
border-radius: 0 6px 6px 6px;
|
|
}
|
|
|
|
.dropdown-submenu:hover>.dropdown-menu {
|
|
display: block;
|
|
}
|
|
|
|
.dropdown-submenu>a:after {
|
|
display: block;
|
|
content: " ";
|
|
float: right;
|
|
width: 0;
|
|
height: 0;
|
|
border-color: transparent;
|
|
border-style: solid;
|
|
border-width: 5px 0 5px 5px;
|
|
border-left-color: #ccc;
|
|
margin-top: 5px;
|
|
margin-right: -10px;
|
|
}
|
|
|
|
.dropdown-submenu:hover>a:after {
|
|
border-left-color: #fff;
|
|
}
|
|
|
|
.dropdown-submenu.pull-left {
|
|
float: none;
|
|
}
|
|
|
|
.dropdown-submenu.pull-left>.dropdown-menu {
|
|
left: -100%;
|
|
margin-left: 10px;
|
|
-webkit-border-radius: 6px 0 6px 6px;
|
|
-moz-border-radius: 6px 0 6px 6px;
|
|
border-radius: 6px 0 6px 6px;
|
|
}
|
|
|
|
.loading-progress {
|
|
display: inline-block;
|
|
position: relative;
|
|
background-image: url('/static/resources/img/loading.gif');
|
|
background-position: center;
|
|
background-size: 107px;
|
|
width: 1em;
|
|
height: 1.2em;
|
|
margin-bottom: 2px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
a:hover, a:visited, a:link {
|
|
text-decoration: none;
|
|
} |