BJTAWJ / webclient-mobile-for-ca-plex

Automatically exported from code.google.com/p/webclient-mobile-for-ca-plex
0 stars 0 forks source link

Fieldset items not displaying correctly on iPod Touch #7

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Add three buttons to a panel, gen, and PlexBuild
2. Run app on iPod (version 1 I think!)
3.

What is the expected output? What do you see instead?
First and last children of buttons should have radius on the border for top and 
botom respectively - but all buttons had the same layout as if they were the 
only button in the list. Issue is because the wcli.css did not specify the 
radius correctly for different browsers. See below for the modifications 
required to fix the issue.

What version of the product are you using? On what operating system?

(partial records from wcli.css)
.x-form-fieldset .x-button {
    margin: 0px;
    background: white none;
    border-bottom: 1px solid lightgrey;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-border-radius: 0;
}

.x-form-fieldset .x-button:first-child {
    -webkit-border-top-left-radius: 0.4em;
    -webkit-border-top-right-radius: 0.4em;
    border-top-left-radius: 0.4em;
    border-top-right-radius: 0.4em;
}

.x-form-fieldset .x-button:last-child {
    border-bottom-width: 0px;
    -webkit-border-bottom-left-radius: 0.4em;
    -webkit-border-bottom-right-radius: 0.4em;
    border-bottom-left-radius: 0.4em;
    border-bottom-right-radius: 0.4em;
}

Please provide any additional information below.

Original issue reported on code.google.com by darryl.m...@radmt.com on 29 Jun 2011 at 8:11