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,7 +234,7 @@ | ||
234 | </div> | 234 | </div> |
235 | <div class="talk-proposal-container"> | 235 | <div class="talk-proposal-container"> |
236 | <div class="talk-proposal"> | 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 | <p>Confira as datas e horários disponíveis:</p> | 238 | <p>Confira as datas e horários disponíveis:</p> |
239 | <ul class="calendar" data-slick='{"infinite": false, "rows": 2}'> | 239 | <ul class="calendar" data-slick='{"infinite": false, "rows": 2}'> |
240 | <li> | 240 | <li> |
sass/_proposal_detail.scss
@@ -202,7 +202,7 @@ | @@ -202,7 +202,7 @@ | ||
202 | background: $color; | 202 | background: $color; |
203 | // background: $color url(images/black-alpha.png); | 203 | // background: $color url(images/black-alpha.png); |
204 | // border-top: 5px solid $color; | 204 | // border-top: 5px solid $color; |
205 | - transition: background .2s; | 205 | + transition: background-color .2s; |
206 | 206 | ||
207 | &:hover, | 207 | &:hover, |
208 | &:focus { | 208 | &:focus { |
@@ -223,7 +223,7 @@ | @@ -223,7 +223,7 @@ | ||
223 | span { | 223 | span { |
224 | background: $color; | 224 | background: $color; |
225 | // background: $color url(images/black-alpha.png); | 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,7 +104,9 @@ | ||
104 | } | 104 | } |
105 | .go-to-proposal-button a { | 105 | .go-to-proposal-button a { |
106 | background: $color; | 106 | background: $color; |
107 | - border-radius: 3px; | 107 | + -webkit-border-radius: 6px; |
108 | + -moz-border-radius: 6px; | ||
109 | + border-radius: 6px; | ||
108 | color: #fff; | 110 | color: #fff; |
109 | display: block; | 111 | display: block; |
110 | padding: 1em; | 112 | padding: 1em; |
@@ -114,6 +116,12 @@ | @@ -114,6 +116,12 @@ | ||
114 | .fa-reply { | 116 | .fa-reply { |
115 | margin-right: .7em; | 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 | .row { | 126 | .row { |
119 | margin-bottom: 1.5em; | 127 | margin-bottom: 1.5em; |