Skip to content

Commit

Permalink
layout
Browse files Browse the repository at this point in the history
  • Loading branch information
rsoika committed Jun 5, 2017
1 parent 7df271f commit d174db9
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 21 deletions.
12 changes: 4 additions & 8 deletions src/main/webapp/css/imixs-layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -65,16 +65,12 @@ legend, th {color: #888;}
/** form elements */
button, input[type="button"], input[type="submit"], .button, a.button { padding: 0.35em 0.75em;cursor: pointer; text-align: center; font-weight: 700;-webkit-appearance: button;*overflow: visible;}
button[disabled], html input[disabled] { cursor: default;}
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0;}
input[type="search"] { -webkit-appearance: textfield;-moz-box-sizing: content-box;-webkit-box-sizing: content-box;
box-sizing: content-box;}
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0;margin-right: .5em;}
input[type="search"] { -webkit-appearance: textfield;-moz-box-sizing: content-box;-webkit-box-sizing: content-box; box-sizing: content-box;}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none;}
button::-moz-focus-inner, input::-moz-focus-inner { border: 0;padding: 0;}
textarea { overflow: auto;vertical-align: top;}
select {}

/**Stylings for form elements*/
input[type="checkbox"], input[type="radio"] {margin-right: .5em;}
textarea {overflow: auto;vertical-align: top;}
select {background-color: transparent;padding: 0.4em 0.15em;}
fieldset {border: 1px solid #ddd; margin-bottom: 1em; padding: 0.35em 0.625em 0.75em;}

/*** Default DL Definitonen ****/
Expand Down
24 changes: 11 additions & 13 deletions src/main/webapp/view_restservice.html
Original file line number Diff line number Diff line change
@@ -1,32 +1,30 @@
<div class="row">
<h1>Rest Service</h1>
<div data-ben-controller="restServiceController"
class="imixs-form-section">
<dl>
class="row nested">
<dl class="col-8">
<dt>URL:</dt>
<dd>
<input type="text" placeholder="Enter Rest Service Base Address"
data-ben-model="baseURL" autocomplete="on" /> <br /> <label>Connect
to Imixs-Workflow version:</label> <select style="width: 100px;"
data-ben-model="baseURL" autocomplete="on" />
</dd>
</dl>
<dl class="col-4">
<dt>Imixs-Workflow version:</dt>
<dd>
<select style=""
data-ben-model="apiVersion" id="api_version">
<option value="4.0">4.0</option>
<option value="3.8">3.8</option>
<option value="3.7">&lt; 3.8</option>
</select>

</dd>



</dl>
</div>


<input type="button" value="Connect"
<input type="button" value="Connect"
onclick="adminclient.restServiceController.connect()" class="btn" />


</div>

<!-- Status message -->
<div id="imixs-status" data-ben-controller="restServiceController">
<div class="ui-state-highlight ui-corner-all">
Expand Down

0 comments on commit d174db9

Please sign in to comment.