Commit 55f5b68c5df931331cf682714d64195ac2d8ed49

Authored by ykxie
1 parent 7a3ee20b

fix style

src/css/mobile.css
... ... @@ -86,4 +86,8 @@
86 86 .player_volume_wrapper {
87 87 display: none; }
88 88 .full {
89   - display: none; } }
  89 + display: none; }
  90 + .tab-content > .tab-pane {
  91 + padding-bottom: 64px; }
  92 + .CodeMirror-scroll {
  93 + overflow: auto !important; } }
... ...
src/gxb-ide/Iterm.js
... ... @@ -30,7 +30,6 @@
30 30 $(document).on('focus', '#runtimeArgus', function(){ })
31 31 },
32 32 compile: function(){
33   - alert('hello ----------var')
34 33 var _this = this;
35 34 var el = document.querySelector('#CompileBtn');
36 35 var userId = _this.options.userId;
... ...
src/player.html
... ... @@ -231,6 +231,15 @@
231 231 .player_volume_wrapper{
232 232 display: none !important;
233 233 }
  234 +
  235 + .tab-content>.tab-pane {
  236 + padding-bottom: 64px;
  237 + }
  238 +
  239 + .CodeMirror-scroll{
  240 + overflow: auto !important;
  241 + }
  242 +
234 243 }
235 244  
236 245 </style>
... ...
src/scss/mobile.scss
... ... @@ -39,7 +39,7 @@
39 39 }
40 40 .record-wrap{
41 41 .m-dir-wrap{
42   - // display: none;
  42 + display: none;
43 43 background-color: rgba(45,48,56,0.8);
44 44 position: absolute;
45 45 z-index: 9999;
... ... @@ -123,6 +123,13 @@
123 123 .full{
124 124 display: none
125 125 }
  126 +
  127 + .tab-content>.tab-pane {
  128 + padding-bottom: 64px;
  129 + }
  130 + .CodeMirror-scroll{
  131 + overflow: auto !important;
  132 + }
126 133 }
127 134  
128 135  
... ...