Opened 16 years ago
Closed 16 years ago
#9589 closed defect (bug) (fixed)
Background color on widget control with blue admin
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 2.8 | Priority: | normal |
Severity: | normal | Version: | 2.8 |
Component: | Widgets | Keywords: | reporter-feedback |
Focuses: | Cc: |
Description
When in blue admin layout
the widget control should have a background color
currently transparent
Attachments (5)
Change History (17)
#2
in reply to:
↑ description
@
16 years ago
- Keywords has-patch added
#7
@
16 years ago
- Cc dragos.nicholas@… added
- Keywords tested commit added; needs-testing removed
- Owner changed from azaozz to Nicholas91
I've added the correct patch.
It seems I can't use the
svn diff filename.css > filename.diff
command for CSS files...
Anyway, I've just added the "widget-inside" class to line 616 like so:
.metabox-holder .postbox, #poststuff .postbox, .widget-inside { background-color: #FFF; }
Tested on Ubuntu/FireFox/Opera.
#9
in reply to:
↑ 8
;
follow-up:
↓ 11
@
16 years ago
- Resolution fixed deleted
- Status changed from closed to reopened
Replying to azaozz:
(In [11146]) Add background color on widget control with blue admin, props arena, fixes #9589
Azaozz, the patch from arena doesn't work! My patch solves the problem. Did you even read my last comment?
Just add the "widget-inside" class on line 616:
.metabox-holder .postbox,
#poststuff .postbox,
.widget-inside {
background-color: #FFF;
}
#10
@
16 years ago
*in code tags*
.metabox-holder .postbox, #poststuff .postbox, .widget-inside { background-color: #FFF; }
#11
in reply to:
↑ 9
@
16 years ago
- Keywords reporter-feedback added; has-patch tested commit removed
Replying to Nicholas91:
Azaozz, the patch from arena doesn't work!
There was a difference between colors-fresh and colors-classic, the patch made them the same. Can you check why it doesn't work for you? .widget-inside
is under .widget
so background color on .widget
shows for all child elements.
Replying to arena: