| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
| |
Changed selected style to a background color change instead of a
font-weight change to avoid changing tab widths.
BUG=
TEST=
Review URL: http://codereview.chromium.org/6596088
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76647 0039d316-1c4b-4281-b951-d872f2087c98
|
|
|
|
|
|
|
|
|
| |
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/6594059
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76613 0039d316-1c4b-4281-b951-d872f2087c98
|
|
This adds a tabbox and related elements to the cr.ui library.
Usage:
<tabbox>
<tabs>
<tab>Hello</tab>
<tab>World</tab>
</tabs>
<tabpanels>
<tabpanel>Hi</tabpanel>
<tabpanel>Tellus</tabpanel>
</tabpanels>
</tabbox>
<script>
cr.ui.decorate('tabbox', cr.ui.TabBox);
</script>
The tab and tabpanel elements have a selected property and the tabbox have a
selectedIndex property reflecting the selected tab.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/6532105
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76086 0039d316-1c4b-4281-b951-d872f2087c98
|