Bugzilla – Attachment 7474 Details for
Bug 6865
Replace image-based gradient backgrounds with CSS3 gradients
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 6865 - Follow-up, Replace image-based gradient backgrounds with CSS3 gradients
Bug-6865---Follow-up-Replace-image-based-gradient-.patch (text/plain), 2.08 KB, created by
Jared Camins-Esakov
on 2012-02-07 14:11:49 UTC
(
hide
)
Description:
Bug 6865 - Follow-up, Replace image-based gradient backgrounds with CSS3 gradients
Filename:
MIME Type:
Creator:
Jared Camins-Esakov
Created:
2012-02-07 14:11:49 UTC
Size:
2.08 KB
patch
obsolete
>From 7f28e2dd65364d76441f774cfc1131636e0776af Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Tue, 24 Jan 2012 08:34:55 -0500 >Subject: [PATCH] Bug 6865 - Follow-up, Replace image-based gradient backgrounds with CSS3 gradients >Content-Type: text/plain; charset="UTF-8" > >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. >--- > koha-tmpl/intranet-tmpl/prog/en/css/login.css | 19 ++++++++++++++----- > 1 files changed, 14 insertions(+), 5 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/css/login.css b/koha-tmpl/intranet-tmpl/prog/en/css/login.css >index 5ed2c64..cbb7d81 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/css/login.css >+++ b/koha-tmpl/intranet-tmpl/prog/en/css/login.css >@@ -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; > } > >-- >1.7.2.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 6865
:
6545
|
6629
|
7313
| 7474