Bug 6865 - Follow-up, Replace image-based gradient backgrounds with CSS3 gradients
Staff client login screen has a separate CSS file which wasn't included in the original changes for Bug 6865. This caused a 404 error (missing background image). Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com> Tested in Chrome, FF, Safari, and IE8. Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
This commit is contained in:
parent
da6c532074
commit
ac3b4061b7
1 changed files with 14 additions and 5 deletions
|
@ -129,11 +129,20 @@ label {
|
|||
}
|
||||
|
||||
.submit input, .submit input:focus, .button {
|
||||
background: url(../../img/button-bg.gif );
|
||||
border: 1px solid #999;
|
||||
border-left-color: #ccc;
|
||||
border-top-color: #ccc;
|
||||
color: #333;
|
||||
border: 1px outset #999999;
|
||||
border-top-color: #666;
|
||||
border-left-color: #666;
|
||||
-moz-border-radius : 2px;
|
||||
padding: 0.25em;
|
||||
background: #ffffff; /* Old browsers */
|
||||
background: -moz-linear-gradient(top, #ffffff 0%, #f7f7f7 35%, #e0e0e0 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(35%,#f7f7f7), color-stop(100%,#e0e0e0)); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, #ffffff 0%,#f7f7f7 35%,#e0e0e0 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, #ffffff 0%,#f7f7f7 35%,#e0e0e0 100%); /* Opera11.10+ */
|
||||
background: -ms-linear-gradient(top, #ffffff 0%,#f7f7f7 35%,#e0e0e0 100%); /* IE10+ */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e0e0e0',GradientType=0 ); /* IE6-9 */
|
||||
background: linear-gradient(top, #ffffff 0%,#f7f7f7 35%,#e0e0e0 100%); /* W3C */
|
||||
color: #333333;
|
||||
padding: 0.25em;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue