Commit f583926ff05f7f1da428dac596d8fc9e24c2c79c

Authored by ykxie
1 parent fc980668

fix web player style

src/css/recording.css
... ... @@ -359,7 +359,8 @@ button {
359 359 height: 34px;
360 360 line-height: 34px;
361 361 padding: 0;
362   - border-radius: 21px; }
  362 + border-radius: 21px;
  363 + color: #666; }
363 364  
364 365 .recording-page #previewpanel .nav-tabs > li.active > a {
365 366 background: #fff !important;
... ...
src/js/gbreplayer.js
... ... @@ -414,6 +414,9 @@ $(function(){
414 414 compileMode(langid);
415 415 console.log(coderecords);
416 416 $("#play_audio").attr('src', "http://gxb-file.oss-cn-beijing.aliyuncs.com" + coderecords.audioUrl);
  417 + if (_languageid == 35) {
  418 + $('#cmprun-tabs').hide();
  419 + }
417 420 if (_role ==0) {
418 421 player.init({
419 422 container: '#audioWrap'
... ...
src/scss/recording.scss
... ... @@ -418,6 +418,7 @@ button{
418 418 line-height: 34px;
419 419 padding: 0;
420 420 border-radius: 21px;
  421 + color: #666;
421 422 }
422 423 .nav-tabs>li.active>a{
423 424 background: #fff !important;
... ...