Commit 2b1519672cc541d2fe1029c4356ce047be87c0cc
1 parent
fb9115eb
Exists in
master
and in
4 other branches
alteracoes referente a issue 119
Showing
1 changed file
with
17 additions
and
12 deletions
Show diff stats
src/app/pages/programas/programa.html
... | ... | @@ -243,7 +243,7 @@ |
243 | 243 | <div class="sub-section sub-section-{{::proposal.id}}" ng-class="{'sub-section-even': ( ($index+1) % 2 === 0), 'sub-section-odd': ( ($index+1) % 2 === 1)}"> |
244 | 244 | <div class="container"> |
245 | 245 | <div class="row"> |
246 | - <div class="col-sm-4 col-md-3"> | |
246 | + <div class="col-sm-4 col-md-3 hidden-xs"> | |
247 | 247 | <div class="img-mask--container" ng-style="{'background-image':'url( {{::proposal.body}} )'}"> |
248 | 248 | <div class="img-mask"> |
249 | 249 | <div class="icon icon-programa-respondido"> |
... | ... | @@ -255,18 +255,23 @@ |
255 | 255 | </div> |
256 | 256 | </div> |
257 | 257 | <div class="col-sm-8 col-md-9"> |
258 | - <br> | |
259 | - <h3 class="color-theme-fg">{{($index+1)}}ª proposta mais votada:</h3> | |
260 | - <p>{{::proposal.abstract}}</p> | |
261 | - <div class="button--themed"> | |
262 | - <button class="btn btn-block btn-responsive" ng-click="pagePrograma.toggleResponseVisibility(proposal)"> | |
263 | - Veja a resposta e o compromisso do governo | |
264 | - <div class="button-left-icon"> | |
265 | - <span class="glyphicon glyphicon-chevron-down pull-right color-theme-common-fg" aria-hidden="true"></span> | |
266 | - </div> | |
267 | - </button> | |
258 | + <div class="row"> | |
259 | + | |
260 | + <br> | |
261 | + <h3 class="color-theme-fg">{{($index+1)}}ª proposta mais votada:</h3> | |
262 | + <p>{{::proposal.abstract}}</p> | |
263 | + <br> | |
264 | + </div> | |
265 | + <div class="row"> | |
266 | + <div class="button--themed"> | |
267 | + <button class="btn btn-block btn-responsive" ng-click="pagePrograma.toggleResponseVisibility(proposal)"> | |
268 | + Veja a resposta e o compromisso do governo | |
269 | + <div class="button-left-icon"> | |
270 | + <span class="glyphicon glyphicon-chevron-down pull-right color-theme-common-fg" aria-hidden="true"></span> | |
271 | + </div> | |
272 | + </button> | |
273 | + </div> | |
268 | 274 | </div> |
269 | - <br> | |
270 | 275 | </div> |
271 | 276 | </div> |
272 | 277 | </div> | ... | ... |