Commit 5d549a91d104a5f3edd4b677c4b1ccee3ceb5cc3
1 parent
1b2a7967
Exists in
master
and in
8 other branches
Pequenas melhorias. Fix #189
Showing
3 changed files
with
12 additions
and
4 deletions
Show diff stats
index.html
... | ... | @@ -234,7 +234,7 @@ |
234 | 234 | </div> |
235 | 235 | <div class="talk-proposal-container"> |
236 | 236 | <div class="talk-proposal"> |
237 | - <div class="container-title">Fale com os ministros</div> | |
237 | + <div class="container-title">Bate papo com os ministros</div> | |
238 | 238 | <p>Confira as datas e horários disponíveis:</p> |
239 | 239 | <ul class="calendar" data-slick='{"infinite": false, "rows": 2}'> |
240 | 240 | <li> | ... | ... |
sass/_proposal_detail.scss
... | ... | @@ -202,7 +202,7 @@ |
202 | 202 | background: $color; |
203 | 203 | // background: $color url(images/black-alpha.png); |
204 | 204 | // border-top: 5px solid $color; |
205 | - transition: background .2s; | |
205 | + transition: background-color .2s; | |
206 | 206 | |
207 | 207 | &:hover, |
208 | 208 | &:focus { |
... | ... | @@ -223,7 +223,7 @@ |
223 | 223 | span { |
224 | 224 | background: $color; |
225 | 225 | // background: $color url(images/black-alpha.png); |
226 | - transition: background .2s; | |
226 | + transition: background-color .2s; | |
227 | 227 | } |
228 | 228 | } |
229 | 229 | } | ... | ... |
sass/proposal_detail/_proposal-detail-base.scss
... | ... | @@ -104,7 +104,9 @@ |
104 | 104 | } |
105 | 105 | .go-to-proposal-button a { |
106 | 106 | background: $color; |
107 | - border-radius: 3px; | |
107 | + -webkit-border-radius: 6px; | |
108 | + -moz-border-radius: 6px; | |
109 | + border-radius: 6px; | |
108 | 110 | color: #fff; |
109 | 111 | display: block; |
110 | 112 | padding: 1em; |
... | ... | @@ -114,6 +116,12 @@ |
114 | 116 | .fa-reply { |
115 | 117 | margin-right: .7em; |
116 | 118 | } |
119 | + | |
120 | + transition: background-color .2s; | |
121 | + &:hover, | |
122 | + &:focus { | |
123 | + background-color: saturate( lighten($color, 5%), 10% ); | |
124 | + } | |
117 | 125 | } |
118 | 126 | .row { |
119 | 127 | margin-bottom: 1.5em; | ... | ... |