Commit 68cdc5aa55176f379964a99356b093072f346477
1 parent
bab8877f
fix style
Showing
8 changed files
with
20 additions
and
6 deletions
dist/css/mobile.css
| @@ -87,7 +87,7 @@ | @@ -87,7 +87,7 @@ | ||
| 87 | display: none; } | 87 | display: none; } |
| 88 | .full { | 88 | .full { |
| 89 | display: none; } | 89 | display: none; } |
| 90 | - .tab-content > .tab-pane { | 90 | + #resultoutput .tab-content > .tab-pane { |
| 91 | padding-bottom: 64px; } | 91 | padding-bottom: 64px; } |
| 92 | .CodeMirror-scroll { | 92 | .CodeMirror-scroll { |
| 93 | overflow: auto !important; } } | 93 | overflow: auto !important; } } |
dist/js/gbreplayer.js
| @@ -1585,7 +1585,7 @@ $(function(){ | @@ -1585,7 +1585,7 @@ $(function(){ | ||
| 1585 | contentType: "application/json", | 1585 | contentType: "application/json", |
| 1586 | success: function(data) { | 1586 | success: function(data) { |
| 1587 | compileResult(data) | 1587 | compileResult(data) |
| 1588 | - l.stop(); | 1588 | + // l.stop(); |
| 1589 | 1589 | ||
| 1590 | $('.compile-loading').hide(); | 1590 | $('.compile-loading').hide(); |
| 1591 | $('.compile-reslut').show(); | 1591 | $('.compile-reslut').show(); |
dist/player.html
| @@ -208,6 +208,7 @@ | @@ -208,6 +208,7 @@ | ||
| 208 | } | 208 | } |
| 209 | .comprun{ | 209 | .comprun{ |
| 210 | position: relative; | 210 | position: relative; |
| 211 | + | ||
| 211 | padding: 0; | 212 | padding: 0; |
| 212 | height: 56px; | 213 | height: 56px; |
| 213 | width: 56px; | 214 | width: 56px; |
| @@ -224,6 +225,7 @@ | @@ -224,6 +225,7 @@ | ||
| 224 | padding-top: 0; | 225 | padding-top: 0; |
| 225 | } | 226 | } |
| 226 | .ladda-button .ladda-spinner{ | 227 | .ladda-button .ladda-spinner{ |
| 228 | + position: absolute; | ||
| 227 | top: 50%; | 229 | top: 50%; |
| 228 | left: 50%; | 230 | left: 50%; |
| 229 | transform: translate(-50%, -50%); | 231 | transform: translate(-50%, -50%); |
| @@ -240,6 +242,11 @@ | @@ -240,6 +242,11 @@ | ||
| 240 | overflow: auto !important; | 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 | </style> | 252 | </style> |
dist/scss/mobile.scss
src/css/mobile.css
| @@ -87,7 +87,7 @@ | @@ -87,7 +87,7 @@ | ||
| 87 | display: none; } | 87 | display: none; } |
| 88 | .full { | 88 | .full { |
| 89 | display: none; } | 89 | display: none; } |
| 90 | - .tab-content > .tab-pane { | 90 | + #resultoutput .tab-content > .tab-pane { |
| 91 | padding-bottom: 64px; } | 91 | padding-bottom: 64px; } |
| 92 | .CodeMirror-scroll { | 92 | .CodeMirror-scroll { |
| 93 | overflow: auto !important; } } | 93 | overflow: auto !important; } } |
src/js/gbreplayer.js
| @@ -1585,7 +1585,7 @@ $(function(){ | @@ -1585,7 +1585,7 @@ $(function(){ | ||
| 1585 | contentType: "application/json", | 1585 | contentType: "application/json", |
| 1586 | success: function(data) { | 1586 | success: function(data) { |
| 1587 | compileResult(data) | 1587 | compileResult(data) |
| 1588 | - l.stop(); | 1588 | + // l.stop(); |
| 1589 | 1589 | ||
| 1590 | $('.compile-loading').hide(); | 1590 | $('.compile-loading').hide(); |
| 1591 | $('.compile-reslut').show(); | 1591 | $('.compile-reslut').show(); |
src/player.html
| @@ -208,6 +208,7 @@ | @@ -208,6 +208,7 @@ | ||
| 208 | } | 208 | } |
| 209 | .comprun{ | 209 | .comprun{ |
| 210 | position: relative; | 210 | position: relative; |
| 211 | + | ||
| 211 | padding: 0; | 212 | padding: 0; |
| 212 | height: 56px; | 213 | height: 56px; |
| 213 | width: 56px; | 214 | width: 56px; |
| @@ -224,6 +225,7 @@ | @@ -224,6 +225,7 @@ | ||
| 224 | padding-top: 0; | 225 | padding-top: 0; |
| 225 | } | 226 | } |
| 226 | .ladda-button .ladda-spinner{ | 227 | .ladda-button .ladda-spinner{ |
| 228 | + position: absolute; | ||
| 227 | top: 50%; | 229 | top: 50%; |
| 228 | left: 50%; | 230 | left: 50%; |
| 229 | transform: translate(-50%, -50%); | 231 | transform: translate(-50%, -50%); |
| @@ -240,6 +242,11 @@ | @@ -240,6 +242,11 @@ | ||
| 240 | overflow: auto !important; | 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 | </style> | 252 | </style> |
src/scss/mobile.scss