Commit 08ee532807f1fb9d9cf0b2997c1619e303168db6
1 parent
c38035a6
Exists in
master
and in
11 other branches
adjusting template
Showing
2 changed files
with
12 additions
and
27 deletions
Show diff stats
index.html
... | ... | @@ -76,7 +76,10 @@ |
76 | 76 | <div class='body'>{{body}}</div> |
77 | 77 | <div class='make-proposal-container'> |
78 | 78 | <div class='make-proposal'> |
79 | - <div class='title'>Faça Uma Proposta</div> | |
79 | + <div class='container-title'>Faça Uma Proposta</div> | |
80 | + <div class='subtitle'>Qual a sua sugestão para melhorar este programa?</div> | |
81 | + <div class='info'>Ela se tornará pública em até 24 horas após o envio e poderá ser apoiada por outros participantes.</div> | |
82 | + <div class='send-proposal-button'>Envie Sua Proposta</div> | |
80 | 83 | <form class='make-proposal-form' id='make-proposal-form-{{id}}'> |
81 | 84 | <div class="name"> |
82 | 85 | <div><label>Título</label></div> |
... | ... | @@ -88,7 +91,7 @@ |
88 | 91 | </div> |
89 | 92 | <input id='private_token' name='private_token' value='{{../private_token}}' type='hidden'> |
90 | 93 | <input id='content_type' name='content_type' value='ProposalsDiscussionPlugin::Proposal' type='hidden'> |
91 | - <input type='submit' id='make-proposal-button' class='make-proposal-button' name='make-proposal-button' value='Nova Proposta'> | |
94 | + <input type='submit' id='make-proposal-button' class='make-proposal-button' name='make-proposal-button' value='Enviar'> | |
92 | 95 | </form> |
93 | 96 | </div> |
94 | 97 | </div> |
... | ... | @@ -96,12 +99,12 @@ |
96 | 99 | </div> |
97 | 100 | <div class='experience-proposal-container'> |
98 | 101 | <div class='experience-proposal'> |
99 | - <div class='title'>Conte sua experiência</div> | |
102 | + <div class='container-title'>Conte sua experiência</div> | |
100 | 103 | </div> |
101 | 104 | </div> |
102 | 105 | <div class='talk-proposal-container'> |
103 | 106 | <div class='talk-proposal'> |
104 | - <div class='title'>Fale com o ministro</div> | |
107 | + <div class='container-title'>Fale com o ministro</div> | |
105 | 108 | </div> |
106 | 109 | </div> |
107 | 110 | </div> |
... | ... | @@ -111,7 +114,7 @@ |
111 | 114 | |
112 | 115 | <script id='support-proposal-template' type='text/x-handlebars-template'> |
113 | 116 | <div class='support-proposal'> |
114 | - <div class='title'> Apoie outras propostas</div> | |
117 | + <div class='container-title'> Apoie outras propostas</div> | |
115 | 118 | <div class='subtitle'> Propostas da sociedade</div> |
116 | 119 | <div class='abstract'><p>"{{abstract}}"</p></div> |
117 | 120 | <div class="vote-actions"> | ... | ... |
sass/_proposal_detail.scss
... | ... | @@ -21,16 +21,16 @@ |
21 | 21 | weight: bold; |
22 | 22 | } |
23 | 23 | } |
24 | - .clear{ | |
24 | + .conclear{ | |
25 | 25 | clear: both; |
26 | 26 | } |
27 | - .make-proposal-container{ | |
28 | - .title{ | |
27 | + .container-title{ | |
29 | 28 | color: $color; |
30 | 29 | font-weight: bolder; |
31 | 30 | font-size: x-large; |
32 | 31 | margin: 10px; |
33 | - } | |
32 | + } | |
33 | + .make-proposal-container{ | |
34 | 34 | .name { |
35 | 35 | margin-bottom: 15px; |
36 | 36 | } |
... | ... | @@ -63,12 +63,6 @@ |
63 | 63 | } |
64 | 64 | } |
65 | 65 | .support-proposal-container{ |
66 | - .title{ | |
67 | - color: $color; | |
68 | - font-weight: bolder; | |
69 | - font-size: x-large; | |
70 | - margin: 10px; | |
71 | - } | |
72 | 66 | width: 50%; |
73 | 67 | float: left; |
74 | 68 | height: 90%; |
... | ... | @@ -112,12 +106,6 @@ |
112 | 106 | } |
113 | 107 | } |
114 | 108 | .experience-proposal-container{ |
115 | - .title{ | |
116 | - color: $color; | |
117 | - font-weight: bolder; | |
118 | - font-size: x-large; | |
119 | - margin: 10px; | |
120 | - } | |
121 | 109 | float: left; |
122 | 110 | width: 50%; |
123 | 111 | height: 90%; |
... | ... | @@ -129,12 +117,6 @@ |
129 | 117 | } |
130 | 118 | } |
131 | 119 | .talk-proposal-container{ |
132 | - .title{ | |
133 | - color: $color; | |
134 | - font-weight: bolder; | |
135 | - font-size: x-large; | |
136 | - margin: 10px; | |
137 | - } | |
138 | 120 | width: 50%; |
139 | 121 | float: left; |
140 | 122 | height: 90%; | ... | ... |