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; font-size: 20px;
color: #8AA050; color: #8AA050;
margin-top: 2px; margin-top: 2px;
cursor: pointer;
} }
.deleteButton { .deleteButton {
color: #B30000; /*color: #B30000;*/
color: #DA4F49;
font-size: 20px; font-size: 20px;
padding-right: 3px; padding-right: 3px;
top: 3px; top: 3px;
position: relative; position: relative;
cursor: pointer;
}
.deleteButton:hover {
color: #BE342E;
} }
ul.headerButtonList { ul.headerButtonList {

View File

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

View File

@ -30,14 +30,16 @@
<div id="graphManagementDiv" class="thumbnails"> <div id="graphManagementDiv" class="thumbnails">
<div id="graphTable_wrapper" class="dataTables_wrapper" role="grid"> <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> <thead>
<tr> <tr>
<th>Name</th> <th>Name</th>
<th>Vertices</th> <th>Vertices</th>
<th>Edges</th> <th>Edges</th>
<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> </th>
</tr> </tr>
</thead> </thead>