diff options
| -rw-r--r-- | assets/css/sample-editor.css | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/assets/css/sample-editor.css b/assets/css/sample-editor.css index f7b6868..3e98d15 100644 --- a/assets/css/sample-editor.css +++ b/assets/css/sample-editor.css @@ -49,6 +49,14 @@  	position: absolute;  	top: 0;  	background-color: #4087a0; +	background: #499db7; /* Old browsers */ +	background: -moz-linear-gradient(top,  #499db7 0%, #4087a0 100%); /* FF3.6+ */ +	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#499db7), color-stop(100%,#4087a0)); /* Chrome,Safari4+ */ +	background: -webkit-linear-gradient(top,  #499db7 0%,#4087a0 100%); /* Chrome10+,Safari5.1+ */ +	background: -o-linear-gradient(top,  #499db7 0%,#4087a0 100%); /* Opera 11.10+ */ +	background: -ms-linear-gradient(top,  #499db7 0%,#4087a0 100%); /* IE10+ */ +	background: linear-gradient(to bottom,  #499db7 0%,#4087a0 100%); /* W3C */ +	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#499db7', endColorstr='#4087a0',GradientType=0 ); /* IE6-9 */  } | 
