Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
f5d8e1b6
Commit
f5d8e1b6
authored
Sep 19, 2015
by
Davis King
Browse files
Improved the web page layout. Now the detailed documentation link
appears as a huge and obvious orange button.
parent
cadadf35
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
89 additions
and
36 deletions
+89
-36
docs/docs/dlib.css
docs/docs/dlib.css
+70
-0
docs/docs/stylesheet.xsl
docs/docs/stylesheet.xsl
+19
-36
No files found.
docs/docs/dlib.css
View file @
f5d8e1b6
...
@@ -105,6 +105,76 @@ ul.tree li ul { margin-left:10px; padding:0px; }
...
@@ -105,6 +105,76 @@ ul.tree li ul { margin-left:10px; padding:0px; }
li
#term
{
list-style
:
none
;
}
li
#term
{
list-style
:
none
;
}
div
.include_file_more_details_wrapper
{
margin-top
:
1em
;
margin-bottom
:
5px
;
overflow
:
auto
;
width
:
100%
;
display
:
inline-block
;
}
div
.include_file
{
font-size
:
1.8em
;
font-weight
:
bold
;
font-family
:
monospace
;
float
:
right
;
padding
:
0.4em
;
}
a
.more_details
,
a
.more_details_extension
{
font-size
:
1.6em
;
font-weight
:
bold
;
float
:
left
;
margin
:
5px
;
font
:
200
1.6em
source-sans-pro
,
sans-serif
;
text-align
:
center
;
padding-left
:
1.5em
;
padding-right
:
1.5em
;
-webkit-font-smoothing
:
antialiased
;
background-color
:
#f59820
;
border-color
:
#d47c0a
;
color
:
#fff
;
padding
:
0.2em
1.5em
0.2em
;
-moz-box-shadow
:
2px
2px
9px
#777777
;
-webkit-box-shadow
:
2px
2px
9px
#777777
;
box-shadow
:
1px
1px
5px
#777777
;
border-radius
:
3px
;
-moz-border-radius
:
3px
;
-webkit-border-radius
:
3px
;
transition
:
320ms
;
display
:
inline-block
;
}
a
.more_details
:hover
,
a
.more_details_extension
:hover
{
text-decoration
:
none
;
-moz-box-shadow
:
1px
1px
9px
#77a777
;
-webkit-box-shadow
:
1px
1px
9px
#77a777
;
box-shadow
:
1px
1px
5px
#77a777
;
color
:
#ffffff
;
background-color
:
#d5780a
;
}
a
.more_details_extension
{
margin-top
:
10px
;
padding
:
0.1em
1.0em
0.1em
;
display
:
block
;
font-size
:
1.3em
;
float
:
none
;
width
:
160px
;
}
div
.component
{
div
.component
{
background-color
:
white
;
background-color
:
white
;
border
:
2px
solid
rgb
(
102
,
102
,
102
);
border
:
2px
solid
rgb
(
102
,
102
,
102
);
...
...
docs/docs/stylesheet.xsl
View file @
f5d8e1b6
...
@@ -332,39 +332,28 @@
...
@@ -332,39 +332,28 @@
<BR/>
<BR/>
<xsl:apply-templates
select=
"description"
/>
<xsl:apply-templates
select=
"description"
/>
<xsl:if
test=
"file"
>
<BR/>
<BR/>
<BR/><B><font
style=
'font-size:1.4em'
><tt>
#include
<
<xsl:value-of
select=
"file"
/>
>
</tt></font></B>
</xsl:if>
<xsl:if
test=
"spec_file"
>
<xsl:choose>
<xsl:when
test=
"spec_file/@link = 'true'"
>
<BR/>
<b><a
href=
"{spec_file}.html#{name}"
>
<font
style=
'font-size:1.6em'
>
Detailed Documentation
</font></a></b>
</xsl:when>
<xsl:otherwise>
<BR/>
<b><a
href=
"{spec_file}.html"
>
<font
style=
'font-size:1.6em'
>
Detailed Documentation
</font></a></b>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
<xsl:if
test=
"body_file"
>
<BR/>
The body for the
<xsl:value-of
select=
"name"
/>
component can be found
here:
<a
href=
"{body_file}.html#{name}"
><xsl:value-of
select=
"body_file"
/></a>
</xsl:if>
<xsl:apply-templates
select=
"examples"
/>
<xsl:apply-templates
select=
"examples"
/>
<div
class=
'include_file_more_details_wrapper'
>
<xsl:if
test=
"spec_file"
>
<xsl:choose>
<xsl:when
test=
"spec_file/@link = 'true'"
>
<a
class=
'more_details'
href=
"{spec_file}.html#{name}"
>
More Details...
</a>
</xsl:when>
<xsl:otherwise>
<a
class=
'more_details'
href=
"{spec_file}.html"
>
More Details...
</a>
</xsl:otherwise>
</xsl:choose>
</xsl:if>
<xsl:if
test=
"file"
>
<div
class=
'include_file'
>
#include
<
<xsl:value-of
select=
"file"
/>
>
</div>
</xsl:if>
</div>
<xsl:apply-templates
select=
"implementations"
>
<xsl:apply-templates
select=
"implementations"
>
<xsl:with-param
name=
"checked"
select=
"$checked"
/>
<xsl:with-param
name=
"checked"
select=
"$checked"
/>
</xsl:apply-templates>
</xsl:apply-templates>
<xsl:choose>
<xsl:when
test=
"implementations"
></xsl:when>
<xsl:otherwise><br/><br/></xsl:otherwise>
</xsl:choose>
<xsl:if
test=
"extensions"
>
<xsl:if
test=
"extensions"
>
<br/>
<br/>
...
@@ -380,19 +369,17 @@
...
@@ -380,19 +369,17 @@
<xsl:apply-templates
select=
"description"
/>
<xsl:apply-templates
select=
"description"
/>
<BR/>
<BR/>
<BR/>
<BR/>
<xsl:apply-templates
select=
"examples"
/>
<xsl:choose>
<xsl:choose>
<xsl:when
test=
"spec_file/@link = 'true'"
>
<xsl:when
test=
"spec_file/@link = 'true'"
>
<b><a
href=
"{spec_file}.html#{name}"
>
<a
class=
'more_details_extension'
href=
"{spec_file}.html#{name}"
>
More Details...
</a>
<font
style=
'font-size:1.4em'
>
Detailed Documentation
</font></a></b>
</xsl:when>
</xsl:when>
<xsl:otherwise>
<xsl:otherwise>
<b><a
href=
"{spec_file}.html"
>
<a
class=
'more_details_extension'
href=
"{spec_file}.html"
>
More Details...
</a>
<font
style=
'font-size:1.4em'
>
Detailed Documentation
</font></a></b>
</xsl:otherwise>
</xsl:otherwise>
</xsl:choose>
</xsl:choose>
<xsl:apply-templates
select=
"examples"
/>
<xsl:apply-templates
select=
"implementations"
>
<xsl:apply-templates
select=
"implementations"
>
<xsl:with-param
name=
"checked"
select=
"$checked"
/>
<xsl:with-param
name=
"checked"
select=
"$checked"
/>
</xsl:apply-templates>
</xsl:apply-templates>
...
@@ -400,10 +387,6 @@
...
@@ -400,10 +387,6 @@
</xsl:for-each>
</xsl:for-each>
</xsl:if>
</xsl:if>
<!-- putting this empty center tag here, for whatever reason, prevents IE from
messing up the space between these div blocks -->
<center></center>
</div>
</div>
</xsl:for-each>
</xsl:for-each>
</xsl:template>
</xsl:template>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment