liquid_feedback_frontend

annotate static/style.css @ 312:5e6bdf07e3a1

Some color and positioning changes again...
author bsw
date Mon Feb 27 16:19:11 2012 +0100 (2012-02-27)
parents 22e4e26717ac
children 56dc44366c38
rev   line source
bsw/jbe@0 1 /*************************************************************************
bsw/jbe@0 2 * Some global definitions
bsw/jbe@0 3 */
bsw/jbe@0 4
poelzi@147 5 body {
poelzi@147 6 background: #fff;
poelzi@147 7 }
poelzi@147 8
bsw/jbe@0 9 body, th, td {
bsw/jbe@0 10 font-family: sans-serif;
bsw/jbe@19 11 font-size: 15px;
bsw/jbe@0 12 font-size: 14px;
bsw/jbe@0 13 padding: 0;
bsw/jbe@0 14 margin: 0;
bsw/jbe@0 15 }
bsw/jbe@0 16
bsw/jbe@19 17 .area_list {
bsw@274 18 line-height: 140%;
bsw/jbe@19 19 }
bsw/jbe@19 20
bsw/jbe@0 21 body, a {
bsw/jbe@0 22 color: #000;
bsw/jbe@0 23 }
bsw/jbe@0 24
bsw/jbe@0 25 img {
bsw/jbe@0 26 border: none;
bsw/jbe@0 27 }
bsw/jbe@0 28
bsw/jbe@0 29 table {
bsw/jbe@0 30 border-collapse: collapse;
bsw/jbe@0 31 border: none;
bsw/jbe@0 32 }
bsw/jbe@0 33
bsw/jbe@0 34 td, th {
bsw@278 35 padding: 0.5ex 0.5em 0.5ex 0em;
bsw@2 36 }
bsw@2 37
bsw@2 38 td {
bsw/jbe@0 39 vertical-align: top;
bsw@2 40 }
bsw@2 41
bsw@2 42 th {
bsw@2 43 vertical-align: bottom;
bsw@2 44 font-weight: bold;
bsw/jbe@0 45 }
bsw/jbe@0 46
bsw/jbe@0 47 a.active {
bsw/jbe@0 48 color: #fff;
bsw/jbe@0 49 }
bsw/jbe@0 50
bsw@10 51 .revoked {
bsw@10 52 text-decoration: line-through;
bsw@10 53 }
bsw@10 54
bsw/jbe@0 55 .highlighted {
bsw/jbe@0 56 background-color: #fa7;
bsw/jbe@0 57 color: #000;
bsw/jbe@0 58 }
bsw/jbe@0 59
bsw/jbe@0 60 .admin_only {
bsw/jbe@0 61 font-style: italic;
bsw/jbe@0 62 }
bsw/jbe@0 63
bsw@2 64 a {
bsw/jbe@19 65 xvertical-align: middle;
bsw@2 66 }
bsw@2 67
bsw@9 68 h1 {
bsw@9 69 font-size: 150%;
bsw@9 70 }
bsw@9 71
bsw@9 72 h2 {
bsw@9 73 font-size: 125%;
bsw@9 74 }
bsw@9 75
poelzi@145 76 .inline {
poelzi@145 77 display: inline;
poelzi@145 78 }
bsw@9 79
bsw/jbe@0 80 /*************************************************************************
bsw/jbe@0 81 * Notices, warnings and errors
bsw/jbe@0 82 */
bsw/jbe@0 83
bsw/jbe@0 84 .layout_notice, .layout_error, .layout_warning {
bsw/jbe@0 85 background: #fff;
bsw/jbe@0 86 font-weight: bold;
bsw/jbe@0 87 line-height: 1.7em;
bsw/jbe@0 88 -moz-opacity:0.7;
bsw/jbe@0 89 }
bsw/jbe@0 90
bsw/jbe@0 91 .slot_notice, .slot_warning, .slot_error {
bsw/jbe@4 92 padding-left: 1em;
bsw/jbe@0 93 }
bsw/jbe@0 94
bsw/jbe@0 95 .slot_notice {
bsw/jbe@4 96 background-color: #cfc;
bsw/jbe@4 97 color: #040;
bsw/jbe@0 98 }
bsw/jbe@0 99
bsw/jbe@0 100 .slot_warning {
bsw/jbe@4 101 background-color: #fec;
bsw/jbe@4 102 color: #420;
bsw/jbe@0 103 }
bsw/jbe@0 104
bsw/jbe@0 105 .slot_error {
bsw/jbe@4 106 background-color: #fcc;
bsw/jbe@4 107 color: #400;
bsw/jbe@0 108 }
bsw/jbe@0 109
bsw/jbe@0 110 /*************************************************************************
bsw/jbe@0 111 * Navigation, search and language chooser bar
bsw/jbe@0 112 */
bsw/jbe@0 113
bsw/jbe@0 114 .topbar {
bsw@278 115 background-color: #000;
bsw@278 116 background: -webkit-gradient(linear, left top, left bottom,
bsw@278 117 color-stop(0%, #888), color-stop(25%,#333)
bsw@278 118 );
bsw/jbe@0 119 color: #fff;
bsw@273 120 font-size: 90%;
bsw@274 121 line-height: 100%;
bsw@273 122 padding-left: 10px;
bsw@277 123 overflow: hidden;
bsw@273 124 }
bsw@273 125
bsw@273 126 .topbar .logolf {
bsw@273 127 font-weight: bold;
bsw/jbe@0 128 }
bsw/jbe@0 129
bsw/jbe@0 130 .topbar a {
bsw/jbe@0 131 color: #fff;
bsw/jbe@0 132 }
bsw/jbe@0 133
bsw/jbe@0 134 .topbar a:hover {
bsw/jbe@0 135 background-color: #fff;
bsw/jbe@0 136 color: #000;
bsw/jbe@0 137 }
bsw/jbe@0 138
bsw/jbe@0 139 .navigation,
bsw/jbe@0 140 .logout_button {
bsw@274 141 line-height: 200%;
bsw/jbe@0 142 }
bsw/jbe@0 143
bsw/jbe@0 144 .navigation img,
bsw/jbe@0 145 .logout_button img {
bsw/jbe@0 146 margin-right: 0.5em;
bsw/jbe@0 147 vertical-align: middle;
bsw/jbe@0 148 }
bsw/jbe@0 149
bsw/jbe@0 150 .navigation a,
bsw/jbe@0 151 .logout_button a {
bsw/jbe@0 152 padding: 1ex;
bsw/jbe@0 153 }
bsw/jbe@0 154
bsw@250 155 form.unit_selector {
bsw@250 156 display: inline;
bsw@250 157 }
bsw@250 158
bsw/jbe@0 159 .logout_button {
bsw/jbe@0 160 float: right;
bsw/jbe@0 161 }
bsw/jbe@0 162
bsw/jbe@0 163 .searchbox {
bsw/jbe@19 164 margin: 0;
bsw/jbe@19 165 padding: 0.1ex 1em 0ex 1em;
bsw/jbe@0 166 float: right;
bsw/jbe@0 167 line-height: 250%;
bsw/jbe@0 168 }
bsw/jbe@0 169
bsw/jbe@19 170 .searchbox form {
bsw/jbe@19 171 float: left;
bsw@277 172 margin: 0px;
bsw/jbe@19 173 }
bsw/jbe@19 174
bsw/jbe@0 175 .searchbox div {
bsw/jbe@0 176 display: inline;
bsw/jbe@0 177 }
bsw/jbe@0 178
bsw/jbe@0 179 .searchbox select {
bsw/jbe@0 180 margin-left: 0.3em;
bsw/jbe@0 181 margin-right: 0.4em;
bsw/jbe@0 182 font-size: 100%;
bsw/jbe@0 183 width: 8em;
bsw/jbe@0 184 }
bsw/jbe@0 185
bsw/jbe@0 186 .searchbox input[type=text] {
bsw/jbe@0 187 width: 8em;
bsw/jbe@0 188 padding: 0.25ex 0.25em 0.25ex 0.25em;
bsw/jbe@0 189 margin-right: 0.5em;
bsw/jbe@0 190 font-size: 100%;
bsw/jbe@0 191 }
bsw/jbe@0 192
bsw/jbe@0 193 .searchbox input[type=submit] {
bsw/jbe@0 194 font-size: 100%;
bsw/jbe@0 195 }
bsw/jbe@0 196
bsw/jbe@0 197 /*************************************************************************
bsw/jbe@0 198 * Title of current page including path and actions
bsw/jbe@0 199 */
bsw/jbe@0 200
bsw@277 201 .title {
bsw@277 202 background-color: #ddd;
bsw@271 203 background: -webkit-gradient(linear, left top, left bottom,
bsw@312 204 color-stop(15%,#ddd), color-stop(50%,#fff)
bsw@274 205 );
bsw@277 206 text-shadow: #fff 0px 0px 3px;
bsw/jbe@0 207 color: #000;
bsw@280 208 padding: 1.5ex 1em 0 1em;
bsw/jbe@0 209 }
bsw/jbe@0 210
bsw/jbe@0 211 .title div {
bsw@271 212 font-size: 125%;
bsw/jbe@0 213 line-height: 110%;
bsw/jbe@0 214 }
bsw/jbe@0 215
bsw/jbe@0 216 .title a {
bsw/jbe@5 217 color: #000;
bsw/jbe@0 218 }
bsw/jbe@0 219
bsw@280 220 .title .member_image {
bsw@280 221 margin-right: 0.7em;
bsw@280 222 vertical-align: middle;
bsw@280 223 border-radius: 7px;
bsw@280 224 }
bsw@280 225
bsw@277 226 .slot_title2 {
bsw@312 227 padding: 1ex 1em 0 1em;
bsw@277 228 }
bsw@277 229
bsw@277 230 .initiatives_list {
bsw@277 231 clear: left;
bsw@312 232 }
bsw@312 233
bsw@312 234 .slot_initiatives_list {
bsw@312 235 border-top: 1px solid #aaa;
bsw@312 236 border-bottom: 1px solid #aaa;
bsw@312 237 padding-top: 1ex;
bsw@312 238 padding-bottom: 1ex;
bsw@271 239 }
bsw@271 240
bsw@280 241 .member_list .member_image_avatar {
bsw/jbe@0 242 float: left;
bsw/jbe@0 243 margin-right: 0.5em;
bsw/jbe@0 244 }
bsw/jbe@0 245
bsw@274 246 .micro_avatar {
bsw@274 247 width: 24px;
bsw@274 248 height: 24px;
bsw@274 249 border-radius: 4px;
bsw@280 250 vertical-align: middle;
bsw@274 251 }
bsw@274 252
bsw/jbe@0 253 .actions {
bsw/jbe@0 254 font-size: 75%;
bsw/jbe@4 255 line-height: 220%;
bsw@280 256 margin-top: 2ex;
bsw@277 257 margin-bottom: 2ex;
bsw/jbe@0 258 }
bsw/jbe@0 259
bsw@277 260 .interest {
bsw@277 261 margin-left: 1.33em;
bsw@277 262 margin-bottom: 1.33ex;
bsw@277 263 }
bsw@277 264
bsw@277 265 .slot_actions .interest {
bsw@277 266 margin-left: 0em;
bsw/jbe@0 267 }
bsw/jbe@0 268
bsw/jbe@0 269 .actions a {
bsw/jbe@0 270 margin-right: 1em;
bsw@271 271 border-radius: 5px;
bsw@277 272 padding-right: 0.3em;
bsw/jbe@0 273 }
bsw/jbe@0 274
bsw@272 275 .slot_initiative_head {
bsw@274 276 background: -webkit-gradient(linear, left top, left bottom,
bsw@286 277 color-stop(0%,#e7e7e7), color-stop(66%,#fff));
bsw@272 278 padding-left: 1em;
bsw@312 279 padding-top: 1ex;
bsw@274 280 text-shadow: #fff 0px 0px 3px;
bsw@272 281 }
bsw@272 282
bsw@272 283 .initiative_name {
bsw@272 284 font-weight: bold;
bsw@272 285 font-size: 125%;
bsw@272 286 }
bsw@272 287
poelzi@127 288 .content_navigation {
poelzi@127 289 font-size: 75%;
poelzi@127 290 background-color: #eee;
poelzi@127 291 margin-bottom: 2ex;
poelzi@127 292 padding-left: 1em;
poelzi@127 293 }
poelzi@127 294
poelzi@127 295 .content_navigation div,
poelzi@127 296 .content_navigation a {
poelzi@127 297 display: inline-block;
poelzi@127 298 padding: 3px 0.5em 3px 0.0em;
poelzi@127 299 margin-right: 1em;
poelzi@127 300 vertical-align: middle;
poelzi@127 301 }
poelzi@127 302
poelzi@130 303 .content_navigation a:hover {
poelzi@130 304 background-color: #d7d7d7;
poelzi@130 305 }
poelzi@130 306
poelzi@150 307 .content_navigation_seperator {
poelzi@150 308 height: 1.4em;
poelzi@150 309 border-left: 1px solid black;
poelzi@150 310 }
poelzi@150 311
bsw@277 312
bsw@277 313 .actions a {
bsw@277 314 float: left;
bsw@277 315 }
bsw@277 316
bsw/jbe@0 317 .actions a:hover {
bsw/jbe@0 318 background-color: #d7d7d7;
bsw/jbe@0 319 }
bsw/jbe@0 320
bsw/jbe@0 321 .actions img {
bsw/jbe@0 322 padding-left: 0.2em;
bsw/jbe@0 323 padding-right: 0.2em;
bsw/jbe@4 324 vertical-align: middle;
bsw/jbe@4 325 }
bsw/jbe@4 326
bsw/jbe@4 327 .logo {
bsw/jbe@4 328 float: right;
bsw/jbe@4 329 margin-right: 1em;
bsw/jbe@0 330 }
bsw/jbe@0 331
poelzi@127 332
bsw@286 333 .member_image_photo {
bsw@286 334 border-radius: 8px;
bsw@286 335 }
poelzi@127 336
bsw/jbe@0 337 /*************************************************************************
bsw@2 338 * vote info / delegation
bsw@2 339 */
bsw@2 340
bsw/jbe@4 341 .interest,
bsw@2 342 .slot_support,
bsw@242 343 .delegation {
bsw@2 344 float: left;
bsw/jbe@4 345 position: relative;
bsw/jbe@19 346 z-index: 1;
bsw/jbe@4 347 }
bsw/jbe@4 348
bsw/jbe@4 349 .interest img,
bsw/jbe@4 350 .slot_support img,
bsw@242 351 .delegation img {
bsw/jbe@4 352 padding-left: 0.2em;
bsw/jbe@4 353 padding-right: 0.2em;
bsw/jbe@4 354 }
bsw@277 355 .actions .supporter,
bsw@278 356 .actions .potential_supporter,
bsw/jbe@4 357 .vote_info .head {
bsw/jbe@4 358 float: left;
bsw@2 359 margin-right: 1em;
bsw@2 360 }
bsw@2 361
bsw@277 362 .actions .supporter,
bsw@278 363 .actions .potential_supporter,
bsw@277 364 .actions .interest .head {
bsw@277 365 padding-right: 0.3em;
bsw@277 366 }
bsw@277 367
bsw@280 368 .delegation .head_active,
bsw/jbe@5 369 .interest .head_active,
bsw@280 370 .actions .supporter,
bsw@277 371 .actions .potential_supporter {
bsw@289 372 border-radius: 5px;
bsw@289 373 }
bsw@289 374
bsw@289 375 .delegation .head_active,
bsw@292 376 .interest .head_active {
bsw@280 377 background-color: #cdf;
bsw@289 378 }
bsw@289 379
bsw@289 380 .actions .supporter {
bsw@292 381 background-color: #cdf;
bsw@289 382 }
bsw@289 383
bsw@289 384 .actions .potential_supporter {
bsw@292 385 background-color: #cdf;
bsw/jbe@4 386 }
bsw/jbe@4 387
bsw@10 388 .slot_support .head_initiator {
bsw@10 389 background-color: #eee;
bsw@273 390 border-radius: 5px;
bsw@2 391 }
bsw@2 392
bsw/jbe@19 393 .delegation .change_delegation {
bsw/jbe@19 394 margin-bottom: 2ex;
bsw/jbe@19 395 }
bsw/jbe@19 396
bsw/jbe@19 397 .delegation .change_delegation a {
bsw/jbe@19 398 display: inline;
bsw/jbe@19 399 float: none;
bsw/jbe@19 400 padding: 1ex;
bsw/jbe@19 401 }
bsw/jbe@19 402
bsw/jbe@19 403 .delegation .delegation_participation {
bsw/jbe@19 404 margin-left: 20.5em;
bsw/jbe@19 405 margin-top: 3ex;
bsw/jbe@19 406 font-style: italic;
bsw/jbe@19 407 font-size: 80%;
bsw/jbe@19 408 }
bsw/jbe@19 409
bsw@275 410 .slot_actions .change_delegation {
bsw@275 411 float: left;
bsw@275 412 }
bsw@275 413
bsw@2 414 .vote_info .close {
bsw/jbe@4 415 position: absolute;
bsw/jbe@4 416 top: 0;
bsw/jbe@4 417 right: 0;
bsw@2 418 padding: 1ex;
bsw/jbe@4 419 display: block;
bsw@2 420 }
bsw@2 421
bsw@2 422 .vote_info .content {
bsw/jbe@4 423 font-size: 133%;
bsw/jbe@4 424 line-height: 100%;
bsw@277 425 top: 2.8ex;
bsw@2 426 display: none;
bsw@2 427 position: absolute;
bsw@2 428 z-index: 10;
bsw@280 429 background-color: #cdf;
bsw@277 430 border-radius: 0 5px 5px 5px;
bsw@2 431 padding: 1em;
bsw/jbe@19 432 width: 35em;
bsw@2 433 }
bsw@2 434
bsw@2 435 .vote_info .delegation_arrow {
bsw@2 436 margin-top: 1ex;
bsw@2 437 margin-bottom: 1ex;
bsw@2 438 vertical-align: middle;
bsw@2 439 }
bsw@2 440
bsw/jbe@4 441 .vote_info .delegation_arrow_overridden {
bsw/jbe@4 442 opacity: 0.4;
bsw/jbe@4 443 }
bsw/jbe@4 444
bsw/jbe@4 445 .vote_info .delegation_scope_overridden {
bsw/jbe@4 446 color: #777;
bsw/jbe@4 447 }
bsw/jbe@4 448
bsw@2 449 .vote_info .delegation_scope {
bsw@2 450 display: inline;
bsw@2 451 }
bsw@2 452
bsw@2 453 .vote_info .delegation_info {
bsw@2 454 }
bsw@2 455
bsw@280 456 .vote_info a {
bsw@280 457 padding-right: 0;
bsw@280 458 }
bsw@280 459
bsw@2 460 .vote_info .member_thumb {
bsw@2 461 clear: left;
bsw@277 462 background: #fff;
bsw@2 463 }
bsw@2 464
bsw/jbe@4 465 .delegation_overridden .member_thumb {
bsw/jbe@4 466 opacity: 0.4;
bsw/jbe@4 467 }
bsw/jbe@4 468
bsw@2 469 .delegation .revoke {
bsw@2 470 margin: 0.5ex;
bsw/jbe@4 471 float: right;
bsw@2 472 }
bsw@2 473
bsw@2 474 .delegation .revoke img {
bsw@2 475 vertical-align: middle;
bsw@2 476 }
bsw@2 477
bsw/jbe@4 478
bsw@2 479 /*************************************************************************
bsw/jbe@0 480 * Main content
bsw/jbe@0 481 */
bsw/jbe@0 482
bsw/jbe@0 483 .main {
bsw/jbe@0 484 margin-left: 1em;
bsw/jbe@0 485 margin-right: 1em;
bsw/jbe@0 486 }
bsw/jbe@0 487
bsw/jbe@0 488 /*************************************************************************
bsw/jbe@0 489 * ui.tab
bsw/jbe@0 490 */
bsw/jbe@0 491
bsw/jbe@0 492 .ui_tabs_links {
bsw@271 493 margin-top: 2ex;
bsw@277 494 margin-bottom: 1ex;
bsw/jbe@0 495 font-size: 75%;
bsw/jbe@0 496 }
bsw/jbe@0 497
bsw/jbe@0 498 .ui_tabs_links a {
bsw/jbe@0 499 padding: 1ex;
bsw@271 500 line-height: 300%;
bsw/jbe@0 501 background-color: #e7e7e7;
bsw/jbe@4 502 white-space: nowrap;
bsw@271 503 border-radius: 5px;
bsw@271 504 margin-right: 5px;
bsw@271 505 font-weight: bold;
bsw/jbe@0 506 }
bsw/jbe@0 507
bsw/jbe@0 508 .ui_tabs_links a:hover {
bsw/jbe@0 509 background-color: #d7d7d7;
bsw/jbe@0 510 }
bsw/jbe@0 511
bsw/jbe@0 512 .ui_tabs_links a.selected {
bsw/jbe@0 513 background-color: #444;
bsw/jbe@0 514 color: #fff;
bsw/jbe@0 515 text-decoration: none;
bsw/jbe@0 516 padding: 1ex;
bsw/jbe@0 517 }
bsw/jbe@0 518
bsw/jbe@0 519 .ui_tabs_content {
bsw@271 520 xborder: 1px solid #444;
bsw@271 521 xpadding: 1ex 1ex 1ex 1ex;
bsw/jbe@0 522 }
bsw/jbe@0 523
bsw@57 524 .ui_tabs_links a.yellow {
bsw@280 525 background-color: #fcc;
bsw@57 526 color: #000;
bsw@57 527 }
bsw/jbe@19 528
bsw@57 529 .ui_tabs_links a.yellow:hover {
bsw@280 530 background-color: #faa;
bsw@57 531 }
bsw@57 532
bsw@57 533 .ui_tabs_links a.yellow.selected {
bsw@280 534 background-color: #a44;
bsw@57 535 color: #fff;
bsw@57 536 text-decoration: none;
bsw@57 537 padding: 1ex;
bsw@57 538 }
bsw@57 539
poelzi@151 540 .ui_tabs_links a.red {
poelzi@151 541 background-color: #c33;
poelzi@151 542 color: #000;
poelzi@151 543 }
poelzi@151 544
poelzi@151 545 .ui_tabs_links a.red:hover {
poelzi@151 546 background-color: #ebb;
poelzi@151 547 }
poelzi@151 548
poelzi@151 549 .ui_tabs_links a.red.selected {
poelzi@151 550 background-color: #644;
poelzi@151 551 color: #fff;
poelzi@151 552 text-decoration: none;
poelzi@151 553 padding: 1ex;
poelzi@151 554 }
poelzi@151 555
poelzi@151 556
bsw/jbe@0 557 /*************************************************************************
bsw/jbe@19 558 * ui.filters
bsw/jbe@0 559 */
bsw/jbe@0 560
bsw@275 561 .ui_filter {
bsw@275 562 overflow: hidden;
bsw@276 563 margin-bottom: 1ex;
bsw@275 564 }
bsw@275 565
bsw/jbe@19 566 .ui_filter_closed_head,
bsw/jbe@19 567 .ui_filter_head {
bsw@2 568 color: #777;
bsw/jbe@5 569 margin-top: 1ex;
bsw/jbe@5 570 margin-bottom: 1.5ex;
bsw@2 571 font-size: 75%;
bsw@275 572 float: left;
bsw@275 573 }
bsw@275 574
bsw@275 575 .ui_filter_head {
bsw@275 576 margin-right: 2em;
bsw@2 577 }
bsw@2 578
bsw/jbe@19 579 .ui_filter_head a {
bsw/jbe@0 580 color: #777;
bsw/jbe@0 581 padding: 0.5ex;
bsw@275 582 margin-right: 0.2em;
bsw/jbe@0 583 }
bsw/jbe@0 584
bsw/jbe@19 585 .ui_filter_head a.active {
bsw/jbe@0 586 color: #fff;
bsw/jbe@0 587 background-color: #777;
bsw/jbe@0 588 padding: 0.5ex;
bsw@275 589 border-radius: 5px;
bsw/jbe@0 590 }
bsw/jbe@0 591
bsw/jbe@0 592 /*************************************************************************
bsw/jbe@0 593 * ui.paginate
bsw/jbe@0 594 */
bsw/jbe@0 595
bsw@11 596 .ui_paginate_head {
bsw@275 597 display: none;
bsw@11 598 margin-bottom: 1ex;
bsw@11 599 }
bsw@11 600
bsw@11 601 .ui_paginate_foot {
bsw@11 602 margin-top: 1ex;
bsw@11 603 }
bsw@11 604
bsw/jbe@0 605 .ui_paginate_select a {
bsw@275 606 padding: 0.5em;
bsw/jbe@0 607 }
bsw/jbe@0 608
bsw/jbe@0 609 /*************************************************************************
bsw/jbe@0 610 * ui.bargraph
bsw/jbe@0 611 */
bsw/jbe@0 612
bsw/jbe@0 613 .bargraph {
bsw/jbe@19 614 width: 103px;
bsw/jbe@19 615 }
bsw/jbe@19 616
bsw/jbe@19 617 .bargraph50 {
bsw/jbe@19 618 width: 52px;
bsw/jbe@0 619 }
bsw/jbe@0 620
bsw/jbe@0 621 .bargraph div {
bsw/jbe@0 622 float: left;
bsw/jbe@0 623 margin-top: 0.5ex;
bsw@2 624 height: 1.3ex;
bsw/jbe@0 625 }
bsw/jbe@0 626
bsw/jbe@4 627 .bargraph_legend {
bsw/jbe@4 628 margin-top: 2ex;
bsw/jbe@4 629 }
bsw/jbe@4 630
bsw/jbe@4 631 .bargraph_legend .bargraph {
bsw/jbe@4 632 width: 26px;
bsw/jbe@4 633 }
bsw/jbe@4 634
bsw/jbe@4 635 .bargraph_legend div,
bsw/jbe@4 636 .bargraph_legend div div,
bsw/jbe@4 637 .bargraph_legend div div div {
bsw/jbe@4 638 float: left;
bsw/jbe@4 639 }
bsw/jbe@4 640
bsw/jbe@4 641 .bargraph_legend_label {
bsw/jbe@4 642 margin-left: 0.5em;
bsw/jbe@4 643 margin-right: 1em;
bsw/jbe@4 644 }
bsw/jbe@4 645
bsw/jbe@0 646 /*************************************************************************
bsw/jbe@0 647 * vertical ui.form
bsw/jbe@0 648 */
bsw/jbe@0 649
bsw/jbe@0 650 .login input[type=text],
bsw/jbe@0 651 .vertical input[type=text],
bsw/jbe@0 652 .login input[type=password],
bsw/jbe@0 653 .vertical input[type=password],
bsw/jbe@0 654 .vertical textarea,
bsw/jbe@0 655 .vertical select {
bsw/jbe@0 656 font-family: sans-serif;
bsw/jbe@0 657 font-size: 100%;
bsw@2 658 width: 50em;
bsw/jbe@0 659 border: 1px solid #444;
bsw/jbe@0 660 padding: 0.2ex 0.2em 0.2ex 0.2em;
bsw/jbe@0 661 margin-bottom: 1ex;
bsw/jbe@0 662 }
bsw/jbe@0 663
bsw/jbe@0 664 .login input[type=password],
bsw/jbe@0 665 .vertical input[type=password] {
bsw/jbe@0 666 width: 16em;
bsw/jbe@0 667 }
bsw/jbe@0 668
bsw/jbe@0 669 .vertical select {
bsw/jbe@0 670 padding-right: 0;
bsw/jbe@0 671 }
bsw/jbe@0 672
bsw/jbe@0 673 .login .ui_field_label,
bsw/jbe@0 674 .vertical .ui_field_label {
bsw/jbe@0 675 text-transform: uppercase;
bsw/jbe@0 676 font-size: 70%;
bsw/jbe@4 677 line-height: 120%;
bsw/jbe@0 678 font-weight: bold;
bsw/jbe@0 679 color: #777;
bsw/jbe@0 680 width: 15em;
bsw/jbe@0 681 display: block;
bsw/jbe@0 682 float: left;
bsw/jbe@0 683 clear: left;
bsw/jbe@0 684 text-align: right;
bsw/jbe@0 685 padding-right: 0.5em;
bsw/jbe@0 686 }
bsw/jbe@0 687
bsw@11 688 .ui_field_label.label_right {
bsw@11 689 text-align: left;
bsw@11 690 width: auto;
bsw@11 691 }
bsw@11 692
bsw/jbe@0 693 .login input[type=text],
bsw/jbe@0 694 .login input[type=password] {
bsw/jbe@0 695 width: 10em;
bsw/jbe@0 696 }
bsw/jbe@0 697
bsw/jbe@0 698 .login div,
bsw/jbe@0 699 .vertical div {
bsw/jbe@0 700 clear: left;
bsw/jbe@0 701 }
bsw/jbe@0 702
bsw/jbe@0 703 .vertical span {
bsw/jbe@0 704 display: block;
bsw/jbe@0 705 margin-bottom: 0.5ex;
bsw/jbe@0 706 }
bsw/jbe@0 707
bsw/jbe@0 708 .vertical span:after {
bsw/jbe@0 709 content: " ";
bsw/jbe@0 710 }
bsw/jbe@0 711
bsw/jbe@0 712 .vertical span span {
bsw/jbe@0 713 display: inline;
bsw/jbe@0 714 margin-bottom: 0;
bsw/jbe@0 715 }
bsw/jbe@0 716
bsw/jbe@0 717 .login input[type=submit],
bsw/jbe@0 718 .vertical input[type=submit] {
bsw/jbe@0 719 font-size: 100%;
bsw/jbe@0 720 margin-left: 11em;
bsw/jbe@0 721 background-color: #444444;
bsw/jbe@0 722 color: #fff;
bsw/jbe@0 723 border: none;
bsw/jbe@0 724 padding: 0.75ex;
bsw/jbe@0 725 }
bsw/jbe@0 726
bsw/jbe@0 727 .login input[type=submit]:hover,
bsw/jbe@0 728 .vertical input[type=submit]:hover {
bsw/jbe@0 729 background-color: #444444;
bsw/jbe@0 730 }
bsw/jbe@0 731
bsw/jbe@0 732 /*************************************************************************
bsw/jbe@0 733 * Tables
bsw/jbe@0 734 */
bsw/jbe@0 735
bsw/jbe@0 736
bsw/jbe@0 737 table a.action {
bsw/jbe@0 738 font-size: 70%;
bsw/jbe@0 739 line-height: 190%;
bsw/jbe@0 740 padding: 0.5ex;
bsw/jbe@0 741 color: #777;
bsw/jbe@0 742 }
bsw/jbe@0 743
bsw/jbe@0 744 table a.active {
bsw/jbe@0 745 color: #fff;
bsw/jbe@0 746 }
bsw/jbe@0 747
bsw/jbe@0 748 th {
bsw/jbe@0 749 text-align: left;
bsw/jbe@0 750 }
bsw/jbe@0 751
bsw/jbe@0 752 tr:hover td {
bsw/jbe@0 753 background-color: #ddd;
bsw/jbe@0 754 }
bsw/jbe@0 755
bsw@11 756 .nohover tr:hover td {
bsw@11 757 background-color: #fff;
bsw@11 758 }
bsw@11 759
bsw@11 760 .nohover table tr:hover td {
bsw@11 761 background-color: #ddd;
bsw@11 762 }
bsw@11 763
bsw/jbe@0 764
bsw/jbe@0 765 tr table tr:hover td {
bsw/jbe@0 766 background-color: #fff;
bsw/jbe@0 767 }
bsw/jbe@0 768
bsw/jbe@0 769
bsw/jbe@0 770 /*************************************************************************
bsw/jbe@0 771 * Positive / Negtive votes
bsw/jbe@0 772 */
bsw/jbe@0 773
bsw/jbe@0 774
bsw/jbe@0 775 .positive_votes span {
bsw/jbe@0 776 display: inline;
bsw/jbe@0 777 }
bsw/jbe@0 778
bsw/jbe@0 779 .positive_votes {
bsw/jbe@0 780 display: inline;
bsw/jbe@0 781 background-color: #cfc;
bsw/jbe@0 782 padding: 0.3ex 0.5em 0.3ex 0.5em;
bsw/jbe@0 783 }
bsw/jbe@0 784
bsw/jbe@0 785 .negative_votes span {
bsw/jbe@0 786 display: inline;
bsw/jbe@0 787 }
bsw/jbe@0 788
bsw/jbe@0 789 .negative_votes {
bsw/jbe@0 790 display: inline;
bsw/jbe@0 791 background-color: #fcc;
bsw/jbe@0 792 padding: 0.3ex 0.5em 0.3ex 0.5em;
bsw/jbe@0 793 }
bsw/jbe@0 794
bsw/jbe@19 795 .suggestion_my_opinion a,
bsw/jbe@19 796 .suggestion_my_opinion span {
bsw/jbe@5 797 white-space: nowrap;
bsw/jbe@5 798 padding-left: 0.2ex !important;
bsw/jbe@5 799 padding-right: 0.2ex !important;
bsw/jbe@5 800 }
bsw/jbe@0 801
bsw/jbe@0 802 .active {
bsw/jbe@0 803 background-color: #444;
bsw/jbe@0 804 color: #fff;
bsw/jbe@0 805 }
bsw/jbe@0 806
bsw/jbe@0 807 .active_red2 { background-color: #a00; color: #fff !important; }
bsw/jbe@0 808 .active_red1 { background-color: #f88; color: #000 !important; }
bsw/jbe@0 809 .active_green1 { background-color: #8f8; color: #000 !important; }
bsw/jbe@0 810 .active_green2 { background-color: #0a0; color: #000 !important; }
bsw/jbe@0 811
bsw/jbe@0 812
bsw/jbe@0 813
bsw/jbe@0 814
bsw/jbe@0 815 /*************************************************************************
bsw/jbe@0 816 * Issues
bsw/jbe@0 817 */
bsw/jbe@0 818
bsw@273 819 .issues .issue {
bsw@273 820 overflow: hidden;
bsw@273 821 margin-bottom: 2ex;
bsw@273 822 border-radius: 8px;
bsw@273 823 }
bsw@273 824
bsw@273 825 .issues .issue .issue_info {
bsw@273 826 padding: 1ex;
bsw@273 827 line-height: 140%;
bsw@274 828 background: -webkit-gradient(linear, left top, left bottom,
bsw@280 829 color-stop(0%,#e7e7e7), color-stop(66%,#fff));
bsw@274 830 }
bsw@274 831
bsw@289 832 .issues .issue.interested .issue_info,
bsw@289 833 .issues .issue.interested_by_delegation .issue_info {
bsw@274 834 background: -webkit-gradient(linear, left top, left bottom,
bsw@292 835 color-stop(0%,#cdf), color-stop(66%,#fff));
bsw@273 836 }
bsw@273 837
bsw@273 838 .issues .issue .issue_info .issue_id {
bsw@273 839 font-size: 125%;
bsw@273 840 }
bsw@273 841
bsw@286 842 .issues .issue .issue_policy_info {
bsw@286 843 font-style: italic;
bsw@286 844 }
bsw@286 845
bsw@285 846 .issues .issue .interest_by_delegation {
bsw@285 847 float: right;
bsw@285 848 }
bsw@285 849
bsw@273 850 .issues .issue .initiative_list a {
bsw@273 851 font-weight: bold;
bsw@273 852 }
bsw@273 853
bsw@273 854 .issue_initiative_list a {
bsw@273 855 font-weight: bold;
bsw/jbe@0 856 }
bsw/jbe@0 857
bsw@274 858 .more_initiatives_link {
bsw@280 859 margin-left: 166px;
bsw@274 860 font-style: italic;
bsw@274 861 }
bsw@274 862
bsw/jbe@0 863 .issues tr tr {
bsw@2 864 border: none;
bsw@273 865 background: none;
bsw/jbe@0 866 }
bsw/jbe@0 867
bsw@274 868 .initiative_link.selected {
bsw@274 869 font-weight: bold;
bsw@274 870 }
bsw@274 871
bsw@312 872 x.initiative_link.supported {
bsw@292 873 background-color: #cdf;
bsw@289 874 border-radius: 5px;
bsw@289 875 }
bsw@289 876
bsw@312 877 x.initiative_link.potentially_supported {
bsw@292 878 background-color: #cdf;
bsw@274 879 border-radius: 5px;
bsw@274 880 }
bsw@274 881
bsw/jbe@0 882 .lang_chooser {
bsw/jbe@0 883 float: right;
bsw/jbe@0 884 margin-right: 0.5em;
bsw/jbe@0 885 }
bsw@2 886
bsw@2 887 .delegation_list_entry {
bsw@2 888 margin-right: 2em;
bsw@2 889 margin-bottom: 2ex;
bsw@2 890 float: left;
bsw@2 891 clear: left;
bsw@2 892 }
bsw@2 893
bsw@2 894 .delegation_list_entry .delegation_arrow {
bsw@2 895 float: left;
bsw@2 896 }
bsw@2 897
bsw@2 898 .delegation_list_entry .delegation_scope {
bsw@2 899 float: left;
bsw@2 900 width: 25em;
bsw@2 901 }
bsw@2 902
bsw@2 903 .delegation_list_entry .delegation_scope a {
bsw@2 904 display: block;
bsw@2 905 }
bsw@2 906
bsw@2 907 .member_list .member_thumb {
bsw@2 908 float: left;
bsw@2 909 margin-right: 1em;
bsw@2 910 margin-bottom: 2ex;
bsw@2 911 }
bsw@2 912
bsw@2 913 .member_thumb {
bsw@2 914 text-decoration: none;
bsw@32 915 width: 14.5em;
bsw/jbe@4 916 height: 48px;
bsw@2 917 display: block;
bsw@2 918 float: left;
bsw@280 919 background-color: #eee;
bsw/jbe@4 920 overflow: hidden;
bsw/jbe@4 921 position: relative;
bsw@273 922 border-radius: 7px;
bsw@280 923 padding: 2px;
bsw/jbe@4 924 }
bsw/jbe@4 925
bsw@280 926 .xmember_thumb a {
bsw/jbe@4 927 position: absolute;
bsw/jbe@4 928 top: 0;
bsw/jbe@4 929 left: 0;
bsw/jbe@4 930 padding: 0;
bsw/jbe@4 931 margin: 0;
bsw@2 932 }
bsw@2 933
bsw@3 934 .member_thumb a:hover div {
bsw@3 935 background-color: #444;
bsw@3 936 color: #fff;
bsw@3 937 }
bsw@3 938
bsw@2 939 .member_thumb img {
bsw/jbe@4 940 padding: 0;
bsw/jbe@4 941 margin: 0;
bsw@2 942 vertical-align: bottom;
bsw@280 943 border-radius: 7px;
bsw@2 944 }
bsw@2 945
bsw@2 946 .member_thumb div {
bsw/jbe@4 947 }
bsw/jbe@4 948
bsw/jbe@4 949 .member_thumb .member_image {
bsw@3 950 }
bsw@3 951
bsw@3 952 .member_thumb .member_name {
bsw/jbe@4 953 position: absolute;
bsw@280 954 left: 56px;
bsw/jbe@4 955 top: 2ex;
bsw/jbe@4 956 font-size: 100%;
bsw/jbe@4 957 width: 14em;
bsw@2 958 }
bsw@2 959
bsw@3 960 .member_thumb .flags {
bsw/jbe@19 961 text-align: right;
bsw@3 962 font-size: 75%;
bsw@3 963 }
bsw@3 964
bsw/jbe@19 965 .member_thumb .flags a,
bsw/jbe@19 966 .member_thumb .flags img {
bsw/jbe@4 967 position: static;
bsw/jbe@4 968 float: right;
bsw/jbe@19 969 margin-left: 0.5em;
bsw/jbe@4 970 }
bsw/jbe@4 971
bsw@177 972 .member_thumb .flags .in_delegation_chain {
bsw@177 973 font-weight: bold;
bsw@177 974 }
bsw@177 975
bsw/jbe@4 976 .member .right {
bsw/jbe@4 977 float: right;
bsw/jbe@4 978 }
bsw/jbe@4 979
bsw/jbe@19 980 .member_thumb.not_accepted,
bsw/jbe@19 981 .member_thumb.not_informed {
bsw@294 982 background: #fff;
bsw@294 983 }
bsw@294 984
bsw@294 985 .member_thumb.not_accepted .member_image,
bsw@294 986 .member_thumb.not_accepted .member_name,
bsw@294 987 .member_thumb.not_informed .member_image,
bsw@294 988 .member_thumb.not_informed .member_name {
bsw@294 989 opacity: 0.4;
bsw@10 990 }
bsw@10 991
bsw@177 992 .member_thumb.in_delegation_chain {
bsw@280 993 background-color: #cdf;
bsw@177 994 }
bsw@177 995
bsw/jbe@19 996 .member_statement,
bsw/jbe@4 997 .draft_content,
bsw/jbe@19 998 .suggestion_content {
bsw@2 999 background-color: #eee;
bsw@273 1000 xbackground: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#f7f7f7), color-stop(100%,#e5e5e5));
bsw@272 1001 padding: 1ex;
bsw@272 1002 border-radius: 8px;
bsw@2 1003 }
bsw@2 1004
bsw@286 1005 .member_statement {
bsw@286 1006 margin-right: 250px;
bsw@286 1007 }
poelzi@141 1008
poelzi@141 1009 #suggestion_description {
bsw@181 1010 height: 15ex;
poelzi@141 1011 }
poelzi@141 1012
bsw@2 1013 .diff {
bsw@2 1014 background-color: #eee;
bsw@2 1015 border: 1px solid #ccc;
bsw@2 1016 padding: 1ex;
bsw@2 1017 }
bsw@2 1018
bsw@95 1019 .diff_added {
bsw@2 1020 background-color: #cfc;
bsw@95 1021 text-decoration: underline;
bsw@2 1022 }
bsw@2 1023
bsw@95 1024 .diff_removed {
bsw@2 1025 background-color: #fcc;
bsw@95 1026 text-decoration: line-through;
bsw@2 1027 }
bsw@2 1028
bsw@2 1029 .slot_issue_info {
bsw@2 1030 background-color: #eee;
bsw@2 1031 border: 1px solid #ccc;
bsw@2 1032 float: right;
bsw@2 1033 padding: 0.5ex;
bsw@2 1034 line-height: 130%;
bsw@2 1035 margin-right: 1em;
bsw@2 1036 }
bsw@2 1037
bsw@2 1038 .issue_info label {
bsw@2 1039 float: left;
bsw@2 1040 width: 8em;
bsw@2 1041 text-transform: uppercase;
bsw@2 1042 font-size: 70%;
bsw@2 1043 color: #777;
bsw@2 1044 font-weight: bold;
bsw@2 1045 clear: left;
bsw@2 1046 text-align: right;
bsw@2 1047 margin-right: 0.7em;
bsw@2 1048 }
bsw@2 1049
bsw/jbe@19 1050 .admitted_info {
bsw/jbe@19 1051 background-color: #dfd;
bsw/jbe@19 1052 padding: 1ex;
bsw/jbe@19 1053 margin-bottom: 2ex;
bsw@286 1054 border-radius: 8px;
bsw/jbe@19 1055 }
bsw/jbe@19 1056
bsw/jbe@19 1057 .not_admitted_info,
bsw/jbe@19 1058 .revoked_info {
bsw/jbe@19 1059 background-color: #fdd;
bsw/jbe@19 1060 padding: 1ex;
bsw@312 1061 margin-top: 2ex;
bsw/jbe@19 1062 margin-bottom: 2ex;
bsw@312 1063 border-radius: 8px;
bsw/jbe@19 1064 }
bsw/jbe@19 1065
bsw/jbe@6 1066 .draft_updated_info,
bsw@10 1067 .voting_active_info,
bsw@11 1068 .initiator_invite_info,
bsw@60 1069 .motd,
bsw@60 1070 .public_access_issue_head {
bsw/jbe@6 1071 background-color: #fec;
bsw@2 1072 padding: 1ex;
bsw@280 1073 margin-top: 2ex;
bsw/jbe@19 1074 margin-bottom: 2ex;
bsw@273 1075 border-radius: 8px;
bsw@3 1076 }
bsw@3 1077
bsw/jbe@4 1078 .suggestion_fulfilled {
bsw/jbe@4 1079 width: 15em;
bsw/jbe@4 1080 }
bsw/jbe@4 1081 .suggestion_fulfilled a.action {
bsw/jbe@4 1082 padding-left: 0;
bsw/jbe@4 1083 line-height: 120%;
bsw/jbe@4 1084 }
bsw/jbe@4 1085
bsw/jbe@6 1086 .help,
bsw/jbe@6 1087 .use_terms {
bsw@301 1088 border-radius: 8px;
bsw@294 1089 background-color: #cdf;
bsw/jbe@4 1090 color: #000;
bsw/jbe@4 1091 padding: 1ex;
bsw/jbe@4 1092 }
bsw/jbe@4 1093
bsw/jbe@4 1094 .help_visible {
bsw/jbe@4 1095 margin-bottom: 1ex;
bsw/jbe@4 1096 }
bsw/jbe@4 1097
bsw/jbe@4 1098 .help_visible .help_icon {
bsw/jbe@4 1099 float: right;
bsw/jbe@4 1100 }
bsw/jbe@4 1101
bsw/jbe@4 1102 .slot_help_hidden {
bsw/jbe@4 1103 float: right;
bsw/jbe@4 1104 margin-right: 1em;
bsw@277 1105 margin-top: 1ex;
bsw/jbe@4 1106 }
bsw/jbe@4 1107
bsw/jbe@4 1108 .help_actions {
bsw/jbe@4 1109 font-size: 75%;
bsw/jbe@4 1110 float: right;
bsw/jbe@4 1111 }
bsw/jbe@4 1112
bsw/jbe@4 1113 .help_actions a {
bsw/jbe@4 1114 margin-right: 1em;
bsw/jbe@4 1115 color: #468;
bsw/jbe@4 1116 }
bsw/jbe@4 1117
bsw/jbe@4 1118 .wiki {
bsw/jbe@4 1119 }
bsw/jbe@4 1120
bsw/jbe@4 1121 .wiki h1,
bsw/jbe@4 1122 .wiki h2,
bsw/jbe@4 1123 .wiki h3,
bsw/jbe@4 1124 .wiki h4 {
bsw/jbe@4 1125 margin-top: 1ex;
bsw/jbe@4 1126 margin-bottom: 1ex;
bsw/jbe@4 1127 }
bsw/jbe@4 1128
bsw/jbe@4 1129 .wiki h1 {
bsw/jbe@4 1130 font-size: 150%;
bsw/jbe@4 1131 }
bsw/jbe@4 1132
bsw/jbe@4 1133 .wiki h2 {
bsw/jbe@4 1134 font-size: 125%;
bsw/jbe@4 1135 }
bsw/jbe@4 1136
bsw/jbe@4 1137 .wiki p {
bsw/jbe@4 1138 margin-top: 1ex;
bsw/jbe@4 1139 margin-bottom: 1ex;
bsw/jbe@4 1140 }
bsw/jbe@4 1141
bsw/jbe@4 1142 form .warning {
bsw/jbe@4 1143 background-color: #ffd;
bsw/jbe@4 1144 color: #000;
bsw/jbe@4 1145 border: 1px solid #dda;
bsw/jbe@4 1146 margin: 1ex;
bsw/jbe@4 1147 margin-bottom: 2ex;
bsw/jbe@4 1148 padding: 1ex;
bsw/jbe@4 1149 }
bsw/jbe@5 1150
bsw@9 1151 a.not_voted {
bsw@9 1152 display: block;
bsw@9 1153 background-color: #fec;
bsw@9 1154 color: #000;
bsw@9 1155 }
bsw/jbe@5 1156
bsw@11 1157 .action_active {
bsw@11 1158 background-color: #fec;
bsw@11 1159 }
bsw@11 1160
bsw/jbe@19 1161 .heading {
bsw@274 1162 display: block;
bsw/jbe@19 1163 font-size: 120%;
bsw/jbe@19 1164 font-weight: bold;
bsw/jbe@19 1165 }
bsw/jbe@19 1166
bsw@280 1167 .heading.member_area_list {
bsw@280 1168 position: absolute;
bsw@280 1169 }
bsw@280 1170
bsw/jbe@19 1171 .heading.first {
bsw/jbe@19 1172 margin-top: 0;
bsw/jbe@19 1173 }
bsw/jbe@19 1174
bsw@75 1175 .menu_list li {
bsw@75 1176 padding-top: 1ex;
bsw@75 1177 padding-bottom: 1ex;
bsw@75 1178 }
bsw@75 1179
bsw@75 1180 .deactivated_member_info {
bsw@75 1181 background-color: #a00;
bsw@75 1182 color: #fff;
bsw@75 1183 }
bsw@75 1184
bsw/jbe@5 1185 /*************************************************************************
bsw/jbe@5 1186 * Voting
bsw/jbe@5 1187 */
bsw/jbe@5 1188
bsw@286 1189 #voting_form {
bsw@286 1190 margin-top: 20px;
bsw@286 1191 }
bsw@286 1192
bsw/jbe@5 1193 #voting {
bsw/jbe@5 1194 position: relative;
bsw/jbe@5 1195 }
bsw@286 1196
bsw/jbe@5 1197 #voting .approval, .abstention, .disapproval {
bsw/jbe@5 1198 border: 2px black solid;
bsw@286 1199 margin-top: 2ex;
bsw/jbe@5 1200 margin-bottom: 5ex;
bsw/jbe@5 1201 padding: 1ex;
bsw/jbe@5 1202 padding-bottom: 2ex;
bsw@286 1203 border-radius: 8px;
bsw/jbe@5 1204 }
bsw/jbe@5 1205 #voting .approval {
bsw/jbe@5 1206 background-color: #9f9;
bsw/jbe@5 1207 }
bsw/jbe@5 1208 #voting .approval .movable {
bsw/jbe@5 1209 background-color: #dfd;
bsw/jbe@5 1210 }
bsw/jbe@5 1211 #voting .abstention {
bsw/jbe@5 1212 background-color: #ccc;
bsw/jbe@5 1213 }
bsw/jbe@5 1214 #voting .abstention .movable {
bsw/jbe@5 1215 background-color: #eee;
bsw/jbe@5 1216 }
bsw/jbe@5 1217 #voting .disapproval {
bsw/jbe@5 1218 background-color: #f88;
bsw/jbe@5 1219 }
bsw/jbe@5 1220 #voting .disapproval .movable {
bsw/jbe@5 1221 background-color: #fbb;
bsw/jbe@5 1222 }
bsw/jbe@5 1223 #voting .cathead {
bsw/jbe@5 1224 font-weight: bold;
bsw/jbe@5 1225 }
bsw/jbe@5 1226 #voting .movable {
bsw/jbe@5 1227 position: relative;
bsw/jbe@5 1228 border: 1px black solid;
bsw@286 1229 margin-top: 1ex;
bsw/jbe@5 1230 padding: 0.5ex;
bsw@286 1231 border-radius: 8px;
bsw/jbe@19 1232 }
bsw/jbe@19 1233 #voting .voting_form_active .movable {
bsw/jbe@5 1234 cursor: pointer;
bsw/jbe@5 1235 }
bsw/jbe@19 1236 #voting .voting_form_active .clickable {
bsw/jbe@5 1237 cursor: auto;
bsw/jbe@5 1238 }
bsw/jbe@19 1239 #voting .voting_form_active a.clickable {
bsw/jbe@5 1240 cursor: pointer;
bsw/jbe@5 1241 }
bsw/jbe@6 1242
bsw/jbe@6 1243 #voting .grabber {
bsw/jbe@6 1244 vertical-align: middle;
bsw/jbe@6 1245 cursor: move;
bsw/jbe@19 1246 }
bsw/jbe@19 1247
poelzi@145 1248 /*************************************************************************
poelzi@145 1249 * timeline
poelzi@145 1250 */
poelzi@145 1251 div.ignore_area_list {
poelzi@145 1252 float: left;
poelzi@145 1253 width: 90%;
poelzi@169 1254 margin: 0 0 1em 0;
poelzi@145 1255 }
bsw/jbe@19 1256
poelzi@145 1257 div.ignore_area_list >
poelzi@145 1258 label.ui_field_label {
poelzi@145 1259 text-align: left ;
poelzi@145 1260 width: 100%;
poelzi@145 1261 border-bottom:1px solid #000000;
poelzi@145 1262 color: #000000;
poelzi@145 1263 font-size:75%;
poelzi@145 1264 font-weight:bold;
poelzi@145 1265 vertical-align:bottom;
poelzi@145 1266 text-transform:none;
poelzi@145 1267 padding:0.5ex 0.5em
poelzi@145 1268 }
poelzi@145 1269
poelzi@145 1270 div.ignore_area_item {
poelzi@145 1271 clear: none;
poelzi@145 1272 float: left;
poelzi@169 1273 min-width: 10em;
poelzi@145 1274 margin: 0.1ex 0.5em;
poelzi@169 1275 margin-right: 0.5em;
poelzi@145 1276 }
poelzi@145 1277
poelzi@145 1278 div.ignore_area_item > input {
poelzi@145 1279 float: none;
poelzi@145 1280 clear: none;
poelzi@145 1281 display: inline;
poelzi@145 1282 }
poelzi@145 1283
poelzi@145 1284 div.ignore_area_item >
poelzi@145 1285 label.ui_field_label {
poelzi@145 1286 float: none;
poelzi@145 1287 clear: none;
poelzi@145 1288 text-align: left;
poelzi@145 1289 display: inline;
poelzi@145 1290 }
poelzi@145 1291
poelzi@145 1292 div.timeline_results {
poelzi@145 1293 clear: both;
poelzi@145 1294 }

Impressum / About Us