Commit 55f5b68c5df931331cf682714d64195ac2d8ed49
1 parent
7a3ee20b
fix style
Showing
4 changed files
with
22 additions
and
3 deletions
src/css/mobile.css
| @@ -86,4 +86,8 @@ | @@ -86,4 +86,8 @@ | ||
| 86 | .player_volume_wrapper { | 86 | .player_volume_wrapper { |
| 87 | display: none; } | 87 | display: none; } |
| 88 | .full { | 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,7 +30,6 @@ | ||
| 30 | $(document).on('focus', '#runtimeArgus', function(){ }) | 30 | $(document).on('focus', '#runtimeArgus', function(){ }) |
| 31 | }, | 31 | }, |
| 32 | compile: function(){ | 32 | compile: function(){ |
| 33 | - alert('hello ----------var') | ||
| 34 | var _this = this; | 33 | var _this = this; |
| 35 | var el = document.querySelector('#CompileBtn'); | 34 | var el = document.querySelector('#CompileBtn'); |
| 36 | var userId = _this.options.userId; | 35 | var userId = _this.options.userId; |
src/player.html
| @@ -231,6 +231,15 @@ | @@ -231,6 +231,15 @@ | ||
| 231 | .player_volume_wrapper{ | 231 | .player_volume_wrapper{ |
| 232 | display: none !important; | 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 | </style> | 245 | </style> |
src/scss/mobile.scss
| @@ -39,7 +39,7 @@ | @@ -39,7 +39,7 @@ | ||
| 39 | } | 39 | } |
| 40 | .record-wrap{ | 40 | .record-wrap{ |
| 41 | .m-dir-wrap{ | 41 | .m-dir-wrap{ |
| 42 | - // display: none; | 42 | + display: none; |
| 43 | background-color: rgba(45,48,56,0.8); | 43 | background-color: rgba(45,48,56,0.8); |
| 44 | position: absolute; | 44 | position: absolute; |
| 45 | z-index: 9999; | 45 | z-index: 9999; |
| @@ -123,6 +123,13 @@ | @@ -123,6 +123,13 @@ | ||
| 123 | .full{ | 123 | .full{ |
| 124 | display: none | 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 |