1
0
Fork 0

The graph management delete button is now correct red color and hover effect does not change it to green

This commit is contained in:
Michael Hackstein 2014-01-30 16:05:47 +01:00
parent 402d80930b
commit 301b8ac7c2
4 changed files with 20 additions and 9 deletions

View File

@ -9,13 +9,21 @@
font-size: 20px;
color: #8AA050;
margin-top: 2px;
cursor: pointer;
}
.deleteButton {
color: #B30000;
/*color: #B30000;*/
color: #DA4F49;
font-size: 20px;
padding-right: 3px;
top: 3px;
position: relative;
cursor: pointer;
}
.deleteButton:hover {
color: #BE342E;
}
ul.headerButtonList {

View File

@ -33,13 +33,14 @@ table.arangoDataTable.dataTable td {
border-bottom: 1px solid #C2C2C2;
}
.arangoDataTable .odd:hover,
.arangoDataTable .even:hover,
#logContent .odd:hover,
#logContent .even:hover {
table.arangoDataTable tr {
cursor: pointer;
}
table.arangoDataTable.noPointer tr {
cursor: default;
}
.arangoDataTable .key {
margin-top: 4px;
}

View File

@ -91,11 +91,11 @@ textarea, .alert {
}
.btn-danger {
background-color: #DA4F49;
background-color: #DA4F49;
}
.btn-danger:hover {
background-color: #be342e;
background-color: #be342e;
}
.btn-group > .btn + .dropdown-toggle {

View File

@ -30,14 +30,16 @@
<div id="graphManagementDiv" class="thumbnails">
<div id="graphTable_wrapper" class="dataTables_wrapper" role="grid">
<table cellpadding="0" cellspacing="0" border="0" class="display arangoDataTable dataTable" id="graphsTable">
<table cellpadding="0" cellspacing="0" border="0" class="display arangoDataTable dataTable noPointer" id="graphsTable">
<thead>
<tr>
<th>Name</th>
<th>Vertices</th>
<th>Edges</th>
<th>
<a id="addGraphButton" class="pull-right addButton"><span class="arangoicon icon_arangodb_roundplus" title="Add a graph"></span></a>
<a id="addGraphButton" class="pull-right addButton">
<span class="arangoicon icon_arangodb_roundplus" title="Add a graph"></span>
</a>
</th>
</tr>
</thead>