liquid_feedback_frontend
diff static/style.css @ 5:afd9f769c7ae
Version beta1
Final voting with Schulze-Method is now possible
Many bug fixes and code cleanup
Registration with invite codes
More sort and filter options
Seperated display of "supporters" and "potential supporters"
Optical changes
Flood limit / initiative contigent is now checked by frontend
Neccessary changes to access core beta11
Final voting with Schulze-Method is now possible
Many bug fixes and code cleanup
Registration with invite codes
More sort and filter options
Seperated display of "supporters" and "potential supporters"
Optical changes
Flood limit / initiative contigent is now checked by frontend
Neccessary changes to access core beta11
| author | bsw/jbe |
|---|---|
| date | Fri Dec 25 12:00:00 2009 +0100 (2009-12-25) |
| parents | 80c215dbf076 |
| children | 8d91bccab0bf |
line diff
1.1 --- a/static/style.css Thu Dec 10 12:00:00 2009 +0100 1.2 +++ b/static/style.css Fri Dec 25 12:00:00 2009 +0100 1.3 @@ -94,6 +94,7 @@ 1.4 } 1.5 1.6 .topbar a { 1.7 + background-color: #444; 1.8 color: #fff; 1.9 } 1.10 1.11 @@ -200,7 +201,7 @@ 1.12 } 1.13 1.14 .title a { 1.15 - color: #fff; 1.16 + color: #000; 1.17 } 1.18 1.19 .member_image_avatar { 1.20 @@ -220,7 +221,7 @@ 1.21 .actions a { 1.22 float: left; 1.23 display: block; 1.24 - padding: 0.5ex 0.5em 0.5ex 0.0em; 1.25 + padding: 1px 0.5em 1px 0.0em; 1.26 margin-right: 1em; 1.27 vertical-align: middle; 1.28 } 1.29 @@ -262,19 +263,20 @@ 1.30 margin-right: 1em; 1.31 } 1.32 1.33 -.interest .head_active { 1.34 - background-color: #dfd; 1.35 - border: 1px solid #8b8; 1.36 +.interest .head_active, 1.37 +.slot_support .head_potential_supporter { 1.38 + background-color: #fec; 1.39 + border: 1px solid #b96; 1.40 } 1.41 1.42 -.slot_support .head_active { 1.43 - background-color: #dfd; 1.44 +.slot_support .head_supporter { 1.45 + background-color: #dfc; 1.46 border: 1px solid #8b8; 1.47 } 1.48 1.49 .delegation .head_active { 1.50 - background-color: #ffd; 1.51 - border: 1px solid #bb8; 1.52 + background-color: #ddf; 1.53 + border: 1px solid #88b; 1.54 } 1.55 1.56 .vote_info .close { 1.57 @@ -389,44 +391,26 @@ 1.58 } 1.59 1.60 /************************************************************************* 1.61 + * ui.filter 1.62 * ui.order 1.63 */ 1.64 1.65 -.ui_filter_head { 1.66 +.ui_filter_head, 1.67 +.ui_order_head { 1.68 color: #777; 1.69 - float: left; 1.70 - margin-bottom: 1ex; 1.71 + margin-top: 1ex; 1.72 + margin-bottom: 1.5ex; 1.73 font-size: 75%; 1.74 } 1.75 1.76 -.ui_filter_head a { 1.77 - color: #777; 1.78 - padding: 0.5ex; 1.79 -} 1.80 - 1.81 -.ui_filter_head a.active{ 1.82 - color: #fff; 1.83 - background-color: #777; 1.84 - padding: 0.5ex; 1.85 -} 1.86 - 1.87 -/************************************************************************* 1.88 - * ui.order 1.89 - */ 1.90 - 1.91 -.ui_order_head { 1.92 - color: #777; 1.93 - text-align: right; 1.94 - margin-bottom: 1ex; 1.95 - font-size: 75%; 1.96 -} 1.97 - 1.98 +.ui_filter_head a, 1.99 .ui_order_head a { 1.100 color: #777; 1.101 padding: 0.5ex; 1.102 } 1.103 1.104 -.ui_order_head a.active{ 1.105 +.ui_filter_head a.active, 1.106 +.ui_order_head a.active { 1.107 color: #fff; 1.108 background-color: #777; 1.109 padding: 0.5ex; 1.110 @@ -643,7 +627,11 @@ 1.111 padding: 0.3ex 0.5em 0.3ex 0.5em; 1.112 } 1.113 1.114 - 1.115 +.suggestion_my_opinion a { 1.116 + white-space: nowrap; 1.117 + padding-left: 0.2ex !important; 1.118 + padding-right: 0.2ex !important; 1.119 +} 1.120 1.121 .active { 1.122 background-color: #444; 1.123 @@ -880,3 +868,53 @@ 1.124 margin-bottom: 2ex; 1.125 padding: 1ex; 1.126 } 1.127 + 1.128 + 1.129 +/************************************************************************* 1.130 + * Voting 1.131 + */ 1.132 + 1.133 +#voting { 1.134 + position: relative; 1.135 +} 1.136 +#voting .approval, .abstention, .disapproval { 1.137 + border: 2px black solid; 1.138 + margin-top: 5ex; 1.139 + margin-bottom: 5ex; 1.140 + padding: 1ex; 1.141 + padding-bottom: 2ex; 1.142 +} 1.143 +#voting .approval { 1.144 + background-color: #9f9; 1.145 +} 1.146 +#voting .approval .movable { 1.147 + background-color: #dfd; 1.148 +} 1.149 +#voting .abstention { 1.150 + background-color: #ccc; 1.151 +} 1.152 +#voting .abstention .movable { 1.153 + background-color: #eee; 1.154 +} 1.155 +#voting .disapproval { 1.156 + background-color: #f88; 1.157 +} 1.158 +#voting .disapproval .movable { 1.159 + background-color: #fbb; 1.160 +} 1.161 +#voting .cathead { 1.162 + font-weight: bold; 1.163 +} 1.164 +#voting .movable { 1.165 + position: relative; 1.166 + border: 1px black solid; 1.167 + margin: 1ex; 1.168 + padding: 0.5ex; 1.169 + cursor: pointer; 1.170 +} 1.171 +#voting .clickable { 1.172 + cursor: auto; 1.173 +} 1.174 +#voting a.clickable { 1.175 + cursor: pointer; 1.176 +}