mirror of https://gitee.com/bigwinds/arangodb
Added a divider in the databse dropdown menu and changed color of
corneredBadge to be consistent with the overall design
This commit is contained in:
parent
e18a38edaa
commit
65f6bf2a3f
|
@ -18,11 +18,12 @@ if (list.length > 1) {
|
|||
<%
|
||||
});
|
||||
%>
|
||||
<li class="divider"></li>
|
||||
<%
|
||||
}
|
||||
%>
|
||||
<% if (current === "_system") { %>
|
||||
<li class="dropdown-header">Manager</li>
|
||||
<li class="dropdown-header">Manager</li>
|
||||
<li id="databaseNavi" class="dropdown-item">
|
||||
<a id="databases" class="tab" href="#databases">Manage DBs</a>
|
||||
</li>
|
||||
|
|
|
@ -149,6 +149,7 @@ $iconsize: 50px;
|
|||
width: 17px;
|
||||
}
|
||||
}
|
||||
color: #fff;
|
||||
height: 0;
|
||||
padding-left: 4px;
|
||||
padding-right: 9px;
|
||||
|
|
|
@ -21,31 +21,37 @@ textarea,
|
|||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: local("Open Sans Light"), local("OpenSans-Light"), url("../fonts/opensans/OpenSansLight.woff") format("woff"); }
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: local("Open Sans"), local("OpenSans"), url("../fonts/opensans/OpenSans.woff") format("woff"); }
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: local("Open Sans Bold"), local("OpenSans-Bold"), url("../fonts/opensans/OpenSansBold.woff") format("woff"); }
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 300;
|
||||
src: local("Open Sans Light Italic"), local("OpenSansLight-Italic"), url("../fonts/opensans/OpenSansLightItalic.woff") format("woff"); }
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
src: local("Open Sans Italic"), local("OpenSans-Italic"), url("../fonts/opensans/OpenSansItalic.woff") format("woff"); }
|
||||
|
||||
@font-face {
|
||||
font-family: 'Open Sans';
|
||||
font-style: italic;
|
||||
font-weight: 700;
|
||||
src: local("Open Sans Bold Italic"), local("OpenSans-BoldItalic"), url("../fonts/opensans/OpenSansBoldItalic.woff") format("woff"); }
|
||||
|
||||
/*!
|
||||
* Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
|
||||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
||||
|
@ -58,6 +64,7 @@ textarea,
|
|||
src: url("../fonts/fontawesome/fontawesome-webfont.eot?#iefix&v=4.0.3") format("embedded-opentype"), url("../fonts/fontawesome/fontawesome-webfont.woff?v=4.0.3") format("woff"), url("../fonts/fontawesome/fontawesome-webfont.ttf?v=4.0.3") format("truetype"), url("../fonts/fontawesome/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular") format("svg");
|
||||
font-weight: normal;
|
||||
font-style: normal; }
|
||||
|
||||
.fa {
|
||||
display: inline-block;
|
||||
font-family: FontAwesome;
|
||||
|
@ -133,30 +140,35 @@ textarea,
|
|||
|
||||
100% {
|
||||
-moz-transform: rotate(359deg); } }
|
||||
|
||||
@-webkit-keyframes spin {
|
||||
0% {
|
||||
-webkit-transform: rotate(0deg); }
|
||||
|
||||
100% {
|
||||
-webkit-transform: rotate(359deg); } }
|
||||
|
||||
@-o-keyframes spin {
|
||||
0% {
|
||||
-o-transform: rotate(0deg); }
|
||||
|
||||
100% {
|
||||
-o-transform: rotate(359deg); } }
|
||||
|
||||
@-ms-keyframes spin {
|
||||
0% {
|
||||
-ms-transform: rotate(0deg); }
|
||||
|
||||
100% {
|
||||
-ms-transform: rotate(359deg); } }
|
||||
|
||||
@keyframes spin {
|
||||
0% {
|
||||
transform: rotate(0deg); }
|
||||
|
||||
100% {
|
||||
transform: rotate(359deg); } }
|
||||
|
||||
.fa-rotate-90 {
|
||||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=$rotation);
|
||||
-webkit-transform: rotate(90deg);
|
||||
|
@ -1444,7 +1456,7 @@ nav.navbar, footer.footer {
|
|||
background-color: #f87c0f; }
|
||||
|
||||
.button-inactive {
|
||||
background-color: lightgray; }
|
||||
background-color: lightgrey; }
|
||||
.button-inactive:hover, .button-inactive:focus {
|
||||
background-color: gray; }
|
||||
|
||||
|
@ -2028,6 +2040,7 @@ div .tile, div .bigtile {
|
|||
border-left: 17px solid transparent;
|
||||
border-bottom-style: solid;
|
||||
border-bottom-width: 17px;
|
||||
color: #fff;
|
||||
height: 0;
|
||||
padding-left: 4px;
|
||||
padding-right: 9px; }
|
||||
|
@ -3233,7 +3246,7 @@ pre.gv-object-view {
|
|||
width: 5%; }
|
||||
|
||||
.user-menu-img {
|
||||
background-color: lightgray;
|
||||
background-color: lightgrey;
|
||||
-moz-border-radius: 3px;
|
||||
-webkit-border-radius: 3px;
|
||||
border-radius: 3px;
|
||||
|
|
Loading…
Reference in New Issue