Skip to content

Commit

Permalink
Fix css bg position for firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
gschueler committed May 19, 2011
1 parent 170d87a commit 1ea01aa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rundeckapp/grails-app/views/common/_css.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -203,9 +203,9 @@
padding-left: 20px;
}
.bubbletop {
div.bubbletop {
background: transparent url("${resource(dir:'images',file:'bubble-bg.png')}") 10px top no-repeat;
height: 16px;
background: transparent url(${resource(dir:'images',file:'bubble-bg.png')}) top 10px no-repeat;
z-index: 1;
}
Expand All @@ -214,14 +214,14 @@
/*padding-bottom:14px;*/
height: 14px;
display: inline-block;
background: transparent url(${resource(dir:'images',file:'icon-small-folder-open.png')}) top left no-repeat;
background: transparent url("${resource(dir:'images',file:'icon-small-folder-open.png')}") top left no-repeat;
}
.expandComponentHolder > div > span.expandComponentControl.jobgroupexpand span.foldertoggle {
width: 16px;
height:14px;
display: inline-block;
background: transparent url(${resource(dir:'images',file:'icon-small-folder.png')}) top left no-repeat;
background: transparent url("${resource(dir:'images',file:'icon-small-folder.png')}") top left no-repeat;
}
</style>

0 comments on commit 1ea01aa

Please sign in to comment.