mirror of
https://github.com/OpenBankProject/API-Explorer.git
synced 2026-02-06 10:47:23 +00:00
improve some looks
This commit is contained in:
parent
be942e06ba
commit
2ea9a480a3
@ -57,7 +57,7 @@ Berlin 13359, Germany
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><input class="create-permission" type="submit" value="Create"></td>
|
||||
<td></td><td><input class="create-permission" type="submit" value="Create"></td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
</form>
|
||||
|
||||
@ -39,7 +39,7 @@ See views.js for the javascript which manipulates the DOM for editing
|
||||
|
||||
<div class="lift:surround?with=default;at=content">
|
||||
<div class="views">
|
||||
<div>
|
||||
<div class="action-bar">
|
||||
<button id="view-add">Add new view</button>
|
||||
<div id="add-view-form" class="lift:ViewsOverview.setupAddView">
|
||||
<form class="lift:form.ajax">
|
||||
@ -47,7 +47,6 @@ See views.js for the javascript which manipulates the DOM for editing
|
||||
<input type="submit" value="placeholder">
|
||||
</form>
|
||||
</div>
|
||||
<button id="view-edit-advanced-options">Show advanced options</button>
|
||||
<button id="account-edit-label">Change account label</button>
|
||||
<div id="account-edit-label-form" class="lift:ViewsOverview.setupEditLabel">
|
||||
<form class="lift:form.ajax">
|
||||
@ -55,6 +54,7 @@ See views.js for the javascript which manipulates the DOM for editing
|
||||
<input type="submit" value="placeholder">
|
||||
</form>
|
||||
</div>
|
||||
<button id="view-edit-advanced-options">Hide advanced options</button>
|
||||
</div>
|
||||
<div class="lift:ViewsOverview.getTableContent">
|
||||
<table id="view_table">
|
||||
|
||||
@ -872,8 +872,8 @@ span#accountsMsg
|
||||
|
||||
#feedback .feedback-slider {
|
||||
display:block;
|
||||
width: 20px;
|
||||
height: 100%;
|
||||
width:20px;
|
||||
height:100%;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 15px;
|
||||
background-position: 50%;
|
||||
@ -900,6 +900,7 @@ a.otherAccountLinkForAlias{
|
||||
display: inline-block;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 20px;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
|
||||
@ -921,26 +922,27 @@ td.main-attributes{
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.advanced-option {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.desc_input {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#view-edit-advanced-options {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
#add-view-form, #account-edit-label-form {
|
||||
display: none;
|
||||
}
|
||||
|
||||
td.imageURL {
|
||||
max-width: 200px;
|
||||
}
|
||||
|
||||
td.imageURL span.text {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
div.views .action-bar {
|
||||
padding: 5px 0px 15px 0px;
|
||||
}
|
||||
|
||||
#view-edit-advanced-options {
|
||||
float: right;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#add-view-form, #account-edit-label-form {
|
||||
display: none;
|
||||
}
|
||||
@ -3,13 +3,13 @@ $(document).ready(function(){
|
||||
$('#view-edit-advanced-options').click(function(){
|
||||
var thisButton = $(this)
|
||||
var showButtonText = "Show advanced options"
|
||||
|
||||
|
||||
$('.advanced-option').toggle();
|
||||
|
||||
if(thisButton.text() === showButtonText) {
|
||||
$('.advanced-option').show();
|
||||
thisButton.text("Hide advanced options");
|
||||
} else {
|
||||
$('.advanced-option').hide();
|
||||
thisButton.text(showButtonText);
|
||||
thisButton.text("Hide advanced options");
|
||||
} else {
|
||||
thisButton.text(showButtonText);
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user