Commit 68cdc5aa55176f379964a99356b093072f346477

Authored by ykxie
1 parent bab8877f

fix style

dist/css/mobile.css
... ... @@ -87,7 +87,7 @@
87 87 display: none; }
88 88 .full {
89 89 display: none; }
90   - .tab-content > .tab-pane {
  90 + #resultoutput .tab-content > .tab-pane {
91 91 padding-bottom: 64px; }
92 92 .CodeMirror-scroll {
93 93 overflow: auto !important; } }
... ...
dist/js/gbreplayer.js
... ... @@ -1585,7 +1585,7 @@ $(function(){
1585 1585 contentType: "application/json",
1586 1586 success: function(data) {
1587 1587 compileResult(data)
1588   - l.stop();
  1588 + // l.stop();
1589 1589  
1590 1590 $('.compile-loading').hide();
1591 1591 $('.compile-reslut').show();
... ...
dist/player.html
... ... @@ -208,6 +208,7 @@
208 208 }
209 209 .comprun{
210 210 position: relative;
  211 +
211 212 padding: 0;
212 213 height: 56px;
213 214 width: 56px;
... ... @@ -224,6 +225,7 @@
224 225 padding-top: 0;
225 226 }
226 227 .ladda-button .ladda-spinner{
  228 + position: absolute;
227 229 top: 50%;
228 230 left: 50%;
229 231 transform: translate(-50%, -50%);
... ... @@ -240,6 +242,11 @@
240 242 overflow: auto !important;
241 243 }
242 244  
  245 + .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
  246 + border-top-right-radius:50%;
  247 + border-bottom-right-radius: 50%;
  248 + }
  249 +
243 250 }
244 251  
245 252 </style>
... ...
dist/scss/mobile.scss
... ... @@ -124,7 +124,7 @@
124 124 display: none
125 125 }
126 126  
127   - .tab-content>.tab-pane {
  127 + #resultoutput .tab-content>.tab-pane {
128 128 padding-bottom: 64px;
129 129 }
130 130 .CodeMirror-scroll{
... ...
src/css/mobile.css
... ... @@ -87,7 +87,7 @@
87 87 display: none; }
88 88 .full {
89 89 display: none; }
90   - .tab-content > .tab-pane {
  90 + #resultoutput .tab-content > .tab-pane {
91 91 padding-bottom: 64px; }
92 92 .CodeMirror-scroll {
93 93 overflow: auto !important; } }
... ...
src/js/gbreplayer.js
... ... @@ -1585,7 +1585,7 @@ $(function(){
1585 1585 contentType: "application/json",
1586 1586 success: function(data) {
1587 1587 compileResult(data)
1588   - l.stop();
  1588 + // l.stop();
1589 1589  
1590 1590 $('.compile-loading').hide();
1591 1591 $('.compile-reslut').show();
... ...
src/player.html
... ... @@ -208,6 +208,7 @@
208 208 }
209 209 .comprun{
210 210 position: relative;
  211 +
211 212 padding: 0;
212 213 height: 56px;
213 214 width: 56px;
... ... @@ -224,6 +225,7 @@
224 225 padding-top: 0;
225 226 }
226 227 .ladda-button .ladda-spinner{
  228 + position: absolute;
227 229 top: 50%;
228 230 left: 50%;
229 231 transform: translate(-50%, -50%);
... ... @@ -240,6 +242,11 @@
240 242 overflow: auto !important;
241 243 }
242 244  
  245 + .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
  246 + border-top-right-radius:50%;
  247 + border-bottom-right-radius: 50%;
  248 + }
  249 +
243 250 }
244 251  
245 252 </style>
... ...
src/scss/mobile.scss
... ... @@ -124,7 +124,7 @@
124 124 display: none
125 125 }
126 126  
127   - .tab-content>.tab-pane {
  127 + #resultoutput .tab-content>.tab-pane {
128 128 padding-bottom: 64px;
129 129 }
130 130 .CodeMirror-scroll{
... ...