Skip to content
This repository has been archived by the owner on Mar 13, 2018. It is now read-only.

Commit

Permalink
merge master
Browse files Browse the repository at this point in the history
  • Loading branch information
ebidel committed May 13, 2014
2 parents 19fe98c + 6bf3790 commit a93fb51
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core-doc-viewer.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<context-free-parser url="{{}}" on-data-ready="{{parserDataReady}}"></context-free-parser>
</template>

<core-layout core-flex>
<core-layout core-flex class="core-fit">
<core-doc-toc id="toc" data="{{classes}}" selected="{{selected}}"></core-doc-toc>
<core-doc-page core-flex data="{{data}}"></core-doc-page>
</core-layout>
Expand Down
6 changes: 5 additions & 1 deletion elements/core-doc-page.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
:host {
display: block;
position: relative;
}

#panel {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
}

.main {
Expand Down Expand Up @@ -172,4 +177,3 @@ pre code {
font-size: 1.2em;
}


9 changes: 7 additions & 2 deletions elements/core-doc-toc.css
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
:host {
display: block;
position: relative;
border-right: 1px solid silver;
}

core-header-panel {
height: 100%;
core-header-panel {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
}

core-toolbar {
Expand Down

0 comments on commit a93fb51

Please sign in to comment.