1
0
Fork 0

Starting design of applicationDetailView

This commit is contained in:
Lucas Dohmen 2014-12-12 21:30:59 +01:00 committed by Michael Hackstein
parent d0000ec0cb
commit 04ad61967b
5 changed files with 100 additions and 21 deletions

View File

@ -1,12 +1,12 @@
<script id="applicationDetailView.ejs" type="text/template"> <script id="applicationDetailView.ejs" type="text/template">
<div class="applicationDetailView">
<section> <section>
<div class='applicationDetailView'> <div class="header_left">
<div class='header_left'>
<img src="foxxes/thumbnail/<%=attributes.app %>" class="icon" alt="Icon for App"> <img src="foxxes/thumbnail/<%=attributes.app %>" class="icon" alt="Icon for App">
<input type="button" value="Open"> <input type="button" value="Open">
<input type="button" value="Delete"> <input type="button" value="Delete">
</div> </div>
<div class='header_right'> <div class="header_right">
<h3> <h3>
<%= attributes.name %> <%= attributes.name %>
<span class="license"><%= attributes.license %></span> <span class="license"><%= attributes.license %></span>
@ -15,8 +15,7 @@
<p class="description"><%= attributes.description %></p> <p class="description"><%= attributes.description %></p>
</div> </div>
<div class="swagger"> <div class="swagger">
<iframe src="http://localhost:8529/_db/_system/_admin/aardvark/standalone.html#application/documentation/<%= attributes._key %>" width="800" height="600" name="Documentation"></iframe> <iframe src="http://localhost:8529/_db/_system/_admin/aardvark/standalone.html#application/documentation/<%= attributes._key %>" name="Documentation"></iframe>
</div>
</div> </div>
</section> </section>
<aside> <aside>
@ -33,4 +32,5 @@
</dd> </dd>
</dl> </dl>
</aside> </aside>
</div>
</script> </script>

View File

@ -0,0 +1,42 @@
.applicationDetailView {
section {
float: left;
width: 900px;
.header_left {
float: left;
width: 170px;
text-align: center;
}
.header_right {
float: left;
clear: right;
.license, .version {
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
border: 1px solid #AAA;
color: #AAA;
padding: 0px 8px;
font-size: 0.6em;
position: relative;
top: -2px;
}
}
.swagger {
iframe {
width: 100%;
height: 600px;
}
}
}
aside {
float: left;
clear: right;
width: 200px;
}
}

View File

@ -5903,6 +5903,34 @@ input.gv-radio-button {
margin-left: 10px; margin-left: 10px;
margin-top: 7px; } margin-top: 7px; }
.applicationDetailView section {
float: left;
width: 900px; }
.applicationDetailView section .header_left {
float: left;
width: 170px;
text-align: center; }
.applicationDetailView section .header_right {
float: left;
clear: right; }
.applicationDetailView section .header_right .license, .applicationDetailView section .header_right .version {
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
border: 1px solid #AAA;
color: #AAA;
padding: 0px 8px;
font-size: 0.6em;
position: relative;
top: -2px; }
.applicationDetailView section .swagger iframe {
width: 100%;
height: 600px; }
.applicationDetailView aside {
float: left;
clear: right;
width: 200px; }
.hotkeysList .hotkeysLabel { .hotkeysList .hotkeysLabel {
clear: both; clear: both;
color: #000; color: #000;

File diff suppressed because one or more lines are too long

View File

@ -65,6 +65,8 @@
@import 'documentView'; @import 'documentView';
// progress view // progress view
@import 'progressView'; @import 'progressView';
// application detail view
@import 'applicationDetailView';
// screen hotkeys // screen hotkeys
@import 'hotkeys'; @import 'hotkeys';