mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 10:08:40 -05:00
Merge pull request #33 from sschneid/style_fixups
(maint) Style fix-ups
This commit is contained in:
commit
c556d1e437
6 changed files with 11 additions and 11 deletions
|
|
@ -4,7 +4,7 @@ body,
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
background-image: url('/img/cream_pixels.png');
|
background-image: url('/img/subtle_dots.png');
|
||||||
}
|
}
|
||||||
|
|
||||||
#wrap {
|
#wrap {
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 191 B |
BIN
lib/vmpooler/public/img/subtle_dots.png
Normal file
BIN
lib/vmpooler/public/img/subtle_dots.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
BIN
lib/vmpooler/public/img/textured_paper.png
Normal file
BIN
lib/vmpooler/public/img/textured_paper.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 131 KiB |
|
|
@ -79,14 +79,14 @@ d3.json( pool_url+'?history=1',
|
||||||
defs.append( 'svg:pattern' )
|
defs.append( 'svg:pattern' )
|
||||||
.attr( 'id', 'background' )
|
.attr( 'id', 'background' )
|
||||||
.attr( 'patternUnits', 'userSpaceOnUse' )
|
.attr( 'patternUnits', 'userSpaceOnUse' )
|
||||||
.attr( 'width', '600px' )
|
.attr( 'width', '500px' )
|
||||||
.attr( 'height', '100px' )
|
.attr( 'height', '500px' )
|
||||||
.append( 'svg:image' )
|
.append( 'svg:image' )
|
||||||
.attr( 'xlink:href', '/img/bg.png' )
|
.attr( 'xlink:href', '/img/textured_paper.png' )
|
||||||
.attr( 'x', 0 )
|
.attr( 'x', 0 )
|
||||||
.attr( 'y', 0 )
|
.attr( 'y', 0 )
|
||||||
.attr( 'width', '600px' )
|
.attr( 'width', '500px' )
|
||||||
.attr( 'height', '100px' );
|
.attr( 'height', '500px' );
|
||||||
|
|
||||||
stats_vmpooler_pool__svg[ pool ]
|
stats_vmpooler_pool__svg[ pool ]
|
||||||
.append( 'path' )
|
.append( 'path' )
|
||||||
|
|
|
||||||
|
|
@ -133,14 +133,14 @@ d3.json( running_url+'?history=1',
|
||||||
defs.append( 'svg:pattern' )
|
defs.append( 'svg:pattern' )
|
||||||
.attr( 'id', 'background' )
|
.attr( 'id', 'background' )
|
||||||
.attr( 'patternUnits', 'userSpaceOnUse' )
|
.attr( 'patternUnits', 'userSpaceOnUse' )
|
||||||
.attr( 'width', '600px' )
|
.attr( 'width', '500px' )
|
||||||
.attr( 'height', '100px' )
|
.attr( 'height', '500px' )
|
||||||
.append( 'svg:image' )
|
.append( 'svg:image' )
|
||||||
.attr( 'xlink:href', '/img/bg.png' )
|
.attr( 'xlink:href', '/img/textured_paper.png' )
|
||||||
.attr( 'x', 0 )
|
.attr( 'x', 0 )
|
||||||
.attr( 'y', 0 )
|
.attr( 'y', 0 )
|
||||||
.attr( 'width', '600px' )
|
.attr( 'width', '500px' )
|
||||||
.attr( 'height', '100px' );
|
.attr( 'height', '500px' );
|
||||||
|
|
||||||
mysvg
|
mysvg
|
||||||
.append( 'path' )
|
.append( 'path' )
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue