mirror of https://gitee.com/bigwinds/arangodb
Starting design of applicationDetailView
This commit is contained in:
parent
d0000ec0cb
commit
04ad61967b
|
@ -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>
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
}
|
|
@ -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
|
@ -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';
|
||||||
|
|
Loading…
Reference in New Issue