diff --git a/plonetheme/pcfweb/static/css/style.css b/plonetheme/pcfweb/static/css/style.css index 22cddf9..9859e87 100644 --- a/plonetheme/pcfweb/static/css/style.css +++ b/plonetheme/pcfweb/static/css/style.css @@ -454,7 +454,28 @@ dl.portlet a:hover {text-decoration: underline;} font-size: 16px; color: #000; text-align: center; + background: url("../img/results_box_bg.jpg") no-repeat top right; } + +#search-tabs { + position: relative; +} + +#search-tabs #resultsbox { + width: 560px; +} + +#sorton { + position: absolute; + right: 20px; + width: auto; + padding-top: 4px; +} + +#sorton select { + width: 80px; +} + /*when there is a filter for the results*/ .searchresult {clear: both; overflow: hidden;margin-bottom: 10px;} .searchresult #resultsbox {float:left; clear: none;} @@ -2130,7 +2151,7 @@ dd#fieldset-questions select:focus, dd#fieldset-decrets select:focus, #content select:focus { outline:none; - background: #FFFFFF; + background-color: #FFFFFF; } @@ -2688,3 +2709,44 @@ p#details a { text-align: right; } #fieldset-parlementaires #stats span { visibility: hidden; } + + +div.droppedcheckboxes{ + display:block; + right:2px; + position:absolute; + z-index:50; + padding-left:10px; + padding-top:10px; + padding-bottom:10px; + padding-right:0px; + background:#ccc; + margin-top: 20px; +} + +div.openboxes input.dummyinput { + background: url(../img/close-droppable.png) center right no-repeat; +} +input.dummyinput { + background: url(../img/open-droppable.png) center right no-repeat; +} + +#colOne div.droppedcheckboxes label { + position:relative !important; + border:0 !important; + margin-left:15px; + float: none; + background: none; +} +div.droppedcheckboxes span.label{ + font-weight:normal; +} +div.droppedcheckboxes input{ + position:absolute !important; + display:block; + width:auto !important; + border: 1px #f99d34 solid; + margin:0 !important; + background: none; +} + diff --git a/plonetheme/pcfweb/static/img/close-droppable.png b/plonetheme/pcfweb/static/img/close-droppable.png new file mode 100644 index 0000000..3ce1570 Binary files /dev/null and b/plonetheme/pcfweb/static/img/close-droppable.png differ diff --git a/plonetheme/pcfweb/static/img/open-droppable.png b/plonetheme/pcfweb/static/img/open-droppable.png new file mode 100644 index 0000000..8b9c8b7 Binary files /dev/null and b/plonetheme/pcfweb/static/img/open-droppable.png differ