More actions
| Line 693: | Line 693: | ||
padding:0px; | padding:0px; | ||
background-image: linear-gradient(#00AA00, #AA0000); | background-image: linear-gradient(#00AA00, #AA0000); | ||
// The webkit is needed for the ingame browser. | |||
background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00AA00), color-stop(1, #AA0000) ); | |||
background-image: -webkit-gradient( linear, left bottom, left top, color-stop(0, #00AA00), color-stop(1, #AA0000) ); | |||
background-color: #111111; | background-color: #111111; | ||
} | } | ||
.gradient { | .linear2 { | ||
background-image: linear-gradient(to right, #00AA00, #AA0000); | |||
// The webkit is needed for the ingame browser. | |||
background-image: -webkit-gradient(to right, left bottom, left top, color-stop(0, #00AA00), color-stop(1, #AA0000) ); | |||
background-color: #111111; | |||
} | |||
.radial{ | |||
background-image: radial-gradient(#00AA00, #AA0000); | background-image: radial-gradient(#00AA00, #AA0000); | ||
background-image: -webkit-gradient(radial, left bottom, left top, color-stop(0, #00AA00), color-stop(1, #AA0000) ); | |||
background-color: #111111; | background-color: #111111; | ||
} | } | ||
| Line 749: | Line 752: | ||
Ingame browser test: | Ingame browser test: | ||
{| cellpadding="5" cellspacing="5" | |||
| valign="top" | '''Linear'''<br>(vertical) | |||
{| class="wikitable" cellspacing="0" cellpadding="0" | {| class="wikitable" cellspacing="0" cellpadding="0" | ||
|- | |- | ||
| Line 762: | Line 765: | ||
! 4 | ! 4 | ||
|} | |} | ||
| valign="top" | '''Linear'''<br>(horizontal) | |||
{| class="wikitable" | |||
! 1 | |||
{| class="wikitable" | ! 2 | ||
! 3 | |||
! 4 | |||
|- | |- | ||
| colspan = 4 class="linear2" style="height:2em;" | | |||
|} | |||
| valign="top" | '''Radial'''<br> | |||
{| class="wikitable" | |||
! + | |||
! 1 | ! 1 | ||
| rowspan=" | ! 2 | ||
! 3 | |||
! 4 | |||
|- | |||
| 1 | |||
| rowspan = 4 colspan = 4 class="radial" style="height:1em; width:8em;" | | |||
|- | |- | ||
| 2 | |||
|- | |- | ||
| 3 | |||
|- | |- | ||
| 4 | |||
|} | |} | ||