Bugzilla – Attachment 19519 Details for
Bug 6473
Test bug for Git-bz ✔ ❤ ★
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 10496 - CCSR theme OPAC tabs to not show correct active state
Bug-10496---CCSR-theme-OPAC-tabs-to-not-show-corre.patch (text/plain), 4.86 KB, created by
Paul Poulain
on 2013-07-10 12:38:32 UTC
(
hide
)
Description:
Bug 10496 - CCSR theme OPAC tabs to not show correct active state
Filename:
MIME Type:
Creator:
Paul Poulain
Created:
2013-07-10 12:38:32 UTC
Size:
4.86 KB
patch
obsolete
>From 900b0b7109cda22d5362c94603f64cc361534509 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Fri, 28 Jun 2013 14:11:48 -0400 >Subject: [PATCH] Bug 10496 - CCSR theme OPAC tabs to not show correct active state > >When jQueryUI was updated in the CCSR theme the corresponding CSS >changes were not copied over at the same time, causing style problems >with jQueryUI widgets. This patch makes the necessary changes. > >To test, apply the patch, clear your browser cache, and view any page >which uses jQueryUI tabs (advanced search, bibliographic detail page). >Tabs should look correct and correctly show which tab is active. > >Signed-off-by: Nicole C. Engard <nengard@bywatersolutions.com> >Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> >CSS changes only. >Confirmed problem in CCSR OPAC templates. >Tested advanced search and detail pages in CCSR and prog. >In order to fully test advanced search I added location and >collection to AdvancedSearchTypes. >Also tested the branch tooltip as I spotted some CSS added for that. > >Works beautifully, no problems found. > >Signed-off-by: Galen Charlton <gmc@esilibrary.com> > >Signed-off-by: <> > >Signed-off-by: name <emailaddress> >Signed-off-by: sandbox8 <sandboxes@biblibre.com> > >Signed-off-by: sandbox8 <sandboxes@biblibre.com> > >Signed-off-by: sandbox8 <sandboxes@biblibre.com> > >Signed-off-by: sandbox8 <sandboxes@biblibre.com> > >http://bugs.koha-community.org/show_bug.cgi?id=6473 >Signed-off-by: sandbox8 <sandboxes@biblibre.com> > >Signed-off-by: sandbox8 <sandboxes@biblibre.com> >--- > koha-tmpl/opac-tmpl/ccsr/en/css/opac.css | 37 ++++++++++++++++++++++------- > 1 files changed, 28 insertions(+), 9 deletions(-) > >diff --git a/koha-tmpl/opac-tmpl/ccsr/en/css/opac.css b/koha-tmpl/opac-tmpl/ccsr/en/css/opac.css >index 5c01112..f66e11f 100644 >--- a/koha-tmpl/opac-tmpl/ccsr/en/css/opac.css >+++ b/koha-tmpl/opac-tmpl/ccsr/en/css/opac.css >@@ -2472,8 +2472,18 @@ span.sep { > background-position : -7px -126px; > } > >+/* jQueryUI Core */ >+ >+.ui-widget-content { border: 1px solid #AAA; background: #ffffff none; color: #222222; } >+.ui-widget-header { border: 1px solid #AAA; background: #E6F0F2 none; color: #222222; font-weight: bold; } >+.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #AAA; background: #F4F8F9 none; font-weight: normal; color: #555555; } >+.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #AAA; background: #E6F0F2 none; font-weight: normal; color: #212121; } >+.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #aaaaaa; background: #ffffff none; font-weight: normal; color: #212121; } >+.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fcefa1; background: #fbf9ee; color: #363636; } >+.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec; color: #cd0a0a; } >+ > /* jQuery UI standard tabs */ >-.ui-tabs-nav .ui-tabs-selected a, >+.ui-tabs-nav .ui-tabs-active a, > .ui-tabs-nav a:hover, > .ui-tabs-nav a:focus, > .ui-tabs-nav a:active, >@@ -2482,11 +2492,6 @@ span.sep { > outline: 0 none; > } > >-.ui-tabs .ui-tabs-nav li.ui-tabs-selected { >- background-color : #FFF; >- border : 1px solid #D8D8D8; >-} >- > .ui-widget, > .ui-widget input, > .ui-widget select, >@@ -2495,6 +2500,7 @@ span.sep { > font-family : inherit; > font-size : inherit; > } >+ > ul.ui-tabs-nav li { > list-style : none; > } >@@ -2512,10 +2518,16 @@ ul.ui-tabs-nav li { > } > .ui-tabs .ui-tabs-nav li { > background: #F3F3F3 none; >- border: 1px solid #D8D8D8; >+ border-color: #D8D8D8; > margin-right : .4em; > } >-.ui-tabs .ui-tabs-nav li.ui-tabs-selected a { >+ >+.ui-tabs .ui-tabs-nav li.ui-tabs-active { >+ background-color : #FFF; >+ border : 1px solid #D8D8D8; >+ border-bottom: 0; >+} >+.ui-tabs .ui-tabs-nav li.ui-tabs-active a { > color : #000; > font-weight : bold; > } >@@ -2524,7 +2536,7 @@ ul.ui-tabs-nav li { > background : #F3F3F3 none; > } > >-.ui-tabs .ui-tabs-nav li.ui-tabs-selected.ui-state-hover { >+.ui-tabs .ui-tabs-nav li.ui-tabs-active.ui-state-hover { > background : #FFF none; > } > >@@ -2668,6 +2680,9 @@ ul.ui-tabs-nav li { > > > /* jQuery UI Datepicker */ >+.ui-datepicker table {width: 100%; font-size: .9em; border : 0; border-collapse: collapse; margin:0 0 .4em; } >+.ui-datepicker th { background : transparent none; padding: .7em .3em; text-align: center; font-weight: bold; border: 0; } >+ > .ui-datepicker-trigger { > vertical-align: middle; > margin : 0 3px; >@@ -2823,3 +2838,7 @@ a.reviewlink,a.reviewlink:visited { > .subjectSearch ul { > padding-left: 0px; > } >+ >+.branch-info-tooltip { >+ display: none; >+} >\ No newline at end of file >-- >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 6473
:
4386
|
6837
|
6838
|
6839
|
6840
|
6841
|
6842
|
6843
|
7154
|
7155
|
7567
|
7994
|
7995
|
7996
|
7997
|
8018
|
9807
|
9808
|
9813
|
9831
|
9832
|
9836
|
9854
|
10842
|
10843
|
10844
|
10845
|
10846
|
10847
|
10848
|
10849
|
10850
|
10851
|
10852
|
10853
|
10854
|
10855
|
10856
|
10857
|
10858
|
11540
|
11543
|
11544
|
12502
|
12513
|
12514
|
12515
|
12516
|
12517
|
12518
|
12519
|
13473
|
13673
|
14955
|
14969
|
14970
|
14972
|
15201
|
18949
|
18950
|
18951
|
18952
|
18953
|
18954
|
18955
|
18956
|
18957
|
18958
|
18959
|
18960
|
18961
|
18962
|
18963
|
18971
|
18972
|
19518
|
19519
|
19591
|
19592
|
19871
|
19879
|
19880
|
19881
|
19882
|
20011
|
20012
|
20013
|
20014
|
22477
|
22481
|
22482
|
22496
|
22502
|
22503
|
31958
|
32444
|
32445
|
32446
|
32447
|
32448
|
32449
|
32450
|
32451
|
32452
|
34200
|
34201
|
34625
|
34999
|
35130
|
35269
|
35273
|
35274
|
35275
|
35276
|
35277
|
35279
|
35280
|
35303
|
40954
|
40957
|
45345
|
45349
|
45731
|
45732
|
45733
|
45734
|
47283
|
47284
|
47298
|
47299
|
47300
|
47334
|
47336
|
49083
|
56974
|
61059
|
61069
|
62038
|
65313
|
77301
|
78016
|
79959
|
80178
|
80179
|
80180
|
80181
|
80182
|
84400
|
86644
|
86645
|
87152
|
88128
|
95586
|
95716
|
97394
|
99026
|
99027
|
114217
|
114218
|
114219
|
114220
|
114221
|
114222
|
114223
|
114224
|
114225
|
114226
|
119255
|
121181
|
131891
|
131893
|
131894
|
134862
|
144109
|
144144
|
144671
|
144672
|
144673
|
147183
|
149030
|
149031
|
149032
|
149033
|
160566
|
160567
|
160568