Skip to content

Commit

Permalink
Fix tab order of multimedia controls
Browse files Browse the repository at this point in the history
Reorderd UI control bar markup and updated CSS.
  • Loading branch information
patheard committed Sep 7, 2012
1 parent 5d25b34 commit 980afa0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/js/css/pe-ap-min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/js/pe-ap-min.js

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion src/js/sass/multimedia.scss
Expand Up @@ -54,6 +54,7 @@ video, object.video {
$progress-color: #000;

.wb-mm-controls{
position:relative;
width:100%;
padding:0;

Expand All @@ -77,10 +78,16 @@ $progress-color: #000;
float:left;
}

.wb-mm-controls-end, .wb-mm-timeline-total {
.wb-mm-timeline-total {
float:right;
}

.wb-mm-controls-end {
position:absolute;
top:0;
right:0;
}

.wb-mm-timeline{
position:relative;
@include ui;
Expand Down
2 changes: 1 addition & 1 deletion src/js/workers/multimedia.js
Expand Up @@ -327,7 +327,7 @@
}).append(_pe.fn.multimedia.get_image('mute_off', _pe.dic.get('%mute', 'enable')))
);

ui.append(ui_start).append(ui_end).append(ui_timeline);
ui.append(ui_start).append(ui_timeline).append(ui_end);

return ui;
},
Expand Down

0 comments on commit 980afa0

Please sign in to comment.