[ui] Fix style for CKAN 1.7
This commit is contained in:
parent
4474ee3e97
commit
3941b691f4
|
@ -11,6 +11,14 @@ body.index.ViewController #content {
|
||||||
border: 0 !important;
|
border: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body.index.ViewController .content-outer {
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#harvest-sources{
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
#new-harvest-source {
|
#new-harvest-source {
|
||||||
background: transparent url("images/icons/source_new.png") no-repeat 0px 0px;
|
background: transparent url("images/icons/source_new.png") no-repeat 0px 0px;
|
||||||
padding-left: 20px;
|
padding-left: 20px;
|
||||||
|
@ -30,7 +38,6 @@ body.index.ViewController #content {
|
||||||
#show-inactive-sources-content label{
|
#show-inactive-sources-content label{
|
||||||
float: left;
|
float: left;
|
||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
margin-top: -4px;
|
|
||||||
margin-left: 5px;
|
margin-left: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -46,11 +53,6 @@ body.index.ViewController #content {
|
||||||
color: red;
|
color: red;
|
||||||
}
|
}
|
||||||
|
|
||||||
#harvest-sources td{
|
|
||||||
background-color: white !important;
|
|
||||||
border-bottom: 1px solid #E3E3E3;
|
|
||||||
}
|
|
||||||
|
|
||||||
.harvester-title{
|
.harvester-title{
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
<label for="show-inactive-sources"> Show inactive sources</label>
|
<label for="show-inactive-sources"> Show inactive sources</label>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<table id="harvest-sources" class="${'publishers' if c.publisher_auth else ''}" >
|
<table id="harvest-sources" class="table table-bordered table-condensed ${'publishers' if c.publisher_auth else ''}" >
|
||||||
<tr>
|
<tr>
|
||||||
<th class="action">View</th>
|
<th class="action">View</th>
|
||||||
<th class="action">Edit</th>
|
<th class="action">Edit</th>
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
<a href="/harvest">Sources list</a>
|
<a href="/harvest">Sources list</a>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<table id="harvest-source-details">
|
<table id="harvest-source-details" class="table table-bordered table-condensed">
|
||||||
<tr>
|
<tr>
|
||||||
<th>ID</th>
|
<th>ID</th>
|
||||||
<td>${c.source.id}</td>
|
<td>${c.source.id}</td>
|
||||||
|
|
Loading…
Reference in New Issue