Opened 12 years ago

Closed 11 years ago

#7299 closed bug (fixed)

Syntax issue in Overcast UI theme

Reported by: skibler Owned by:
Priority: minor Milestone: 1.8.21
Component: [meta] ui.themeroller Version: 1.8.12
Keywords: Cc:
Blocked by: Blocking:

Description

On line 295 in CSS file for Overcast theme.

The syntax issue did not appear when I downloaded the UI Lightness theme or Pepper Grinder.

I'm guessing that

-moz-border-radius: 0pxdow=0px; -webkit-border-radius: 0pxdow=0px; border-radius: 0pxdow=0px;

is supposed to be

-moz-border-radius: 0px; -moz-border-shadow: 0px; -webkit-border-radius: 0px; -webkit-border-shadow: 0px; border-radius: 0px; border-shadow: 0px;

This is the offending line

.ui-widget-shadow { margin: -4px 0 0 -4px; padding: 4px; background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .60;filter:Alpha(Opacity=60); -moz-border-radius: 0pxdow=0px; -webkit-border-radius: 0pxdow=0px; border-radius: 0pxdow=0px; }

I'll try to make a pull request on Github, my account is seankibler

Change History (2)

comment:1 Changed 12 years ago by skibler

Oops the fixed line should be:

-moz-border-radius: 0px; -moz-box-shadow: 0px; -webkit-border-radius: 0px; -webkit-box-shadow: 0px; border-radius: 0px; box-shadow: 0px;

comment:2 Changed 11 years ago by Scott González

Component: CSS Framework[meta] ui.themeroller
Milestone: 1.91.8.21
Resolution: fixed
Status: newclosed

Fixed in site SVN. This will go live with the next release.

Note: See TracTickets for help on using tickets.