mirror of https://gitee.com/bigwinds/arangodb
added class for activated buttons, added to collections view
This commit is contained in:
parent
7b31ea6f43
commit
3f1f4d7344
|
@ -80,6 +80,7 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
toggleView: function() {
|
toggleView: function() {
|
||||||
|
$('#collectionsToggle').toggleClass('activated');
|
||||||
$('#collectionsDropdown2').slideToggle(200);
|
$('#collectionsDropdown2').slideToggle(200);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -128,6 +128,15 @@ a.headerButton {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&.activated {
|
||||||
|
background-color: $c_positive_hover;
|
||||||
|
color: $c_white;
|
||||||
|
&:hover {
|
||||||
|
background-color: $c_white;
|
||||||
|
color: $c_positive_hover;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
/* Graph Viewer */
|
/* Graph Viewer */
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,7 @@ ul.tileList:after, div.resizecontainer:after, #distributionChartDiv:after, .line
|
||||||
height: 0px;
|
height: 0px;
|
||||||
visibility: hidden; }
|
visibility: hidden; }
|
||||||
|
|
||||||
.addButton, .deleteButton, a.headerButton, div.toolbox > div.gv_action_button, li.tile a svg, li.bigtile a svg, li.tile div.iconSet span, li.bigtile div.iconSet span, .contentDiv .icon, div.headerDropdown.headerDropdown input[type=checkbox].css-checkbox + label.css-label, .contentTables tr.contentRowInactive a {
|
.addButton, .deleteButton, a.headerButton, div.toolbox > div.gv_action_button, .clusterDownBtn button, .clusterDownBtn button.green, li.tile a svg, li.bigtile a svg, li.tile div.iconSet span, li.bigtile div.iconSet span, .contentDiv .icon, div.headerDropdown.headerDropdown input[type=checkbox].css-checkbox + label.css-label, .contentTables tr.contentRowInactive a {
|
||||||
cursor: pointer; }
|
cursor: pointer; }
|
||||||
|
|
||||||
nav.navbar, footer.footer {
|
nav.navbar, footer.footer {
|
||||||
|
@ -308,6 +308,12 @@ a.headerButton {
|
||||||
a.headerButton .icon_arangodb_arrowleft,
|
a.headerButton .icon_arangodb_arrowleft,
|
||||||
a.headerButton .icon_arangodb_arrowright {
|
a.headerButton .icon_arangodb_arrowright {
|
||||||
font-weight: bold; }
|
font-weight: bold; }
|
||||||
|
a.headerButton.activated {
|
||||||
|
background-color: #788f3d;
|
||||||
|
color: white; }
|
||||||
|
a.headerButton.activated:hover {
|
||||||
|
background-color: white;
|
||||||
|
color: #788f3d; }
|
||||||
|
|
||||||
/* Graph Viewer */
|
/* Graph Viewer */
|
||||||
div.toolbox > div.gv_action_button {
|
div.toolbox > div.gv_action_button {
|
||||||
|
@ -483,8 +489,7 @@ button.btn-server, .clusterDownBtn button.btn-server.green {
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
width: 250px;
|
width: 250px;
|
||||||
text-align: center;
|
text-align: center; }
|
||||||
cursor: auto; }
|
|
||||||
.clusterDownBtn button:hover {
|
.clusterDownBtn button:hover {
|
||||||
color: #4a6c30;
|
color: #4a6c30;
|
||||||
background-color: #e8e8e8;
|
background-color: #e8e8e8;
|
||||||
|
|
Loading…
Reference in New Issue