Commit 56b86662f7056260c32ecf64c773eb45c1d40dba
1 parent
3edd3041
Exists in
master
and in
6 other branches
back button moved to left
Showing
3 changed files
with
6 additions
and
5 deletions
Show diff stats
index.html
... | ... | @@ -164,9 +164,9 @@ |
164 | 164 | {{#each categories}} |
165 | 165 | <li class="category proposal-category" data-category="{{slug}}"> |
166 | 166 | <a href="#/temas/{{slug}}/{{id}}" class="proposal-link" data-target="proposal-item-{{id}}">{{name}}</a> |
167 | - <button class="go-back btn btn-default pull-right"> | |
168 | - VOLTAR | |
167 | + <button class="go-back btn btn-default pull-left"> | |
169 | 168 | <span class="fa fa-reply"></span> |
169 | + Voltar | |
170 | 170 | </button> |
171 | 171 | {{#select_proposal ../../article.children slug ../id}}{{/select_proposal}} |
172 | 172 | </li> | ... | ... |
sass/_proposal_detail.scss
sass/style.scss
... | ... | @@ -131,13 +131,13 @@ form { |
131 | 131 | -ms-user-select: none; |
132 | 132 | user-select: none; |
133 | 133 | background-image: none; |
134 | - border: 1px solid transparent; | |
134 | + border: 0; | |
135 | 135 | /* border-radius: 4px; */ |
136 | 136 | } |
137 | 137 | |
138 | 138 | .btn-default { |
139 | - color: #000; | |
140 | - background-color: #fff; | |
139 | + color: #fff; | |
140 | + background-color: transparent; | |
141 | 141 | border-color: #ccc; |
142 | 142 | } |
143 | 143 | ... | ... |