diff --git a/Makefile b/Makefile deleted file mode 100644 index 4f1ac8f..0000000 --- a/Makefile +++ /dev/null @@ -1,44 +0,0 @@ -VERSION=`git describe | sed 's/^v//; s/-/./g' ` -NAME="fontenay-sous-bois-themes" - -prefix = /usr - -all: - @(echo "Nothing to build. Please use make install.") - -install: - mkdir -p $(DESTDIR)$(prefix)/share/authentic2/fontenay-sous-bois - mkdir -p $(DESTDIR)$(prefix)/share/portail-citoyen2/fontenay-sous-bois - mkdir -p $(DESTDIR)$(prefix)/share/wcs/themes/fontenay-sous-bois - cp -r authentic2/* $(DESTDIR)$(prefix)/share/authentic2/fontenay-sous-bois/ - cp -r portail-citoyen/* $(DESTDIR)$(prefix)/share/portail-citoyen2/fontenay-sous-bois/ - cp -r wcs/fontenay-sous-bois/* $(DESTDIR)$(prefix)/share/wcs/themes/fontenay-sous-bois/ - cp -r common/static $(DESTDIR)$(prefix)/share/authentic2/fontenay-sous-bois/ - cp -r common/static $(DESTDIR)$(prefix)/share/portail-citoyen2/fontenay-sous-bois/ - cp -r common/static $(DESTDIR)$(prefix)/share/wcs/themes/fontenay-sous-bois/ - install -m 0755 wcs/update-fsb-template $(DESTDIR)$(prefix)/local/bin/ - -clean: - rm -rf build sdist - -build: clean - mkdir -p build/$(NAME)-$(VERSION) - for i in *; do \ - if [ "$$i" != "build" ]; then \ - cp -R "$$i" build/$(NAME)-$(VERSION); \ - fi; \ - done - -dist-bzip2: build - mkdir sdist - cd build && tar cfj ../sdist/$(NAME)-$(VERSION).tar.bz2 . - -version: - @(echo $(VERSION)) - -name: - @(echo $(NAME)) - -fullname: - @(echo $(NAME)-$(VERSION)) - diff --git a/authentic2/templates/auth/login_password_profile.html b/authentic2/templates/auth/login_password_profile.html deleted file mode 100644 index b2dc226..0000000 --- a/authentic2/templates/auth/login_password_profile.html +++ /dev/null @@ -1,11 +0,0 @@ -{% load i18n %} -{% if can_change_password %}

{% trans "Password" %}

{% endif %} - -
-{% if can_change_password %} -

{% trans "Change password" %}

-{% else %} -{% comment %}

{% trans "Set password" %}

{% endcomment %} -{% endif %} -
- diff --git a/authentic2/templates/authentic2/login.html b/authentic2/templates/authentic2/login.html deleted file mode 100644 index 571aafd..0000000 --- a/authentic2/templates/authentic2/login.html +++ /dev/null @@ -1,9 +0,0 @@ -{% extends "base.html" %} - -{% block title %}Connexion{% endblock %} - -{% block content %} - {% for id, login_block in blocks.iteritems %} - {{ login_block.content|safe }} - {% endfor %} -{% endblock %} diff --git a/authentic2/templates/authentic2/login_password_form.html b/authentic2/templates/authentic2/login_password_form.html deleted file mode 100644 index f955864..0000000 --- a/authentic2/templates/authentic2/login_password_form.html +++ /dev/null @@ -1,17 +0,0 @@ -{% load i18n %} -

Connexion

-
-{% csrf_token %} -{{ form.as_p }} - -{% if cancel %} - -{% endif %} -
- -{% if can_reset_password %} -

→ {% trans "Forgot password?" %} {% trans "Reset it!" %}

-{% endif %} -{% if registration_authorized %} -

→ {% trans "Not a member?" %} {% trans "Register!" %}

-{% endif %} diff --git a/authentic2/templates/base.html b/authentic2/templates/base.html deleted file mode 100644 index 4239ed7..0000000 --- a/authentic2/templates/base.html +++ /dev/null @@ -1,179 +0,0 @@ -{% load sekizai_tags i18n static %} - - - Portail citoyen | fontenay-sous-bois.fr - - - - - - {% block extra_css %} - - - - - - - {% endblock %} - {% render_block "css" %} - {% block extra_scripts %} - - {% endblock %} - - - -
-
- -
- -
- -
- -
- {% block messages %}{% if messages %} -
    - {% for message in messages %} - {{ message }} - {% endfor %} -
- {% endif %} - {% endblock %} -
-
- {% block content %} - {% endblock %} -
-
-
- -
- -
- -
- -
-   -
- -
-
- - - {% block footer %} -
- - {% endblock %}{# footer #} - -
-
- - -
- - {% render_block "js" %} - - - diff --git a/authentic2/templates/idp/account_management.html b/authentic2/templates/idp/account_management.html deleted file mode 100644 index e15fe95..0000000 --- a/authentic2/templates/idp/account_management.html +++ /dev/null @@ -1,59 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} - -{% block title %}Mon profil{% endblock %} - -{% block content %} -

Mon profil

- -
-{% if profile %} -
- -

{% trans "Credentials" %}

- {% for html_block in frontends_block %} - {{ html_block|safe }} - {% endfor %} - - -{% endblock %} diff --git a/authentic2/templates/idp/homepage.html b/authentic2/templates/idp/homepage.html deleted file mode 100644 index 9b41d19..0000000 --- a/authentic2/templates/idp/homepage.html +++ /dev/null @@ -1,52 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} - -{% block title %} -{% trans "Authentic" %} -{% endblock %} - -{% block content %} - -{% if account_management %} -

- {% trans "Account Management" %} -

-{% endif %} - - -{% if authorized_services %} -
-

{% trans "Services" %}

- -
-{% endif %} - -{% if user.is_staff %} - -{% endif %} - -{% endblock %} diff --git a/authentic2/templates/idp/logout.html b/authentic2/templates/idp/logout.html deleted file mode 100644 index 7707615..0000000 --- a/authentic2/templates/idp/logout.html +++ /dev/null @@ -1,41 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} - -{% block title %} -{% trans "Logout" %} -{% endblock %} -{% block bodyargs %} -onload="window.iframe_count -= 1" -{% endblock %} - -{% comment %}Initialize iframe coutndown {% endcomment %} -{% block extra_scripts %} - -{% endblock %} - -{% block content %} -

{% trans message %}

- - - - - - -{% endblock %} diff --git a/common/static/f-s-b/css/entrouvert.css b/common/static/f-s-b/css/entrouvert.css deleted file mode 100644 index 181aab2..0000000 --- a/common/static/f-s-b/css/entrouvert.css +++ /dev/null @@ -1,85 +0,0 @@ -/* modif de mainstyle.css */ - -.interieur #content #contentBlock-1 { - margin-top: 2em; -} - -interieur .agendaCalendar, .interieur .highlight.menu, #content .right, #content .colright, #content #contentBlock-2 { - margin-top: 1em; -} - -/* classe "entrouvert" */ - -.interieur.entrouvert .agendaCalendar .calendar-table tr.calendar-header, -.interieur.entrouvert #headerContainer, -.interieur.entrouvert .agendaCalendar, -.interieur.entrouvert .highlight, -.interieur.entrouvert .highlight.menu ul { - background-color:#5ba1e1; -} - -.entrouvert.interieur .highlight.menu ul.submenu2 li a { - color:#5ba1e1; -} - -.interieur.entrouvert .highlight, -.entrouvert .calendar-table th, -.entrouvert .calendar-table td, -.interieur.entrouvert .calendar-table tr.calendar-header { - border-color:#5ba1e1; -} - -.interieur.entrouvert .calendar-table tr.calendar-header, -.interieur.entrouvert .calendar-table th, -.interieur.entrouvert.calendar-table td, -.interieur.entrouvert .highlight.agenda h2 { - border-bottom-color:#3c6ab7; -} - -.interieur.entrouvert .highlight.menu ul li a { - border-bottom-color:#3c6ab7; -} - -.interieur.entrouvert .headerTopSearch .logo h1 a { - color:#FFF; -} - -.interieur.entrouvert .toplinks li, -.interieur.entrouvert .toplinks li a { - color:#FFF; -} - -.entrouvert #menuContainer #menu .menuTop li.current li a, -.entrouvert #menuContainer #menu .menuTop li.hover li a , -.entrouvert #menuContainer #menu .menuTop li li a:hover, -.entrouvert #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.entrouvert #menuContainer #menu .menuTop li.current a, -.entrouvert #menuContainer #menu .menuTop li.hover a , -.entrouvert #menuContainer #menu .menuTop li a:hover, -.entrouvert #menuContainer #menu .menuTop li:hover a { - color:#FFF; -} - -.entrouvert #menuContainer #menu .menuTop li.current li a, -.entrouvert #menuContainer #menu .menuTop li.hover li a , -.entrouvert #menuContainer #menu .menuTop li li a:hover, -.entrouvert #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.entrouvert #menuContainer #menu .menuTop .submenu>ul>li>a:hover { - color:#744200; -} - -.entrouvert .submenu2 li.current{ - background-repeat:no-repeat; - background-position: 3px 7px; - background-image:url(./images/puce_bleu_clair.png); -} - -.entrouvert .highlight.menu ul li.last ul.submenu2 li a { - border-bottom:1px solid #3C6AB7; -} diff --git a/common/static/f-s-b/css/fields.css b/common/static/f-s-b/css/fields.css deleted file mode 100644 index dcf0526..0000000 --- a/common/static/f-s-b/css/fields.css +++ /dev/null @@ -1,1161 +0,0 @@ -/***** wcs *****/ - -hr.clear { - clear: both; - padding-bottom: 0em; - border: none; -} - - -ul.catforms li, -div#consultations li { - list-style: none; - padding-left: 12px; - background: url(puce.gif) left center no-repeat; -} - - -div#content ul#announces-links a:hover { - color: black; -} - -/* Form Elements */ - -div.buttons { - margin-top: 1em; - width: 90%; -} - -div.buttons div { - display: inline; -} - -div.buttons br { - display: none; -} - -p.command, -a.edit-custom-text, -div.buttons input { - background: #37a7da; - color: white; - font-size: 120%; - font-weight: normal; - border: none; - padding: 5px 15px; - cursor: pointer; - display: inline; - border: 1px solid transparent; -} - -p.command { - line-height: 300%; -} - -p.command a:focus, -div.buttons input:focus { - border: 1px solid black; -} - -#content p.command a { - color: white; - cursor: pointer; -} - -#content p.command a:hover { - color: white; - text-decoration: none; -} - -form.quixote h3 { - padding-top: 1em; - border-bottom: 1px solid #265aa2; -} - -form.quixote h4 { - color: #616161; -} - -div.widget div.title { - color: #2f2f2f; - font-weight: bold; -} - -div.widget div.content { - margin-left: 1em; -} - -div.widget div.content ul { - padding-left: 0; -} - -div.widget { - margin-bottom: 2ex; -} - -div.hint { - width: 90%; - font-style: italic; -} - -span.required { - padding: 0 0 0 0px; - margin-left: 1ex; - overflow: hidden; - color: red; -} - -div.errornotice { - text-align: left; - background: #fd6; - border: 1px solid #ffae15; - margin: 0px; - padding: 5px; -} - -div.infonotice { - text-align: left; - background-color: #31abe5; - color: #fff; - font-weight: bold; - padding: 5px; -} - -div.error, div.message { - text-align: left; - background: #fd6; - border: 1px solid #ffae15; - padding: 5px; - text-align: left; - margin: 2px 0 0 5%; - width: 84%; -} - -div.error { - background: #f66; -} - -/* other stuff */ - -div#gauche ul, -div#myspace ul { - padding: 0 0 0 1ex; - margin: 2ex 0; -} - -div#gauche li, -div#myspace li { - list-style: none; - padding: 0; - margin: 1ex 0; -} - -div#centre li li { - list-style: none; -} - -div#centre li li a, -div#gauche li a { -} - -div#gauche li a:hover { -} - -div#services-2nd ul ul, -div#centre ul ul { - margin-top: 0.5ex; -} - -li.all-forms { - margin-top: 1ex; -} - -div#new_member div.buttons, -div#member div.buttons { - text-align: left; -} -ul#announce-modes { - list-style:none; - margin:1em 0 0 2em; -} - -ul#announce-modes li { - margin:0 0 0.5em 0; -} - -li #par_mail{ - background: url(mail.gif) left center no-repeat; - padding: 5px 0 5px 20px; -} - -li #par_sms { - background: url(tel.gif) left center no-repeat; - padding: 5px 0 5px 20px; -} - -li a#par_rss { - background: url(rss.gif) left center no-repeat; - padding: 5px 0 5px 20px; -} - -li a#par_ical { - background: url(ical.gif) left center no-repeat; - padding: 5px 0 5px 20px; -} - -div.address { - margin-left: 2em; -} - -ul#month-links { - float: right; - padding: 1em; - text-align: right; - list-style: none; -} - -ul#month-links li a { - color: #379cdb; -} - -ul#month-links li a:hover { - text-decoration: underline; -} - -div#page a.edit-custom-text { - float: right; - font-size: 50%; - margin: 0 0 1ex 1ex; -} - -div#page a.edit-custom-text:hover { - color: black; -} - -p#receiver { - margin-left: 2em; -} - -#page div.back-home-button { - margin: 2em auto 1em auto; - display: none; -} - -h2.foldable { - /*display: none;*/ -} - -div#profile h3 { - margin-top: 2em; -} - -div.dataview { - box-shadow: 0 0 5px rgba(0,0,0,0.15); - background: #fff; - border: 1px solid #D8D8D8; - margin:0px 5px 25px 5px; - border-radius: 5px; - border-top: none; - padding: 25px; -} - -div.dataview span.value { - display: block; - margin-left: 1em; - margin-bottom: 1ex; -} - -form div.page, -div.dataview div.page { - border: 1px solid #aaa; - padding: 1ex; - margin-bottom: 1em; -} - -form div.page p, -div.dataview div.page p { - margin-top: 0; -} - -form div.page h3, -div.dataview div.page h3 { - margin: 0; - margin-bottom: 1ex; -} - -#profile form ul li {line-height: 20px; padding-bottom: 5px;border-bottom: 1px solid #CCCCCC;} - -#rub_service h2 {clear: both;} -div.dataview {clear: both; padding-bottom: 40px;} - -div.dataview div.field { - border-bottom: 1px solid #eee; - clear: both; -} - -form label { - font-weight: bold; - color: #333; - font-size: 16px; -} - - -div.dataview div.field span.label { - font-weight: bold; - color: #333; - min-width: 48%; - float: left; - font-size: 12px; - text-align: left; - padding-top: 8px; -} - -div.dataview div.field .value { - display: block; - margin-left: 1em; - margin-bottom: 1ex; - padding-left: 10px; - padding-top: 5px; - min-width: 48%; - float: left; -} - - -table#strongbox-items tr.expired td.expiration { - color: #800; -} - -table#strongbox-items td { - padding: 2px 1ex; -} - -table#strongbox-items tr.even { - background: #ddd; -} - -table#strongbox-items tr.odd { - background: #eee; -} - -p.infopratique ul { - list-style-type: none; - padding-bottom: 3px; -} - -p.infopratique table, p.infopratique table tr, p.infopratique table tr th, p.infopratique table tr td { - border: 1px solid #333333; -} - -p.infopratique table tr th { - -} - -div.content table thead {} -div.content table thead th {background-color: #265aa2; color: white;} -div.content table thead tr {} -div.content table thead td {background-color: #265aa2;} -div.content table tbody {} -div.content table tbody th {background-color: #cccccc; color: black; width: 200px; text-align: left; padding-left: 5px;} -div.content table tbody tr {background-color: #eeeeee; border-bottom: 1px solid #CCCCCC;} -div.content table tbody tr td {} - -div.content table tbody tr td input { - border: 1px solid #aaa; - background: white url(field-shade.png) top left repeat-x; - padding: 1px; - color: black; - -webkit-transition: background 200ms ease-out; -} - -div.content table tbody tr td input:focus { - border: 1px solid #888; - background: white; -} - -.fileprogress { - border: 1px solid #888; -} - -.fileprogress .bar { - background: #09f; - line-height: 1.5em; - padding-left: 1ex; - font-weight: bold; - white-space: nowrap; -} - -.fileinfo { - line-height: 1.5em; -} - -.fileinfo .remove { - height: 16px; - width: 16px; - background: url(/qo/images/stock_remove_16.png) top left no-repeat; - display: inline-block; - margin-left: 1em; - text-indent: 100%; - overflow: hidden; -} - -.passStrengthify { - padding-left: 1em; -} - -div.dataview { - display: none; -} - -div#content #disclose-dataview { - display: block; - margin: 1em 0; -} - -h3#agenda-link, -form#follow-form { - display: none; -} - -div#sidebox div#links { - display: none; -} - -div.TableWidget input { - width: 7em; -} - -.chapeau { - font-style: italic; - font-size: 110%; -} - -div#centre { - background: none; -} - - -div#home-page-intro { - background: white; - padding: 1ex; -} - - - -#profile-links, -h3#my-forms { - display: none; -} - -p#welcome { -} - -textarea { - text-align: left; - display: block; - width: 90%; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857143; - color: #555; - background-color: #FFF; - background-image: none; - border: 1px solid #CCC; - -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); - box-shadow: inset 0 1px 1px rgba(0,0,0,0.075); - -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -} - - #content .form-validation input[readonly], - #content .form-validation textarea[readonly] { - background-color: #ccc; - background-image: none; - color: black; -} - -div#services > h3 { display: none; } - - -/********** local template ***********/ - -ul { - padding: 0; - list-style: none; -} - -#nav { - width: 100%; - float: left; -} -#nav .panel { - border: none; -} -#nav .account-panel>.panel-heading, #nav .nav-panel>.panel-heading { - background: #d91a80; - color: white; - border: none; -} - -#real-content ul > li:before { - display: inline-block; - font-style: normal; - font-weight: normal; - line-height: 1; - float: left; - margin-top: 3px; - margin-right: 7px; - font-size: 13px; - color: #D91A80; -} -#real-content ul.federation-plugin-list > li:before { -} -#real-content ul.federation-plugin-list > li:before { - content: none; -} -#services > ul > li > ul > li:before, #nav .account-panel li:before, #nav .account-panel li:before:hover, #nav .nav-panel li:before, #nav .nav-panel li:before:hover { - color: #D91A80; -} -#services > ul > li:before { - content: none; -} -#menu2 .nav>li { - background: none; - padding-left: 0; -} -#single-title { - display: none; -} -#main-content { - padding: 0px; - width: 100%; - float: left; -} -#main-content .widget { - text-align: left; - margin-bottom: 20px; -} -#main-content .widget .title { - border: none; - margin-bottom: 6px; -} - - -#messages { - box-shadow: 0 3px 3px rgba(0, 0, 0, 0.15); - border: 1px solid #D8D8D8; - background: #F1F1F1; - padding: 15px 25px; - margin-bottom: 15px; -} -#messages .messages { - margin-bottom: 0; -} -#messages .info { - color: #158300; -} -#messages .info:before { - position: relative; - top: 7px; - left: -7px; - display: inline-block; - font-style: normal; - font-weight: 400; - line-height: 1; - display: block; - font-size: 21px; - float: left; - margin-right: 2px; - color: #27A30F; -} - - -#content label { - display: block; - text-align: left; -} -#content select, #content input[type="password"], #content input[type="email"], #content input[type="text"] { - text-align: left; - display: block; - width: 90%; - height: 34px; - padding: 6px 12px; - font-size: 16px; - line-height: 1.42857143; - color: #000; - background-color: #FFF; - background-image: none; - border: 1px solid #CCC; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); - -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; - transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -} - -#content input[type="password"], #content input[type="email"], -#content input[type="text"] { - width: 87%; -} - -#content > p:last-child { - margin: 0; -} -#content >:last-child { - margin-bottom: 0; -} -form, .right { - display: block; - padding: 20px; - width: 60%; - background: white; - margin: 20px auto; - margin-bottom: 20px; - background-color: #FFF; - border: 1px solid rgba(0, 0, 0, 0); - border-color: #DDD; - -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); - box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); - margin-bottom: 0; - text-align: center; -} -form h1, form h2, form h3, form h4, form h5, form p, .right h1, .right h2, .right h3, .right h4, .right h5, .right p { - text-align: left; -} -form form, .right form { - background: transparent; - padding: 0; - margin: 0; - border: none; - box-shadow: none; - width: auto; -} -input[type="submit"] { - display: inline-block; - margin-bottom: 0; - font-weight: 400; - text-align: center; - vertical-align: middle; - cursor: pointer; - background-image: none; - border: 1px solid rgba(0, 0, 0, 0); - white-space: nowrap; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857143; - color: #FFF; - background-color: #d91a80; - border-color: #ab1565; -} -input[type="submit"]:hover { - text-decoration: none; - color: #FFF; - background-color: #ab1565; - border-color: #951258; -} -input[type="submit"]:active, input[type="submit"]:focus { - color: #FFF; - background-color: #ab1565; - border-color: #951258; - outline: 0; - background-image: none; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -input[type="submit"] + button.submit, button.submit + input[type="submit"], input[type="submit"] + input[type="submit"], button.submit + button.submit { - margin-left: 5px; -} -button.submit { - display: inline-block; - margin-bottom: 0; - font-weight: normal; - text-align: center; - vertical-align: middle; - cursor: pointer; - background-image: none; - border: 1px solid rgba(0, 0, 0, 0); - white-space: nowrap; - padding: 6px 12px; - font-size: 14px; - line-height: 1.42857143; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - color: #333; - background-color: #FFF; - border-color: #CCC; -} -button.submit:hover { - text-decoration: none; - color: #333; - background-color: #EBEBEB; - border-color: #ADADAD; -} -button.submit:active, button.submit:focus { - outline: 0; - background-image: none; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - color: #333; - background-color: #EBEBEB; - border-color: #ADADAD; -} -.quixote { - border: none; - padding: 0; - box-shadow: none; -} -.quixote p { - margin: 0 0 15px; - line-height: 1.6em; -} -.quixote h4 { - line-height: 1.4em; -} -.help-text { - font-size: 11px; - margin-top: -5px; - color: #706C6C; - margin-bottom: 15px; -} -.federation-plugin-list { - text-align: left; -} -.federation-plugin-list > li { - border: 1px solid #DADADA; - padding: 5px 15px; -} -.federation-plugin-list > li:last-child { - border-bottom-right-radius: 5px; - border-bottom-left-radius: 5px; -} -.federation-plugin-list > li:first-child { - border-top-right-radius: 5px; - border-top-left-radius: 5px; -} -.federation-plugin-list form { - text-align: left; - overflow: hidden; - display: block; -} -.federation-plugin-list form input { - padding: 5px 8px; - font-size: 11px; - float: right; -} -.federation-plugin-list .federation-plugin-federation-name { - padding-top: 4px; - display: inline-block; -} -#content .bo-block { - padding-top: 20px; -} -#content .bo-block h2 { - font-size: 18px; - margin-bottom: 10px; - font-weight: 600; -} -#content .dataview { - display: none; -} -#services > h3 { - font-size: 24px; - border-bottom: 1px solid rgba(0, 0, 0, 0.1); - margin-bottom: 15px; - padding-bottom: 8px; - color: #D91A80; -} -#services > h3:first-child { - margin-top: 15px; -} -#services > ul { - display: block; - overflow: hidden; - width: 100%; - margin-left: 0px; - padding-left: 0px; -} -#services > ul > li { - display: block; - padding: 20px; - padding-left: 0px; - background: #FFF; - margin: 20px auto; - margin-bottom: 20px; - background-color: #FFF; - border: 1px solid rgba(0, 0, 0, 0); - margin-bottom: 0; - text-align: left; - float: left; - margin: 0; - width: 46%; -} -#services > ul > li > ul > li:before { - display: inline-block; - font-style: normal; - font-weight: normal; - line-height: 1; - float: left; - margin-top: 3px; - margin-left: -14px; - font-size: 13px; - color: #D91A80; -} - -#services > ul > li ul { - padding: 0 0 0 0px; -} -#services > ul > li > ul > li { - padding: 3px 0; - line-height: 1.25em; - font-size: 1.3em; -} -#services > ul > li > strong { - padding-top: 0; - font-size: 24px; - border-bottom: 1px solid rgba(0, 0, 0, 0.1); - margin-bottom: 15px; - padding-bottom: 8px; - margin-top: 0; - text-align: left; - font-size: 20px; - font-weight: 600; - margin-top: -5px; - display: block; - line-height: 1em; -} - -.interieur #content #contentBlock-1 a { - font-family: 'yanone_kaffeesatz_regularRg', sans-serif; - color: #454548; - margin: 0.7em 0; - text-decoration: none; - font-size: 1.3em; -} - -.interieur #content #contentBlock-1 a:hover { - text-decoration: underline; -} - -.interieur #content #contentBlock-1 div ul.catforms li a { - font-size: 1.7em; -} - -.interieur #content #contentBlock-1 h2,.interieur #content #contentBlock-1 h3 { - font-size: 1.6em; -} - -h2#services {display: none;} - -#rub_service { - overflow: hidden; -} -#rub_service label { - color: #333; -} -#rub_service form { - padding: 25px 30px; - width: auto; - overflow: hidden; -} -#rub_service form input, #rub_service form select { - max-width: 250px; -} -#rub_service form h3 { - border-bottom: 1px solid rgba(0, 0, 0, 0.1); - margin-bottom: 15px; - margin-top: 30px; - padding-bottom: 8px; -} -#rub_service form h4 { - font-size: 17px; - border-bottom: 1px solid rgba(0, 0, 0, 0.1); - margin-bottom: 15px; - margin-top: 30px; - padding-bottom: 8px; -} -#rub_service form input[type="submit"] { - background: #d72a84; -} -#rub_service form input[type="submit"]:hover { - opacity: 0.9; -} -#rub_service form input[type="checkbox"] { - margin-right: 5px; - float: left; -} -#rub_service form input.cancel { - color: #333; - background-color: #FFF; - border-color: #CCC; -} -#rub_service form input.cancel:hover { - color: #333; - background-color: #EBEBEB; - border-color: #ADADAD; -} -#rub_service form input.cancel:active, #rub_service form input.cancel:focus { - outline: 0; - background-image: none; - -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); - box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); -} -.CheckboxWidget { - position: relative; -} -.CheckboxWidget .title label { - position: absolute; - left: 20px; -} -.SubmitWidget.widget.cancel-button { - float: left; -} - -.buttons .SubmitWidget .content { - margin-left: 10px; -} - -.buttons.submit { - overflow: hidden; -} -.cancel-button .content, .cancel-button { - text-align: left; -} -.submit-button .content, .submit-button { - text-align: right; -} -#main-content .widget.submit-button, #main-content .widget.cancel-button { - margin-bottom: 0; -} -form .submit-button, form .cancel-button, #rub_service form .submit-button, #rub_service form .cancel-button { - float: right; - width: 49%; -} -#rub_service form .cancel-button { - float: left; - text-align: right; -} -#steps { - float: left; - width: 100%; -} -.steplist > .panel { - box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15); -} -#steps > h2 { - font-size: 15px; - border-bottom: none; - font-weight: bolder; - margin-bottom: 0; - padding-bottom: 8px; - padding-top: 0; - margin-top: 5px; -} -#steps > ol { - overflow: hidden; - list-style: none; - padding: 0; - position: relative; -} -#steps > ol > li { - border: 1px solid lightgrey; - font-size: 16px; - font-weight: bold; - margin-bottom: 25px; - background: #F1F1F1; - color: #5C5C5C; - padding: 10px 15px; - position: relative; - margin-right: 23px; -} -#steps li:hover:before, #steps li:before { - content: none; -} -#steps > ol > li.last { - margin-bottom: 0; -} -#steps > ol > li.current { - background: white; - color: #333; -} -#steps > ol > li ul { - top: 100%; - left: 0; - margin: 0 -10px -18px; -} -#steps > ol > li ul li { - display: block; - padding: 5px 10px; - color: #333; - font-size: 12px; -} -#steps > ol > li ul li.current { - color: #FFF; - background-color: #d91a80; -} -#steps > ol > li ul li.current .label { - color: white; -} -#steps > ol > li ul li span { - font-size: 11px; - margin-right: 10px; - font-weight: 400; - line-height: 1.2em; -} -#steps > ol > li:after { - position: absolute; - left: 50%; - margin-left: -6px; - top: 100%; - content: ''; - width: 0; - height: 0; - border-style: solid; - margin-top: 10px; - border-width: 6px 6px 0 6px; - border-color: #B6B6B6 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); -} -#steps > ol > li:last-child:after { - content: none; -} -#steps .label { - color: #333; - font-weight: normal; - padding: 5px 0; - display: inline-block; -} -#steps .label + ul { - padding: 5px 0 12px; -} -.logged-in .user.fullname { - font-weight: bold; -} -.login-actions { - margin-top: 25px; - margin-bottom: 0; -} -.login-actions p:last-child { - margin-bottom: 0; -} -#rub_service { - width: 100%; -} - - -/************** other stuffs ****************/ - - -html { - -} - -body { - background-position: 0 0; -} - -#droite #myspace { - display: none; -} - -form { - width: 100%; -} - -.steplist { - margin: 0px; - padding-top: 0px; - margin-top: 0px; - padding-right: 15px; -} - -.steplist div.panel-body { - padding: 7px 15px 7px 0px; -} - -#steps > ol > li { - margin-right: 0px; -} - - -form .submit-button, -form .cancel-button, -#rub_service form .submit-button, -#rub_service form .cancel-button { - width: auto; -} - -input[type="radio"], input[type="checkbox"] { - margin: 0px 4px 0px 0px; -} - -.remove { - height: 16px; -} - -.CheckboxWidget .title label { - left: 30px; -} - -#services .widget-with-error .content input, #services .widget-with-error .content textarea { - background-color: #f66; -} - - -#content div.page h3 + h3 { - display: none; -} - -div.dataview div.field span.label { - font-weight: bold; - color: #333; - min-width: 48%; - max-width: 100%; - float: left; - font-size: 12px; - text-align: left; - padding-top: 8px; - white-space: normal; -} - -div.dataview div.field .value { - display: block; - margin-left: 1em; - margin-bottom: 1ex; - padding-left: 10px; - padding-top: 5px; - min-width: 48%; - float: none; - line-height: 20px; -} - -form, .right { - text-align: left; - border: none; -} - - .cont-logo { - /*width: 375px; - height: 120px; - padding: 32px 0 50px 25px;*/ - background: url(../img/cont-bg.png) no-repeat 0 5px; - } - - -/************ correction *************/ - -div.buttons input[name="previous"] { - float: left -} - -div.buttons input[name="cancel"] { - float: center; - margin-left: 200px; -} - -div.buttons input[name="submit"] { - float : right; -} - -/********** report sur idp ************/ - -#profile-links, #my-profile { display: none;} - diff --git a/common/static/f-s-b/css/images/arrow_white.png b/common/static/f-s-b/css/images/arrow_white.png deleted file mode 100644 index 8049a82..0000000 Binary files a/common/static/f-s-b/css/images/arrow_white.png and /dev/null differ diff --git a/common/static/f-s-b/css/images/contact_link.gif b/common/static/f-s-b/css/images/contact_link.gif deleted file mode 100644 index e7febeb..0000000 Binary files a/common/static/f-s-b/css/images/contact_link.gif and /dev/null differ diff --git a/common/static/f-s-b/css/images/highlightLink_newsletter.gif b/common/static/f-s-b/css/images/highlightLink_newsletter.gif deleted file mode 100644 index c742a09..0000000 Binary files a/common/static/f-s-b/css/images/highlightLink_newsletter.gif and /dev/null differ diff --git a/common/static/f-s-b/css/images/highlightLink_planguide.gif b/common/static/f-s-b/css/images/highlightLink_planguide.gif deleted file mode 100644 index 5ce83e3..0000000 Binary files a/common/static/f-s-b/css/images/highlightLink_planguide.gif and /dev/null differ diff --git a/common/static/f-s-b/css/images/home.gif b/common/static/f-s-b/css/images/home.gif deleted file mode 100644 index 86e3ef3..0000000 Binary files a/common/static/f-s-b/css/images/home.gif and /dev/null differ diff --git a/common/static/f-s-b/css/images/menu_current.gif b/common/static/f-s-b/css/images/menu_current.gif deleted file mode 100644 index 02d38c5..0000000 Binary files a/common/static/f-s-b/css/images/menu_current.gif and /dev/null differ diff --git a/common/static/f-s-b/css/images/puce_bleu_clair.png b/common/static/f-s-b/css/images/puce_bleu_clair.png deleted file mode 100644 index c56e9af..0000000 Binary files a/common/static/f-s-b/css/images/puce_bleu_clair.png and /dev/null differ diff --git a/common/static/f-s-b/css/images/puce_bleu_fonce.png b/common/static/f-s-b/css/images/puce_bleu_fonce.png deleted file mode 100644 index 0cabc03..0000000 Binary files a/common/static/f-s-b/css/images/puce_bleu_fonce.png and /dev/null differ diff --git a/common/static/f-s-b/css/images/puce_orange.png b/common/static/f-s-b/css/images/puce_orange.png deleted file mode 100644 index dad66d2..0000000 Binary files a/common/static/f-s-b/css/images/puce_orange.png and /dev/null differ diff --git a/common/static/f-s-b/css/images/puce_orange_clair.png b/common/static/f-s-b/css/images/puce_orange_clair.png deleted file mode 100644 index dafabfd..0000000 Binary files a/common/static/f-s-b/css/images/puce_orange_clair.png and /dev/null differ diff --git a/common/static/f-s-b/css/images/puce_rose_fonce.png b/common/static/f-s-b/css/images/puce_rose_fonce.png deleted file mode 100644 index ebf5861..0000000 Binary files a/common/static/f-s-b/css/images/puce_rose_fonce.png and /dev/null differ diff --git a/common/static/f-s-b/css/images/puce_verte.png b/common/static/f-s-b/css/images/puce_verte.png deleted file mode 100644 index c7f9590..0000000 Binary files a/common/static/f-s-b/css/images/puce_verte.png and /dev/null differ diff --git a/common/static/f-s-b/css/images/puce_verte_fonce.png b/common/static/f-s-b/css/images/puce_verte_fonce.png deleted file mode 100644 index ce6c72e..0000000 Binary files a/common/static/f-s-b/css/images/puce_verte_fonce.png and /dev/null differ diff --git a/common/static/f-s-b/css/images/puce_violet.png b/common/static/f-s-b/css/images/puce_violet.png deleted file mode 100644 index e5d8954..0000000 Binary files a/common/static/f-s-b/css/images/puce_violet.png and /dev/null differ diff --git a/common/static/f-s-b/css/images/puce_violet_fonce.png b/common/static/f-s-b/css/images/puce_violet_fonce.png deleted file mode 100644 index 35e22b2..0000000 Binary files a/common/static/f-s-b/css/images/puce_violet_fonce.png and /dev/null differ diff --git a/common/static/f-s-b/css/images/search_background.png b/common/static/f-s-b/css/images/search_background.png deleted file mode 100644 index 4a329c3..0000000 Binary files a/common/static/f-s-b/css/images/search_background.png and /dev/null differ diff --git a/common/static/f-s-b/css/images/toplink_separator.gif b/common/static/f-s-b/css/images/toplink_separator.gif deleted file mode 100644 index 42df21c..0000000 Binary files a/common/static/f-s-b/css/images/toplink_separator.gif and /dev/null differ diff --git a/common/static/f-s-b/css/images/toplink_separator_interior.png b/common/static/f-s-b/css/images/toplink_separator_interior.png deleted file mode 100644 index 0d22e87..0000000 Binary files a/common/static/f-s-b/css/images/toplink_separator_interior.png and /dev/null differ diff --git a/common/static/f-s-b/css/mainstyles.css b/common/static/f-s-b/css/mainstyles.css deleted file mode 100644 index e74bea7..0000000 --- a/common/static/f-s-b/css/mainstyles.css +++ /dev/null @@ -1,2636 +0,0 @@ -@font-face { - font-family: 'yanone_kaffeesatz_thinregular'; - src: url('yanonekaffeesatz-thin-webfont.eot'); - src: url('yanonekaffeesatz-thin-webfont.eot?#iefix') format('embedded-opentype'), - url('yanonekaffeesatz-thin-webfont.woff') format('woff'), - url('yanonekaffeesatz-thin-webfont.ttf') format('truetype'), - url('yanonekaffeesatz-thin-webfont.svg#yanone_kaffeesatz_thinregular') format('svg'); - font-weight: normal; - font-style: normal; -} - -@font-face { - font-family: 'yanone_kaffeesatz_regularRg'; - src: url('yanonekaffeesatz-regular-webfont.eot'); - src: url('yanonekaffeesatz-regular-webfont.eot?#iefix') format('embedded-opentype'), - url('yanonekaffeesatz-regular-webfont.woff') format('woff'), - url('yanonekaffeesatz-regular-webfont.ttf') format('truetype'), - url('yanonekaffeesatz-regular-webfont.svg#yanone_kaffeesatz_regularRg') format('svg'); - font-weight: normal; - font-style: normal; - -} - -body { - font-family:Arial, Verdana; - font-size:16px; - margin:0; - padding:0; -} - -h1.centralHeadline { - display:none; /* h1 g?n?r? par TV - ? remettre ?*/ -} - -table td, -table th, -form input, -form textarea, -form select, -fieldset legend, -p, -ul li, -a, -dl dt { - font-size:0.8em; -} - -.interieur #contentBlock-1 table td, -.interieur #contentBlock-1 table th { - font-size:1em; - text-align:left; -} - -/*table td p, -table th p { - font-size:0.9em; -}*/ - -/*.interieur #contentBlock-1 table td p, -.interieur #contentBlock-1 table th p { - font-size:1em; -}*/ - -td form select, -td a, -th a, -dt a, -dt p, -li li, -li a, -p a, -li p { - font-size:1em; -} - -a, -p, -p a { - color:#040404; -} - -img a, -a img { - border:none; -} - -#feature .block img { - margin:0; -} - -ul, -ul li { - margin:0; - padding:0; -} - -ul li { - list-style:none; -} - -.interieur ul li { - margin-left:0.5em; -} -.interieur #corpus #contentBlock-1 ul li { -list-style: disc inside none; -} - -a { - text-decoration:none; -} - -a:hover { - text-decoration:underline; -} - -.clear { - clear:both; -} - -.blockVideo h2, -.block h2, -.hide, -.clearOnly { - display:none; -} - -.csc-menu li { - list-style: none; - margin-top: 1em; - padding-left: 2em; -} - -.home h2 { - color:#4f8cc9; - border:none; - padding:0; -} - -.home h3 { - font-family: Arial, Verdana; - padding:0; - -} - -h1 { - font-size:1.7em; -} - -#contentBlock-1 h1 { - margin-top:0; -} - -.tx-indexedsearch .tx-indexedsearch-whatis, -h1, -h2, -h3 { - font-family: 'yanone_kaffeesatz_regularRg', sans-serif; - color:#454548; - margin: 0.5em 0; -} -.tx-indexedsearch .tx-indexedsearch-whatis, -h2 { - font-size:1.5em; - border-bottom:1px solid #e8e8e8; - padding-bottom:0.25em; -} - -h2 { - font-size:1.4em; -} - -h3 { - font-size:1.3em; -} - -#footerContainer, -#corpus { - float:left; - width:100%; -} - -#header, -#highlightHomeBlockContainer, -#corpus #content, -#footer { - width:985px; - margin:0 auto; -} - -.toplinks { - float:right; - margin:0.5em 0 1em 0; -} - -.toplinks ul { - margin:0; -} - -.toplinks li { - float:left; - list-style:none; - margin: 0 0em 0 0.5em; - padding: 0 0.5em 0 0em; - background: url(images/toplink_separator.gif) no-repeat right center; -} - -.toplinks li.last { - background:none; - padding:0; -} - -.toplinks li, -.toplinks li a { - color:#3776b5; -} - -.headerTopSearch div.logo { - float:left; - width:425px; -} - -.headerTopSearch .logo h1 { - font-family: 'yanone_kaffeesatz_regularRg', sans-serif; - font-size:2.5em; - margin:0; -} - -.headerTopSearch .logo h1 a { - color:#4f8cc9; - display:table; -} - -.headerTopSearch .logo h1 a:hover { - text-decoration:none; -} - -.headerTopSearch .externalWebsite { - float:left; -} - -.externalWebsite img { - margin-left:0.25em; -} -/* visibility caché : na 18/02/2014 pour cacher le bouton de recherche - visibility : hidden */ -.searchBox { - float:right; -} - -.searchBox fieldset { - padding:0; - margin:0; - border:none; -} - -.searchBox form#searchForm { - margin:0; - padding:0; -} - -.searchBox form#searchForm fieldset { - border:none; - margin:0; - padding:0; -} - -.searchBox .searchLabel { - display:none; -} - -.searchBox input#search { - background:url(images/search_background.png) no-repeat top left; - border:none; - height:10px; - padding:8px 0 8px 0.75em; - float:left; - font-style:italic; - color:#605e5e; - font-size:0.7em; - width:12em; -} - -.searchBox input#search:focus { - outline:none; -} - -.searchBox input.submit { - float:left; - height:26px; -} - -/* Menu */ - -/*#menu { - margin:16px 0 0 0; - padding:5px 0 0 1px; - float:left; - width:100%; - z-index:105; - background-color:#FFF; - width:985px; - margin:16px auto 0 auto; - position:relative; -}*/ - -#menuContainer { - background-color:#FFF; - width:100%; -} - -#menuContainer #menu { - margin:0 auto; - width:985px; - float:none; - background-color:#FFF; - position:relative; - z-index:105; -} - -#menu .menuTop { - margin:16px 0 0 0; - padding:5px 0 0 1px; - float:left; - width:100%; - position:relative; -} - -#headerContainer { - background-color:#FFF; -} - -#header { - margin:0; - padding:0; - width:100%; -} - -.tools { - margin:0 auto; - width:985px; -} - - - -#backgroundMenu { - background-color:#454548; - width:100%; - height:14px; -} - -#overlay { - display:none; - position:fixed; - top:0; - left:0; - background-color:#000; - opacity:0.8; - filter:alpha(opacity=80); /* For IE8 and earlier */ - width:100%; - height:100%; - z-index:100; - overflow:hidden; -} - -/* Bloc de mise en avant sur la page d'accueil */ - -#highlightHomeBlock { - background-color:#454548; - height:410px; - padding-top:12px; -} - -#highlightHomeBlockContainer { - - -} - -#highlightHomeBlock .left { - margin-right:15px; - padding:10px 0px 10px 10px; - background-color:#f0ecec; - float:left; -} - -#highlightHomeBlock .left img { - margin:0; -} - -#highlightHomeBlock .left .news { - -} - -#highlightHomeBlock .right { - float:right; - width:180px; -} - -#highlightHomeBlock .right .block { - background-color:#f0ecec; - padding:7px; - margin-bottom:9px; -} - -#highlightHomeBlock .right .blockVideo { - background-color:#f0ecec; - padding-bottom:5px; -} - -#highlightHomeBlock .right .blockVideo ul { - background-color:#c5c4c4; - margin:0; - padding:6px 0 0 8px; - float:left; - width:172px; -} - -#highlightHomeBlock .right .blockVideo ul li { - float:left; - /*width:48%;*/ - margin:0; - padding:0; - list-style:none; - font-size:0.75em; - color:#363636; - text-align:center; -} - -#highlightHomeBlock .right .blockVideo ul li a { - color:#363636; - font-weight:bold; -} - -#highlightHomeBlock .right .blockVideo ul li.current, -#highlightHomeBlock .right .blockVideo ul li:hover { - position:relative; - background-color:#f0ecec; -} - -#highlightHomeBlock .right .blockVideo ul li a { - padding:3px 0 0 0; - display:block; - height:21px; - width:70px; -} - -#highlightHomeBlock .right .blockVideo ul li.current a { - width:90px; -} - -#highlightHomeBlock .right .blockVideo img { - margin:6px 0 0 0px; -} - -/* Colonne de gauche Accueil */ - -#content .left { - float:left; - width:800px; -} - -.interieur #content #contentBlock-1 { - float:left; - width:793px; -} - -.home .five_columns a, -.interieur #content #contentBlock-1 a { - text-decoration:underline; - color:#0000EE; -} -.home .five_columns a:hover, -.interieur #content #contentBlock-1 a:hover { - text-decoration:none; -} - -#contentBlock-1 .indent { - padding:0 0 0 0.7em; -} - -.interieur #content #contentBlock-1 { - margin-top:0em; - min-height:150px; -} - -.interieur #content #contentBlock-1 h1 { - margin-top:0; -} - -#contentBlock-1 p { - margin:0; - padding:0; - text-align: justify; -} -#contentBlock-1 span { - - text-align: justify; -} - -.home #corpus h2 { - margin:0.5em; - font-weight:bold; -} - -.news img { - position:relative; -} - -.news p { - color:#FFF; -} - -.news li { - float:left; - position:relative; - width:187px; - height:187px; - z-index:20; - margin-right:13px; - margin-bottom:13px; -} - -a.rspeaker { - display:block; - width:20px; - height:20px; - position:absolute; - top:2px; - left:2px; - z-index:550; -} - -.news .caroussel_background { - background-color: #000000; - left:0; - bottom: 0; - min-height: 56px; - opacity: 0.7; - filter:alpha(opacity=70); /* For IE8 and earlier */ - position: absolute; - width: 100%; -} - -.news .caroussel_content { - position: absolute; - width: 177px; - padding:3px 5px; - bottom:0; - left:0; - min-height: 50px; - z-index:50; -} - -.news .caroussel_content .news_date { - color:#50a7ff; - font-weight:bold; - margin-top:0.5em; - display:block; -} - -.news .caroussel_content .subheader { - display:none; - width:187px; - height:187px; - -} - -.news .caroussel_content .subheader, -.news .caroussel_content .subheader a { - color:#FFF; -} -p.subheader{ - text-align:justify; - width:97% !important; -} -.news .caroussel_content .subheader a { - display:block; - width:167px; - height:127px; - position:relative; - z-index:500; - padding-top:50px; - padding:50px 10px 10px 10px; -} - -.news .caroussel_content .subheader a:hover { - text-decoration:none; -} - -.news .caroussel_content h3 { - margin:0.25em 0 0 0; - font-size:1.2em; -} - -.news .caroussel_content h3 a { - color:#FFF; -} - -.news .caroussel_content h3 a:hover { - text-decoration:none; -} - -/* Colonne de droite Accueil */ - -.interieur .agendaCalendar, -.interieur .highlight.menu, -#content .right, -#content .colright, -#content #contentBlock-2 { - float:right; - width:180px; - /*margin-top:53px;*/ -} - -.interieur .newscalendarTooltip, { - display:none; -} - - - -.interieur .colright .agendaCalendar, -.interieur .colright .highlight.menu, -#content .colright .right, -#content .colright #contentBlock-2 { - float: none; - width: 100%; -} -.interieur .colright .highlight.menu { - padding-bottom: 1px; -} - - -.home #content .right { - margin-top:3.7em; -} - -.interieur .highlight.menu { - margin-top:-1.5em; -} - -.right .tx-ttnews, -#contentBlock-2 .tx-ttnews { - background-color:#888; -} - -#content .right h2, -#content #contentBlock-2 h2 { - color:#FFF; - margin:0 5px 0em 5px; - font-weight:bold; - padding:5px 0 5px 0px; -} - -#content #contentBlock-2 h2 { - font-weight:normal; -} - -.home #content .right .agendaCalendar h2 { - border-bottom:1px solid #757575; -} - -.calendar-table { - width:100%; - padding-top:0.25em; - border-collapse:collapse; -} - -.calendar-table th, -.calendar-table td { - text-align:center; - border:1px solid #bfbfbf; - padding:3px; -} - -.calendar-table td, -.calendar-table td a { - color:#3c3b3b; -} - -.calendar-table td a { - font-weight:bold; -} - -.calendar-table th { - color:#000; - font-weight:normal; -} - -.calendar-table tr { - background-color:#FFF; -} - -.calendar-table tr.calendar-header { - background-color:#888; - height:1.5em; - border-left:1px solid #888; - border-right:1px solid #888; -} - -.calendar-table tr.calendar-header td { - border:none; -} -.calendar-table tr.calendar-header td.columYear, -.calendar-table tr.calendar-header a { - color:#FFF; - font-weight:normal; -} - -.calendar-table .linked_today, -.calendar-table .linked_today_nolink { - background-color:#bfbfbf; -} - -.calendar-table .calendar_cat { - border-bottom:none; -} - -.calendar-table .bottomMonthLink, -.calendar-table .calendar_cat { - text-align:left; -} - -.calendar-table .calendar_cat p, -.calendar-table .calendar_cat form{ - margin:0.5em; -} - -.calendar-table .calendar_cat p, -.calendar-table .calendar_cat select, -.calendar-table .bottomMonthLink a { - color:#767676; - font-weight:normal; -} - -.calendar-table .calendar_cat select { - width:100%; -} - -.calendar-table .bottomMonthLink { - border-top:none; -} - -.calendar-table .bottomMonthLink a { - display:block; - margin:0em 0.5em 0.5em 0.5em; - text-decoration:underline; -} - -.calendar-table .bottomMonthLink a:hover { - text-decoration:none; -} - -/* Bloc de mise en avant accueil */ - -#content .highlightLink { - width:99.5%; /* < 100 pour l'alignement avec le calendrier (2px pour les bordures) */ - background-color:#f5f5f5; - border:1px solid #d7d7d7; - margin:0.5em 0; -} - -#content .highlightLink h2 { - /*font-family: 'Yanone Kaffeesatz', sans-serif;*/ - font-family: 'yanone_kaffeesatz_thinregular', sans-serif; - font-weight:normal; - margin:0; - padding:0; - font-size:1.9em; -} - -#content .highlightLink h2, -#content .highlightLink h2 a { - color:#767676; - display:block; -} - -#content .highlightLink h2 a { - padding:12px 0 12px 50px; -} - -#content .highlightLink h2 a:hover { - text-decoration:none; -} - -#content .highlightLink.planguide h2 { - background: url(images/highlightLink_planguide.gif) no-repeat 10px center; -} - -#content .highlightLink.newsletter h2 { - background: url(images/highlightLink_newsletter.gif) no-repeat 10px center; -} - -#content .highlightLink.servicepublic { - background-color:#edf4f7; -} - -#content .highlightLink img { - margin:0; -} - -#content .highlightLink.servicepublic a { - padding:0; -} - -/* Bloc 5 colonnes */ - -.five_columns { - float:left; - width:100% -} - -.five_columns h3 { - font-size:0.85em; - margin:0; -} - -.five_columns p { - margin:0.5em 0 0.5em 0; -} - -.five_columns .col1, -.five_columns .col2, -.five_columns .col3, -.five_columns .col4, -.five_columns .col5 { - float:left; - width:18%; -} - -.five_columns .col2, -.five_columns .col3, -.five_columns .col4, -.five_columns .col5 { - margin-left:2.5%; -} - -#footer { - clear:both; - margin-top:2em; -} - -#footer p { - font-weight:bold; - /*margin-bottom:0.5em; modification na 23/12/2013*/ - margin-bottom : 2.2em; - color:#393939; -} - -#footer span { - font-weight:normal; - margin-left:1.5em; -} - -#footer hr { - border-top:none; - border-left:none; - border-right:none; - border-bottom:1px solid #dadada; -} - -#footer ul li { - float:left; - list-style:none; - margin: 0 0em 0 3em; - padding: 0 3em 0 0em; - background: url(images/toplink_separator.gif) no-repeat right center; -} - -#footer ul li.last { - background:none; -} - -#footer ul li a { - color:#4f8cc9; -} - -#footer img { - float:right; -} - -/* Pages int?rieures */ - -/*.interieur #menu .menuTop { - margin:8px 0 0px 0; -} - -.interieur #menu .menuTop li.current, -.interieur #menu .menuTop li.hover, -.interieur #menu .menuTop li:hover { - height:48px;/*45*/ -}*/ - -.interieur #menu .menuTop li.current a { - position:relative; - height:94%; -} - -.interieur #menu .menuTop li.current span.arrow { - background:url(images/menu_current.gif) no-repeat bottom center; - display:block; - width:13px; - height:7px; - position:absolute; - left:40%;/*45*/ - bottom:-16px;/*-16*/ - z-index:2; -} - - -/*.interieur #menu .menuTop li ul li.hover, -.interieur #menu .menuTop li ul li:hover { - height:375px; -}*/ - -.interieur #menu .menuTop li ul li ul li.hover, -.interieur #menu .menuTop li ul li ul li:hover { - height:auto; -} - -.interieur #menu .menuTop li.hover ul, -.interieur #menu .menuTop li:hover ul { - margin-top:-10px; -} - -.interieur #menu .menuTop li.hover ul ul, -.interieur #menu .menuTop li:hover ul ul { - margin:0; -} - -.interieur .toplinks li { - background-image: url(images/toplink_separator_interior.png); -} - -.interieur .toplinks li.last { - background:none; -} - -/* Toolbox */ - -.rss, .tx-rmaddthis-pi1, #readspeaker_button1, #rs_1 { - float:right; -} - -#readspeaker_button1 { - margin-left:3px; - margin-right:200px; - margin-bottom:0.25em; -} - -#toolBox { - float:right; - /*width:800px;*/ - margin-right:200px; - margin-bottom:5px; -} - -#toolBox li { - float:left; - margin:0 0.3em; -} - -/* Fil d'ariane */ - -p#ariane { - margin:1em 0 0em 0; -} - -/* Contenu */ - -#contentContainer { - clear:both; - float:left; - width:100%; - margin-top:-2em; -} - -#contentContainer .left { - float:left; - width:79.5%; - margin:0 2% 0 0; -} - -#contentContainer .right { - float:right; - width:18%; -} - -/* Colonne de droite pages internes */ -.interieur .agendaCalendar, -.interieur .highlight { - margin:0 0 1em 0; -} - -.interieur .highlight { - width:100%; - border-width:1px; - border-style:solid; -} - -.interieur .agendaCalendar h2, -.interieur .highlight h2 { - color: #FFFFFF; - font-weight: normal; - margin: 0 5px 0 8px ; - padding: 5px 0; - border:none; -} - -.interieur .agendaCalendar h3, -.interieur .highlight h3 { - border:none; - margin:0 0 0.25em 0; - padding:0; - color:#000000; - font-size:1em; -} - -.interieur .highlight .content { - background-color:#FFF; - padding:3% 5% 5% 5%; - width:90%; -} - -.interieur .highlight .content, -.interieur .highlight .content h3, -.interieur .highlight .content p { - font-family:Arial, Verdana; -} - -.interieur .highlight .content p { - margin:0; - color:#040404; -} - -/* Menu colonne de droite */ - -.interieur .highlight.menu { - border:none; -} - -.interieur .highlight.menu .content { - padding:0; - width:100%; -} - -.interieur .highlight.menu ul li { - padding:0 0% 0 11px; - /*margin:0.25em 0;*/ - margin:0.25em 1px 1px 0; - /*width:94%;*/ -} - -.interieur .highlight.menu ul li.first { - margin-top:0; -} - -.interieur .highlight.menu ul.submenu>li.current { - margin-left:-2px; /* pour que la fl?che soit coll?e ? gauche malgr? la bordure */ - background: url(images/arrow_white.png) no-repeat left 0.45em; -} - -.interieur .highlight.menu ul li.current a { - font-weight:bold; - padding-left:7px; /* adaptation : pour que la fl?che soit coll?e ? gauche malgr? la bordure */ -} - -.interieur .highlight.menu ul li.last a { - border:none; -} - - - -.interieur .highlight.menu ul.submenu2 li.current a .text{ - /*text-decoration:underline;*/ -} - -.interieur .highlight.menu ul.submenu2 li .chevron { - padding-right:4px; -} - -.interieur .highlight.menu ul li a { - color:#FFF; - display:block; - width:91%; - padding:5px 0 7px 5px; - border-bottom-width:1px; - border-bottom-style:solid; -} - -.interieur .highlight.menu ul li a:hover { - text-decoration:none; - color:#DDD; -} - -/* Contact Colonne de droite */ - -.interieur .highlight.contact .content p a { - display:block; - color:#767676; - padding-left:1.25em; - margin-top:1em; - background: url(images/contact_link.gif) no-repeat left center; -} - -/* Agenda Colonne de droite */ - -.interieur .highlight.agenda { - border:none; -} - -.calendar-table th, -.calendar-table td { - border-width:1px; - border-style:solid; -} - -.interieur .highlight.agenda h2 { - border-width:1px; - border-style:solid; -} - - -/* Cat?gories */ - -/* D?fault */ -.interieur .highlight.menu ul.submenu2 li a{ - color: #454548; -} - -.interieur #corpus .highlight.menu ul.submenu2 { - margin-left:-8px; - margin-bottom:-1px; - background-color:#FFF; -} - - -.interieur .agendaCalendar .calendar-table tr.calendar-header, -.interieur #headerContainer, -.interieur .agendaCalendar, -.interieur .highlight, -.highlight.menu ul { - background-color:#454548; -} - -.highlight, -.calendar-table th, -.calendar-table td, -.interieur .calendar-table tr.calendar-header { - border-color:#454548; -} - -.interieur .calendar-table tr.calendar-header, -.interieur .calendar-table th, -.interieur.calendar-table td, -.interieur .highlight.agenda h2 { - border-bottom-color:#888; -} - -.interieur .highlight.menu ul li a { - border-bottom-color:#888; -} - -.interieur .headerTopSearch .logo h1 a { - color:#FFF; -} - -.interieur .toplinks li, -.interieur .toplinks li a { - color:#FFF; -} - -#menuContainer #menu .menuTop li.current li a, -#menuContainer #menu .menuTop li.hover li a , -#menuContainer #menu .menuTop li li a:hover, -#menuContainer #menu .menuTop li:hover li a { - color:#717171; -} -#menuContainer #menu .menuTop li.current li li a{ - color:inherit; -} - -#menuContainer #menu .menuTop li.current a, -#menuContainer #menu .menuTop li.hover a , -#menuContainer #menu .menuTop li a:hover, -#menuContainer #menu .menuTop li:hover a { - color:#FFF; -} - -#menuContainer #menu .menuTop li.current li a, -#menuContainer #menu .menuTop li.hover li a , -#menuContainer #menu .menuTop li li a:hover, -#menuContainer #menu .menuTop li:hover li a { - color:#717171; -} -#menuContainer #menu .menuTop .submenu>ul>li>a:hover { - color:#744200; -} - -/*Actualit?s / Vid?o */ - - -.actuvideo #headerContainer, -.actuvideo .agendaCalendar, -.actuvideo .highlight, -.actuvideo .highlight.menu ul { - background-color:#62af50; -} - - -.actuvideo.interieur .highlight.menu ul.submenu2 li a { - color:#62af50; -} - -.interieur.actuvideo .highlight, -.actuvideo .calendar-table th, -.actuvideo .calendar-table td, -.interieur.actuvideo .highlight .calendar-table tr.calendar-header { - border-color:#62af50; -} - -.interieur.actuvideo .calendar-table tr.calendar-header, -.interieur.actuvideo .calendar-table th, -.interieur.actuvideo .calendar-table td, -.interieur.actuvideo .highlight.agenda h2 { - border-color:#62AF50; - -} -.interieur.actuvideo .calendar-table tr.calendar-header{ - background-color:#62AF50; -} -.interieur.cadrevie .highlight.menu ul li a { - border-bottom-color:#91b533; -} - -.interieur.actuvideo .headerTopSearch .logo h1 a { - color:#FFF; -} - -.interieur.actuvideo .toplinks li, -.interieur.actuvideo .toplinks li a { - color:#FFF; -} - -.actuvideo #menuContainer #menu .menuTop li.current a, -.actuvideo #menuContainer #menu .menuTop li.hover a , -.actuvideo #menuContainer #menu .menuTop li a:hover, -.actuvideo #menuContainer #menu .menuTop li:hover a { - color:#FFF; -} - -.actuvideo #menuContainer #menu .menuTop li.current li a, -.actuvideo #menuContainer #menu .menuTop li.hover li a , -.actuvideo #menuContainer #menu .menuTop li li a:hover, -.actuvideo #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} -.actuvideo #menuContainer #menu .menuTop .submenu>ul>li>a:hover { - color:#744200; -} - -/* Cadre de vie */ - - -.interieur.cadrevie .agendaCalendar .calendar-table tr.calendar-header, -.interieur.cadrevie #headerContainer, -.interieur.cadrevie .agendaCalendar, -.cadrevie .highlight, -.cadrevie .highlight.menu ul { - background-color:#91b533; -} - -.cadrevie.interieur .highlight.menu ul.submenu2 li a { - color:#91b533; -} - -.interieur.cadrevie .highlight, -.cadrevie .calendar-table th, -.cadrevie .calendar-table td, -.interieur.cadrevie .highlight .calendar-table tr.calendar-header { - border-color:#91b533; -} - -.interieur.cadrevie .calendar-table tr.calendar-header, -.interieur.cadrevie .calendar-table th, -.interieur.cadrevie .calendar-table td, -.interieur.cadrevie .highlight.agenda h2 { - border-color:#91B533; -} - -.interieur.cadrevie .highlight.menu ul li a { - border-bottom-color:#62af50; -} - -.interieur.cadrevie .headerTopSearch .logo h1 a { - color:#FFF; -} - -.interieur.cadrevie .toplinks li, -.interieur.cadrevie .toplinks li a { - color:#FFF; -} - -.cadrevie #menuContainer #menu .menuTop li.current a, -.cadrevie #menuContainer #menu .menuTop li.hover a , -.cadrevie #menuContainer #menu .menuTop li a:hover, -.cadrevie #menuContainer #menu .menuTop li:hover a { - color:#FFF; -} - -.cadrevie #menuContainer #menu .menuTop li.current li a, -.cadrevie #menuContainer #menu .menuTop li.hover li a , -.cadrevie #menuContainer #menu .menuTop li li a:hover, -.cadrevie #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.cadrevie #menuContainer #menu .menuTop .submenu>ul>li>a:hover { - color:#744200; -} - -/* Culture / Sports */ - -.interieur.culturesport .agendaCalendar .calendar-table tr.calendar-header, -.interieur.culturesport #headerContainer, -.interieur.culturesport .agendaCalendar, -.interieur.culturesport .highlight, -.interieur.culturesport .highlight.menu ul { - background-color:#e1a02a; -} - -.culturesport.interieur .highlight.menu ul.submenu2 li a { - color:#e1a02a; -} - -.interieur.culturesport .highlight, -.culturesport .calendar-table th, -.culturesport .calendar-table td, -.interieur.culturesport .calendar-table tr.calendar-header { - border-color:#e1a02a; -} - -.interieur.culturesport .calendar-table tr.calendar-header, -.interieur.culturesport .calendar-table th, -.interieur.culturesport.calendar-table td, -.interieur.culturesport .highlight.agenda h2 { - border-bottom-color:#d56d28; -} - -.interieur.culturesport .highlight.menu ul li a { - border-bottom-color:#d56d28; -} - -.interieur.culturesport .headerTopSearch .logo h1 a { - color:#FFF; -} - -.interieur.culturesport .toplinks li, -.interieur.culturesport .toplinks li a { - color:#FFF; -} - -.culturesport #menuContainer #menu .menuTop li.current li a, -.culturesport #menuContainer #menu .menuTop li.hover li a , -.culturesport #menuContainer #menu .menuTop li li a:hover, -.culturesport #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.culturesport #menuContainer #menu .menuTop li.current a, -.culturesport #menuContainer #menu .menuTop li.hover a , -.culturesport #menuContainer #menu .menuTop li a:hover, -.culturesport #menuContainer #menu .menuTop li:hover a { - color:#FFF; -} - -.culturesport #menuContainer #menu .menuTop li.current li a, -.culturesport #menuContainer #menu .menuTop li.hover li a , -.culturesport #menuContainer #menu .menuTop li li a:hover, -.culturesport #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.culturesport #menuContainer #menu .menuTop .submenu>ul>li>a:hover { - color:#744200; -} - -/* D?marches administratives - Renommé Etat Civil - ANCIEN - -.demarcheadmin #menu .menuTop li.current, -.demarcheadmin #menu .menuTop li.hover, -.demarcheadmin #menu .menuTop li:hover, -.interieur.demarcheadmin .agendaCalendar .calendar-table tr.calendar-header, -.demarcheadmin #menu .menuTop li.hover ul, -.demarcheadmin #menu .menuTop li:hover ul, -.interieur.demarcheadmin #headerContainer, -.interieur.demarcheadmin .agendaCalendar, -.interieur.demarcheadmin .highlight, -.interieur.demarcheadmin .highlight.menu ul, -#menuContainer #menu .menuTop li.menu_2555:hover, -#menuContainer #menu .menuTop li.menu_2555:hover ul { - background-color:#d56d28; -} - -.demarcheadmin.interieur .highlight.menu ul.submenu2 li a { - color:#d56d28; -} - -.interieur.demarcheadmin .highlight, -.demarcheadmin .calendar-table th, -.demarcheadmin .calendar-table td, -.interieur.demarcheadmin .calendar-table tr.calendar-header { - border-color:#d56d28; -} - -.interieur.demarcheadmin .calendar-table tr.calendar-header, -.interieur.demarcheadmin .calendar-table th, -.interieur.demarcheadmin.calendar-table td, -.interieur.demarcheadmin .highlight.agenda h2 { - border-bottom-color:#e1a02a; -} - -.interieur.demarcheadmin .highlight.menu ul li a { - border-bottom-color:#e1a02a; -} - -.interieur.demarcheadmin .headerTopSearch .logo h1 a { - color:#FFF; -} - -.interieur.demarcheadmin .toplinks li, -.interieur.demarcheadmin .toplinks li a { - color:#FFF; -} - -.demarcheadmin #menuContainer #menu .menuTop li.current li a, -.demarcheadmin #menuContainer #menu .menuTop li.hover li a , -.demarcheadmin #menuContainer #menu .menuTop li li a:hover, -.demarcheadmin #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.demarcheadmin #menuContainer #menu .menuTop li.current a, -.demarcheadmin #menuContainer #menu .menuTop li.hover a , -.demarcheadmin #menuContainer #menu .menuTop li a:hover, -.demarcheadmin #menuContainer #menu .menuTop li:hover a { - color:#FFF; -} - -.demarcheadmin #menuContainer #menu .menuTop li.current li a, -.demarcheadmin #menuContainer #menu .menuTop li.hover li a , -.demarcheadmin #menuContainer #menu .menuTop li li a:hover, -.demarcheadmin #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -*/ - -/* D?marches administratives - Renommé Etat Civil - NOUVEAU */ - -.interieur.demarcheadmin .agendaCalendar .calendar-table tr.calendar-header, -.interieur.demarcheadmin #headerContainer, -.interieur.demarcheadmin .agendaCalendar, -.interieur.demarcheadmin .highlight, -.interieur.demarcheadmin .highlight.menu ul { - background-color:#922083; -} - -.demarcheadmin.interieur .highlight.menu ul.submenu2 li a { - color:#922083; -} - -.interieur.demarcheadmin .highlight, -.demarcheadmin .calendar-table th, -.demarcheadmin .calendar-table td, -.interieur.demarcheadmin .calendar-table tr.calendar-header { - border-color:#922083; -} - -.interieur.demarcheadmin .calendar-table tr.calendar-header, -.interieur.demarcheadmin .calendar-table th, -.interieur.demarcheadmin.calendar-table td, -.interieur.demarcheadmin .highlight.agenda h2 { - border-bottom-color:#cc1b55; -} - -.interieur.demarcheadmin .highlight.menu ul li a { - border-bottom-color:#cc1b55; -} - -.interieur.demarcheadmin .headerTopSearch .logo h1 a { - color:#FFF; -} - -.interieur.demarcheadmin .toplinks li, -.interieur.demarcheadmin .toplinks li a { - color:#FFF; -} - -.demarcheadmin #menuContainer #menu .menuTop li.current li a, -.demarcheadmin #menuContainer #menu .menuTop li.hover li a , -.demarcheadmin #menuContainer #menu .menuTop li li a:hover, -.demarcheadmin #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.demarcheadmin #menuContainer #menu .menuTop li.current a, -.demarcheadmin #menuContainer #menu .menuTop li.hover a , -.demarcheadmin #menuContainer #menu .menuTop li a:hover, -.demarcheadmin #menuContainer #menu .menuTop li:hover a { - color:#FFF; -} - -.demarcheadmin #menuContainer #menu .menuTop li.current li a, -.demarcheadmin #menuContainer #menu .menuTop li.hover li a , -.demarcheadmin #menuContainer #menu .menuTop li li a:hover, -.demarcheadmin #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.demarcheadmin #menuContainer #menu .menuTop .submenu>ul>li>a:hover { - color:#744200; -} - - -/* Economie / Emploi ANCIEN - -.ecoemploi #menu .menuTop li.current, -.ecoemploi #menu .menuTop li.hover, -.ecoemploi #menu .menuTop li:hover, -.interieur.ecoemploi .agendaCalendar .calendar-table tr.calendar-header, -.ecoemploi #menu .menuTop li.hover ul, -.ecoemploi #menu .menuTop li:hover ul, -.interieur.ecoemploi #headerContainer, -.interieur.ecoemploi .agendaCalendar, -.interieur.ecoemploi .highlight, -.interieur.ecoemploi .highlight.menu ul, -#menuContainer #menu .menuTop li.menu_4395:hover, -#menuContainer #menu .menuTop li.menu_4395:hover ul { - background-color:#cc1b55; -} - -.ecoemploi.interieur .highlight.menu ul.submenu2 li a { - color:#cc1b55; -} - -.interieur.ecoemploi .highlight, -.ecoemploi .calendar-table th, -.ecoemploi .calendar-table td, -.interieur.ecoemploi .calendar-table tr.calendar-header { - border-color:#cc1b55; -} - -.interieur.ecoemploi .calendar-table tr.calendar-header, -.interieur.ecoemploi .calendar-table th, -.interieur.ecoemploi.calendar-table td, -.interieur.ecoemploi .highlight.agenda h2 { - border-bottom-color:#922083; -} - -.interieur.ecoemploi .highlight.menu ul li a { - border-bottom-color:#922083; -} - -.interieur.ecoemploi .headerTopSearch .logo h1 a { - color:#FFF; -} - -.interieur.ecoemploi .toplinks li, -.interieur.ecoemploi .toplinks li a { - color:#FFF; -} - -.ecoemploi #menuContainer #menu .menuTop li.current li a, -.ecoemploi #menuContainer #menu .menuTop li.hover li a , -.ecoemploi #menuContainer #menu .menuTop li li a:hover, -.ecoemploi #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.ecoemploi #menuContainer #menu .menuTop li.current a, -.ecoemploi #menuContainer #menu .menuTop li.hover a , -.ecoemploi #menuContainer #menu .menuTop li a:hover, -.ecoemploi #menuContainer #menu .menuTop li:hover a { - color:#FFF; -} - -.ecoemploi #menuContainer #menu .menuTop li.current li a, -.ecoemploi #menuContainer #menu .menuTop li.hover li a , -.ecoemploi #menuContainer #menu .menuTop li li a:hover, -.ecoemploi #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -*/ - -/* Economie / Emploi NOUVEAU */ - -.interieur.ecoemploi .agendaCalendar .calendar-table tr.calendar-header,.interieur.ecoemploi #headerContainer, -.interieur.ecoemploi .agendaCalendar, -.interieur.ecoemploi .highlight, -.interieur.ecoemploi .highlight.menu ul { - background-color:#d56d28; -} - -.ecoemploi.interieur .highlight.menu ul.submenu2 li a { - color:#d56d28; -} - -.interieur.ecoemploi .highlight, -.ecoemploi .calendar-table th, -.ecoemploi .calendar-table td, -.interieur.ecoemploi .calendar-table tr.calendar-header { - border-color:#d56d28; -} - -.interieur.ecoemploi .calendar-table tr.calendar-header, -.interieur.ecoemploi .calendar-table th, -.interieur.ecoemploi.calendar-table td, -.interieur.ecoemploi .highlight.agenda h2 { - border-bottom-color:#e1a02a; -} - -.interieur.ecoemploi .highlight.menu ul li a { - border-bottom-color:#e1a02a; -} - -.interieur.ecoemploi .headerTopSearch .logo h1 a { - color:#FFF; -} - -.interieur.ecoemploi .toplinks li, -.interieur.ecoemploi .toplinks li a { - color:#FFF; -} - -.ecoemploi #menuContainer #menu .menuTop li.current li a, -.ecoemploi #menuContainer #menu .menuTop li.hover li a , -.ecoemploi #menuContainer #menu .menuTop li li a:hover, -.ecoemploi #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.ecoemploi #menuContainer #menu .menuTop li.current a, -.ecoemploi #menuContainer #menu .menuTop li.hover a , -.ecoemploi #menuContainer #menu .menuTop li a:hover, -.ecoemploi #menuContainer #menu .menuTop li:hover a { - color:#FFF; -} - -.ecoemploi #menuContainer #menu .menuTop li.current li a, -.ecoemploi #menuContainer #menu .menuTop li.hover li a , -.ecoemploi #menuContainer #menu .menuTop li li a:hover, -.ecoemploi #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.ecoemploi #menuContainer #menu .menuTop .submenu>ul>li>a:hover { - color:#744200; -} - -/* Enfance / Jeunesse ANCIEN - -.enfantjeune #menu .menuTop li.current, -.enfantjeune #menu .menuTop li.hover, -.enfantjeune #menu .menuTop li:hover, -.interieur.enfantjeune .agendaCalendar .calendar-table tr.calendar-header, -.enfantjeune #menu .menuTop li.hover ul, -.enfantjeune #menu .menuTop li:hover ul, -.interieur.enfantjeune #headerContainer, -.interieur.enfantjeune .agendaCalendar, -.interieur.enfantjeune .highlight, -.interieur.enfantjeune .highlight.menu ul, -#menuContainer #menu .menuTop li.menu_4396:hover, -#menuContainer #menu .menuTop li.menu_4396:hover ul { - background-color:#922083; -} - -.enfantjeune.interieur .highlight.menu ul.submenu2 li a { - color:#922083; -} - -.interieur.enfantjeune .highlight, -.enfantjeune .calendar-table th, -.enfantjeune .calendar-table td, -.interieur.enfantjeune .calendar-table tr.calendar-header { - border-color:#922083; -} - -.interieur.enfantjeune .calendar-table tr.calendar-header, -.interieur.enfantjeune .calendar-table th, -.interieur.enfantjeune.calendar-table td, -.interieur.enfantjeune .highlight.agenda h2 { - border-bottom-color:#cc1b55; -} - -.interieur.enfantjeune .highlight.menu ul li a { - border-bottom-color:#cc1b55; -} - -.interieur.enfantjeune .headerTopSearch .logo h1 a { - color:#FFF; -} - -.interieur.enfantjeune .toplinks li, -.interieur.enfantjeune .toplinks li a { - color:#FFF; -} - -.enfantjeune #menuContainer #menu .menuTop li.current li a, -.enfantjeune #menuContainer #menu .menuTop li.hover li a , -.enfantjeune #menuContainer #menu .menuTop li li a:hover, -.enfantjeune #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.enfantjeune #menuContainer #menu .menuTop li.current a, -.enfantjeune #menuContainer #menu .menuTop li.hover a , -.enfantjeune #menuContainer #menu .menuTop li a:hover, -.enfantjeune #menuContainer #menu .menuTop li:hover a { - color:#FFF; -} - -.enfantjeune #menuContainer #menu .menuTop li.current li a, -.enfantjeune #menuContainer #menu .menuTop li.hover li a , -.enfantjeune #menuContainer #menu .menuTop li li a:hover, -.enfantjeune #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -*/ - -/* Enfance / Jeunesse NOUVEAU */ - -.interieur.enfantjeune .agendaCalendar .calendar-table tr.calendar-header, -.interieur.enfantjeune #headerContainer, -.interieur.enfantjeune .agendaCalendar, -.interieur.enfantjeune .highlight, -.interieur.enfantjeune .highlight.menu ul { - background-color:#cc1b55; -} - -.enfantjeune.interieur .highlight.menu ul.submenu2 li a { - color:#cc1b55; -} - -.interieur.enfantjeune .highlight, -.enfantjeune .calendar-table th, -.enfantjeune .calendar-table td, -.interieur.enfantjeune .calendar-table tr.calendar-header { - border-color:#cc1b55; -} - -.interieur.enfantjeune .calendar-table tr.calendar-header, -.interieur.enfantjeune .calendar-table th, -.interieur.enfantjeune.calendar-table td, -.interieur.enfantjeune .highlight.agenda h2 { - border-bottom-color:#922083; -} - -.interieur.enfantjeune .highlight.menu ul li a { - border-bottom-color:#922083; -} - -.interieur.enfantjeune .headerTopSearch .logo h1 a { - color:#FFF; -} - -.interieur.enfantjeune .toplinks li, -.interieur.enfantjeune .toplinks li a { - color:#FFF; -} - -.enfantjeune #menuContainer #menu .menuTop li.current li a, -.enfantjeune #menuContainer #menu .menuTop li.hover li a , -.enfantjeune #menuContainer #menu .menuTop li li a:hover, -.enfantjeune #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.enfantjeune #menuContainer #menu .menuTop li.current a, -.enfantjeune #menuContainer #menu .menuTop li.hover a , -.enfantjeune #menuContainer #menu .menuTop li a:hover, -.enfantjeune #menuContainer #menu .menuTop li:hover a { - color:#FFF; -} - -.enfantjeune #menuContainer #menu .menuTop li.current li a, -.enfantjeune #menuContainer #menu .menuTop li.hover li a , -.enfantjeune #menuContainer #menu .menuTop li li a:hover, -.enfantjeune #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.enfantjeune #menuContainer #menu .menuTop .submenu>ul>li>a:hover { - color:#744200; -} - -/* Pratique / Services en ligne */ - -.interieur.pratiqueservice .agendaCalendar .calendar-table tr.calendar-header, -.interieur.pratiqueservice #headerContainer, -.interieur.pratiqueservice .agendaCalendar, -.interieur.pratiqueservice .highlight, -.interieur.pratiqueservice .highlight.menu ul { - background-color:#641557; -} - -.pratiqueservice.interieur .highlight.menu ul.submenu2 li a { - color:#641557; -} - -.interieur.pratiqueservice .highlight, -.pratiqueservice .calendar-table th, -.pratiqueservice .calendar-table td, -.interieur.pratiqueservice .calendar-table tr.calendar-header { - border-color:#641557; -} - -.interieur.pratiqueservice .calendar-table tr.calendar-header, -.interieur.pratiqueservice .calendar-table th, -.interieur.pratiqueservice.calendar-table td, -.interieur.pratiqueservice .highlight.agenda h2 { - border-bottom-color:#85477B; -} - -.interieur.pratiqueservice .highlight.menu ul li a { - border-bottom-color:#85477B; -} - -.interieur.pratiqueservice .headerTopSearch .logo h1 a { - color:#FFF; -} - -.interieur.pratiqueservice .toplinks li, -.interieur.pratiqueservice .toplinks li a { - color:#FFF; -} - -.pratiqueservice #menuContainer #menu .menuTop li.current li a, -.pratiqueservice #menuContainer #menu .menuTop li.hover li a , -.pratiqueservice #menuContainer #menu .menuTop li li a:hover, -.pratiqueservice #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.pratiqueservice #menuContainer #menu .menuTop li.current a, -.pratiqueservice #menuContainer #menu .menuTop li.hover a , -.pratiqueservice #menuContainer #menu .menuTop li a:hover, -.pratiqueservice #menuContainer #menu .menuTop li:hover a { - color:#FFF; -} - -.pratiqueservice #menuContainer #menu .menuTop li.current li a, -.pratiqueservice #menuContainer #menu .menuTop li.hover li a , -.pratiqueservice #menuContainer #menu .menuTop li li a:hover, -.pratiqueservice #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.pratiqueservice #menuContainer #menu .menuTop .submenu>ul>li>a:hover { - color:#744200; -} - -/* Solidarit? / Sant? */ - -.interieur.solidaritesante .agendaCalendar .calendar-table tr.calendar-header, -.interieur.solidaritesante #headerContainer, -.interieur.solidaritesante .agendaCalendar, -.interieur.solidaritesante .highlight, -.interieur.solidaritesante .highlight.menu ul { - background-color:#3c6ab7; -} - -.solidaritesante.interieur .highlight.menu ul.submenu2 li a { - color:#3c6ab7; -} - -.interieur.solidaritesante .highlight, -.solidaritesante .calendar-table th, -.solidaritesante .calendar-table td, -.interieur.solidaritesante .calendar-table tr.calendar-header { - border-color:#3c6ab7; -} - -.interieur.solidaritesante .calendar-table tr.calendar-header, -.interieur.solidaritesante .calendar-table th, -.interieur.solidaritesante.calendar-table td, -.interieur.solidaritesante .highlight.agenda h2 { - border-bottom-color:#5ba1e1; -} - -.interieur.solidaritesante .highlight.menu ul li a { - border-bottom-color:#5ba1e1; -} - -.interieur.solidaritesante .headerTopSearch .logo h1 a { - color:#FFF; -} - -.interieur.solidaritesante .toplinks li, -.interieur.solidaritesante .toplinks li a { - color:#FFF; -} - -.solidaritesante #menuContainer #menu .menuTop li.current li a, -.solidaritesante #menuContainer #menu .menuTop li.hover li a , -.solidaritesante #menuContainer #menu .menuTop li li a:hover, -.solidaritesante #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.solidaritesante #menuContainer #menu .menuTop li.current a, -.solidaritesante #menuContainer #menu .menuTop li.hover a , -.solidaritesante #menuContainer #menu .menuTop li a:hover, -.solidaritesante #menuContainer #menu .menuTop li:hover a { - color:#FFF; -} - -.solidaritesante #menuContainer #menu .menuTop li.current li a, -.solidaritesante #menuContainer #menu .menuTop li.hover li a , -.solidaritesante #menuContainer #menu .menuTop li li a:hover, -.solidaritesante #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.solidaritesante #menuContainer #menu .menuTop .submenu>ul>li>a:hover { - color:#744200; -} - - -/* Vie municipale / D?mocratie locale */ - -.interieur.viemunicipale .agendaCalendar .calendar-table tr.calendar-header, -.interieur.viemunicipale #headerContainer, -.interieur.viemunicipale .agendaCalendar, -.interieur.viemunicipale .highlight, -.interieur.viemunicipale .highlight.menu ul { - background-color:#5ba1e1; -} - -.viemunicipale.interieur .highlight.menu ul.submenu2 li a { - color:#5ba1e1; -} - -.interieur.viemunicipale .highlight, -.viemunicipale .calendar-table th, -.viemunicipale .calendar-table td, -.interieur.viemunicipale .calendar-table tr.calendar-header { - border-color:#5ba1e1; -} - -.interieur.viemunicipale .calendar-table tr.calendar-header, -.interieur.viemunicipale .calendar-table th, -.interieur.viemunicipale.calendar-table td, -.interieur.viemunicipale .highlight.agenda h2 { - border-bottom-color:#3c6ab7; -} - -.interieur.viemunicipale .highlight.menu ul li a { - border-bottom-color:#3c6ab7; -} - -.interieur.viemunicipale .headerTopSearch .logo h1 a { - color:#FFF; -} - -.interieur.viemunicipale .toplinks li, -.interieur.viemunicipale .toplinks li a { - color:#FFF; -} - -.viemunicipale #menuContainer #menu .menuTop li.current li a, -.viemunicipale #menuContainer #menu .menuTop li.hover li a , -.viemunicipale #menuContainer #menu .menuTop li li a:hover, -.viemunicipale #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.viemunicipale #menuContainer #menu .menuTop li.current a, -.viemunicipale #menuContainer #menu .menuTop li.hover a , -.viemunicipale #menuContainer #menu .menuTop li a:hover, -.viemunicipale #menuContainer #menu .menuTop li:hover a { - color:#FFF; -} - -.viemunicipale #menuContainer #menu .menuTop li.current li a, -.viemunicipale #menuContainer #menu .menuTop li.hover li a , -.viemunicipale #menuContainer #menu .menuTop li li a:hover, -.viemunicipale #menuContainer #menu .menuTop li:hover li a { - color:#717171; -} - -.viemunicipale #menuContainer #menu .menuTop .submenu>ul>li>a:hover { - color:#744200; -} - -DIV.csc-textpic DIV.csc-textpic-imagewrap .csc-textpic-image .csc-textpic-caption { - font-size: 0.7em; - font-style: italic; -} - -/* R?sultats de recherche */ - -.tx-indexedsearch-res table { - font-size: 0.8em; - border-top: solid 1px #E8E8E8; - padding: 1em 0 0; - margin: 1em 0 0; -} - .tx-indexedsearch-res { - border-bottom: solid 1px #E8E8E8; - padding: 0 0 1em; - margin: 0 0 1em; - } - - .tx-indexedsearch-res .tx-indexedsearch-res { - margin: 0; - padding: 0; - border-bottom: 0 none; - } - #content #contentBlock-1 .tx-indexedsearch-res table td.tx-indexedsearch-title a, - .tx-indexedsearch-res table td.tx-indexedsearch-title a, - .tx-indexedsearch-res table td.tx-indexedsearch-title, - .tx-indexedsearch-res table td.tx-indexedsearch-percent { - color: #50A7FF; - } - - #content #contentBlock-1 .tx-indexedsearch-res table td.tx-indexedsearch-title a, - .tx-indexedsearch-res table td.tx-indexedsearch-title a { - text-decoration: underline; - } - - #content #contentBlock-1 .tx-indexedsearch-res table td.tx-indexedsearch-title a:hover, - .tx-indexedsearch-res table td.tx-indexedsearch-title a:hover { - text-decoration: none; - } - - #contentBlock-1 .tx-indexedsearch .tx-indexedsearch-res table td.tx-indexedsearch-info, - .tx-indexedsearch .tx-indexedsearch-res table td.tx-indexedsearch-info { - background: none; - font-size: 0.9em; - padding: 0.5em 0 0; - } - - #contentBlock-1 .tx-indexedsearch .tx-indexedsearch-res table td.tx-indexedsearch-descr, - .tx-indexedsearch .tx-indexedsearch-res table td.tx-indexedsearch-descr { - font-size: 0.9em; - font-style: normal; - padding: 0.5em 0 0; - } - - .tx-indexedsearch .tx-indexedsearch-whatis { - - } - - .tx-indexedsearch .tx-indexedsearch-whatis .tx-indexedsearch-sw { - font-style: normal; - } - - .tx-indexedsearch-searchbox { - - } - - .tx-indexedsearch-searchbox input.tx-indexedsearch-searchbox-button { - background: none; - border: solid 2px #454548; - background: #454548; - color: #FFFFFF; - cursor: pointer; - } - - .tx-indexedsearch-searchbox label { - font-size: 0.8em; - float: left; - width: 11em; - } - .tx-indexedsearch-searchbox select, - .tx-indexedsearch-searchbox input{ - float: left; - margin: 0 0.5em 0 0; - } - - .tx-indexedsearch-searchbox div { - margin: 0.5em 0; - float: left; - clear: both; - width: 100%; - } - -/* #17534 */ -/* -#menuContainer #menu .menuTop .menu_4392 .submenu>ul>.last { - position: absolute; - top: 200px; - width: 172px; -} -#menuContainer #menu .menuTop .menu_4398 .submenu>ul>.last { - position: absolute; - top: 180px; - width: 172px; -}*/ -/* Fin #17534 */ - - -.tx-kesmallads-pi1-listrow, .tx-kesmallads-pi1-listrow-odd { - margin-bottom: 30px; -} -.tx-kesmallads-pi1-listrow h2, .tx-kesmallads-pi1-listrow-odd h2 { - margin-top: 0; -} - -/* #19300 */ -.art .textimg { - margin-top:8px; -} -/* Fin #19300 */ - -/**********Modif remplacement dechevron submenu******/ -.cadrevie .submenu2 li.current{ - background-repeat:no-repeat; - background-position: 3px 7px; - background-image:url(./images/puce_verte.png); -} -.actuvideo .submenu2 li.current{ - background-repeat:no-repeat; - background-position: 3px 7px; - background-image:url(./images/puce_verte_fonce.png); -} -.viemunicipale .submenu2 li.current{ - background-repeat:no-repeat; - background-position: 3px 7px; - background-image:url(./images/puce_bleu_clair.png); -} -.ecoemploi .submenu2 li.current{ - background-repeat:no-repeat; - background-position: 3px 7px; - background-image:url(./images/puce_orange.png); -} -.enfantjeune .submenu2 li.current{ - background-repeat:no-repeat; - background-position: 3px 7px; - background-image:url(./images/puce_rose_fonce.png); -} -.demarcheadmin .submenu2 li.current{ - background-repeat:no-repeat; - background-position: 3px 7px; - background-image:url(./images/puce_violet.png); -} -.pratiqueservice .submenu2 li.current{ - background-repeat:no-repeat; - background-position: 3px 7px; - background-image:url(./images/puce_violet_fonce.png); -} -.solidaritesante .submenu2 li.current{ - background-repeat:no-repeat; - background-position: 3px 7px; - background-image:url(./images/puce_bleu_fonce.png); -} -.culturesport .submenu2 li.current{ - background-repeat:no-repeat; - background-position: 3px 7px; - background-image:url(./images/puce_orange_clair.png); -} - -#menu{ - width:1170px; - margin:0 auto; - position:relative; - font-size:1em; - z-index:5001; -} -#dessous_bloc_menu{ - background-image:url(../images/interface/bordure_dessous_bloc_menu.png); - background-repeat:repeat-x; - background-position:left top; - height:13px; - display:block; -} - - -/********************Nouveau Menu******************************/ -#navigation_principale{ - width:985px; - float:left; - z-index:2000; - -} -#menu li.home { - height:48px; - padding:0; - float:left; -} -#menuContainer #menu .menuTop li.home a { - border-right:none; - width:40px; - height:48px; - display:block; - padding:0; - background: url(images/home.gif) no-repeat left 5px; - background-color:#454548; -} - - -.home #menuContainer #menu .menuTop > li.current, -.home #menuContainer #menu .menuTop > li.hover, -.home #menuContainer #menu .menuTop > li:hover { - /*height:55px;*/ -} -#menu ul{ - margin:0px 0 0 0; - float:left; -} -#menu ul li.level1{ - float:left; - list-style-type:none; - color:#717171; - font-weight:bold; - border-left:1px solid #ccc; - padding:3px 10px; - z-index:70; - margin:0px; - height:42px; -} -#menu ul li a, -#menu ul li a:link, -#menu ul li a:visited -{ - color:#666; - text-decoration:none; - -} -#menu ul li.level1:hover -{ - color:#FFF; - -} - -/******gestion des menus de niveau 1**********/ -li.home a{ - font-size:0; - color:transparent; -} -.menu1{ - width:70px; - display:block; -} -li:hover.menu1{ - width:70px; - background-color:#62AF50; - color:#FFF; -} - -.menu1.active{ - background-color:#62AF50; - color:#FFF !important; -} -.menu2{ - width:60px; - display:block; -} -li:hover.menu2{ - width:60px; - background-color:#91B533; - color:#FFF; -} -.menu2.active{ - background-color:#91B533; - color:#FFF !important; -} -.menu3{ - width:60px; - display:block; -} -li:hover.menu3{ - width:60px; - background-color:#E1A02A; - color:#FFF; -} -.menu3.active{ - background-color:#E1A02A; - color:#FFF !important; -} -.menu4{ - width:70px; - display:block; -} -li:hover.menu4{ - width:70px; - background-color:#D56D28; - color:#FFF; -} -.menu4.active{ - background-color:#D56D28; - color:#FFF !important; -} -.menu5{ - width:70px; - display:block; -} -li:hover.menu5{ - width:70px; - background-color:#CC1B55; - color:#FFF; -} -.menu5.active{ - background-color:#CC1B55; - color:#FFF !important; -} -.menu6{ - width:70px; - display:block; -} -li:hover.menu6{ - width:70px; - background-color:#922083; - color:#FFF; -} -.menu6.active{ - background-color:#922083; - color:#FFF !important; -} -.menu7{ - width:110px; - display:block; -} -li:hover.menu7{ - width:110px; - background-color:#641557; - color:#FFF; -} -.menu7.active{ - background-color:#641557; - color:#FFF !important; -} -.menu8{ - width:70px; - display:block; -} -li:hover.menu8{ - width:70px; - /*background-color:#922083;*/ - background-color:#3c6ab7; - - color:#FFF; -} -.menu8.active{ - /*background-color:#922083;*/ - background-color:#3c6ab7; - color:#FFF !important; -} -.menu9{ - width:120px; - display:block; -} -li:hover.menu9{ - width:120px; - background-color:#5BA1E1; - color:#FFF; -} -.menu9.active{ - background-color:#5BA1E1; - color:#FFF !important; -} -#navigation_principale .sous-menu{ - display:block; -} -/***********************************************************************/ -/*************************Sous menu principal***************************/ -/***********************************************************************/ -.sousmenu_principal_contenu { - position: absolute; - top: 52px; - background-color:#FFF; - left: 0; - width:965px; - min-height:260px; - float:left; - display:block; - z-index:200; - padding-bottom:0px; -} -/*****on cache les sous-menu******/ -.menu1 .sousmenu_principal_contenu{ - display:none; - z-index:200; - border:10px solid #62AF50; -} -.menu2 .sousmenu_principal_contenu{ - display:none;z-index:200; - border:10px solid #91B533; -} -.menu3 .sousmenu_principal_contenu{ - display:none;z-index:200; - border:10px solid #E1A02A; -} -.menu4 .sousmenu_principal_contenu{ - display:none;z-index:200; - border:10px solid #D56D28; -} -.menu5 .sousmenu_principal_contenu{ - display:none;z-index:200; - border:10px solid #CC1B55; -} -.menu6 .sousmenu_principal_contenu{ - display:none;z-index:200; - border:10px solid #922083; -} -.menu7 .sousmenu_principal_contenu{ - display:none;z-index:200; - border:10px solid #641557; -} -.menu8 .sousmenu_principal_contenu{ - display:none;z-index:200; - /*border:10px solid #922083;*/ - border:10px solid #3c6ab7; - -} -.menu9 .sousmenu_principal_contenu{ - display:none;z-index:200; - border:10px solid #5BA1E1; -} -/*****on les reaffcihe au passage de la souris sur le li ******/ -li.menu1:hover .sousmenu_principal_contenu{ - display:block; -} -li.menu2:hover .sousmenu_principal_contenu{ - display:block; -} -li.menu3:hover .sousmenu_principal_contenu{ - display:block; -} -li.menu4:hover .sousmenu_principal_contenu{ - display:block; -} -li.menu5:hover .sousmenu_principal_contenu{ - display:block; -} -li.menu6:hover .sousmenu_principal_contenu{ - display:block; -} -li.menu7:hover .sousmenu_principal_contenu{ - display:block; -} -li.menu8:hover .sousmenu_principal_contenu{ - display:block; -} -li.menu9:hover .sousmenu_principal_contenu{ - display:block; -} -ul.sous-menu .menu_niv2{ - text-align: left; - z-index: 60; - top:0; -} -ul.sous-menu .menu_niv2 li { - border:0; -} -ul.menu_niv2{ - float:left; - width:100%; -} -.spacer_colonne_gauche { - float: left; - width: 19%; - z-index: 200; - position:relative; - margin:0 1%; -} -/*************************sousmenu_titre***************************/ - -ul.sousmenu_titre { - margin:0 !important; - padding:0 !important; - top:0; - height:auto; -} -#menu ul li.sousmenu_titre{ - border:none; - left:0; - height:100%; - width:100%; - margin-left:40px; - padding:10px 0; -} -#menu ul li.sousmenu_titre a{ - font-family: 'yanone_kaffeesatz_thinregular'; - font-weight:normal; - font-size:1.5em; - margin:10px 0 10px 0; - width:100%; - float:left; - text-decoration:none; -} -#menu ul.sousmenu2 li a{ - margin:0px 0; - width:100%; -} -a.titre_sousmenuprincipal, -a.titre_sousmenuprincipal:link, -a.titre_sousmenuprincipal:visited { - color:#333333; - text-decoration:none; -} -a.titre_sousmenuprincipal:hover{ - text-decoration:underline; -} -/*************************Sous_menu2***************************/ -#menu ul li ul.sousmenu2 { - float:left; - width:100%; - height:auto; - margin:0px 0 10px 0; -} -#menu ul li ul.sousmenu2 li{ - border-right:0px solid #000 !important; - float:left; - width:100%; - padding:0 !important; - margin:0 0 0 5px; - height:auto; - font-size:0.8em; -} -#menu ul li.sousmenu_titre ul.sousmenu2 li a { - font-family:arial; - font-size: 1.3em; - list-style-type: none; - color: #666; - line-height:1.5; - text-decoration: none; - display: block; - margin:0px 0; - width:100%; -} -.sousmenu_image { - float: right; -} -li.level1 ul li a:hover{ - text-decoration:none; - color:#744200 !important; -} -/********************correction pour les tirets du menu qui ne s'affichaient pas*****************/ - -.interieur .highlight.menu ul li.last ul.submenu2 li.last a { - border-bottom:none; -} -/*actuvideo*/ -.actuvideo .highlight.menu ul li.last ul.submenu2 li a { - border-bottom:1px solid #888888; -} -.cadrevie .highlight.menu ul li.last ul.submenu2 li a { - border-bottom:1px solid #62AF50; -} -.culturesport .highlight.menu ul li.last ul.submenu2 li a { - border-bottom:1px solid #D56D28; -} -.ecoemploi .highlight.menu ul li.last ul.submenu2 li a { - border-bottom:1px solid #E1A02A; -} -.enfantjeune .highlight.menu ul li.last ul.submenu2 li a { - border-bottom:1px solid #922083; -} -.demarcheadmin .highlight.menu ul li.last ul.submenu2 li a { - border-bottom:1px solid #CC1B55; -} -.pratiqueservice .highlight.menu ul li.last ul.submenu2 li a { - border-bottom:1px solid #85477B; -} -.solidaritesante .highlight.menu ul li.last ul.submenu2 li a { - border-bottom:1px solid #5BA1E1; -} -.viemunicipale .highlight.menu ul li.last ul.submenu2 li a { - border-bottom:1px solid #3C6AB7; -} -/********************popup (infobulle)********************/ -.einfobulle_active { - top:20% !important; - left:30% !important; - right:30% !important; -} -.einfobulle_active p{ - padding:5px 0; -} -.tx-ebulleinfo-pi1_active{ - z-index: 800 !important;; -} -.einfobulle_fermer_active{ - font-size: 25px !important; - font-weight: bold; -} -.einfobulle_fermer,.einfobulle_fermer_active{ - margin-bottom: 10px !important; -} -.einfobulle_fermer.einfobulle_fermer_active > a { - color: #000 !important; - text-decoration: none !important; -} -/**********Onglet bloc photos Videos***********/ -.onglets { - clear: both; - padding: 0px; - position: relative; - background-color:#F0ECEC; -} -#onglet_first,#onglet_second{padding:5px;max-height: 140px;} -.onglets h3 { - cursor:pointer; -} -#onglet_1.active, .display_onglet_1 #onglet_1 { - background-color: #FFFFFF; -} - -.onglets h3 { - background-color:#C5C4C4; - margin: 0; - padding: 5px; - width:90px; - font-size:0.7em; -} -.visible { - display: block; -} -.invisible { - display: none; -} - -#onglet_2 { - left: 80px; - position: absolute; - top: 0; -} - -#onglet_2 h3.active { - background-color:#F0ECEC !important; -} -#onglet_1 h3.active { - background-color:#F0ECEC !important; -} -.onglets DIV.csc-textpic DIV.csc-textpic-single-image IMG{margin-bottom:0;} \ No newline at end of file diff --git a/common/static/f-s-b/css/yanonekaffeesatz-regular-webfont.eot b/common/static/f-s-b/css/yanonekaffeesatz-regular-webfont.eot deleted file mode 100644 index f227f02..0000000 Binary files a/common/static/f-s-b/css/yanonekaffeesatz-regular-webfont.eot and /dev/null differ diff --git a/common/static/f-s-b/css/yanonekaffeesatz-regular-webfont.svg b/common/static/f-s-b/css/yanonekaffeesatz-regular-webfont.svg deleted file mode 100644 index 4a21622..0000000 --- a/common/static/f-s-b/css/yanonekaffeesatz-regular-webfont.svg +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/common/static/f-s-b/css/yanonekaffeesatz-regular-webfont.ttf b/common/static/f-s-b/css/yanonekaffeesatz-regular-webfont.ttf deleted file mode 100644 index 37a1e56..0000000 Binary files a/common/static/f-s-b/css/yanonekaffeesatz-regular-webfont.ttf and /dev/null differ diff --git a/common/static/f-s-b/css/yanonekaffeesatz-regular-webfont.woff b/common/static/f-s-b/css/yanonekaffeesatz-regular-webfont.woff deleted file mode 100644 index e8e47d9..0000000 Binary files a/common/static/f-s-b/css/yanonekaffeesatz-regular-webfont.woff and /dev/null differ diff --git a/common/static/f-s-b/css/yanonekaffeesatz-thin-webfont.eot b/common/static/f-s-b/css/yanonekaffeesatz-thin-webfont.eot deleted file mode 100644 index 7636787..0000000 Binary files a/common/static/f-s-b/css/yanonekaffeesatz-thin-webfont.eot and /dev/null differ diff --git a/common/static/f-s-b/css/yanonekaffeesatz-thin-webfont.svg b/common/static/f-s-b/css/yanonekaffeesatz-thin-webfont.svg deleted file mode 100644 index 20c09b3..0000000 --- a/common/static/f-s-b/css/yanonekaffeesatz-thin-webfont.svg +++ /dev/null @@ -1,242 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/common/static/f-s-b/css/yanonekaffeesatz-thin-webfont.ttf b/common/static/f-s-b/css/yanonekaffeesatz-thin-webfont.ttf deleted file mode 100644 index c9457f4..0000000 Binary files a/common/static/f-s-b/css/yanonekaffeesatz-thin-webfont.ttf and /dev/null differ diff --git a/common/static/f-s-b/css/yanonekaffeesatz-thin-webfont.woff b/common/static/f-s-b/css/yanonekaffeesatz-thin-webfont.woff deleted file mode 100644 index 3c1bf89..0000000 Binary files a/common/static/f-s-b/css/yanonekaffeesatz-thin-webfont.woff and /dev/null differ diff --git a/common/static/f-s-b/img/3_fleurs_footer.jpg b/common/static/f-s-b/img/3_fleurs_footer.jpg deleted file mode 100644 index a432cca..0000000 Binary files a/common/static/f-s-b/img/3_fleurs_footer.jpg and /dev/null differ diff --git a/common/static/f-s-b/img/Ordi_20.jpg b/common/static/f-s-b/img/Ordi_20.jpg deleted file mode 100644 index ee266ec..0000000 Binary files a/common/static/f-s-b/img/Ordi_20.jpg and /dev/null differ diff --git a/common/static/f-s-b/img/logo_footer.gif b/common/static/f-s-b/img/logo_footer.gif deleted file mode 100644 index 95e2dc5..0000000 Binary files a/common/static/f-s-b/img/logo_footer.gif and /dev/null differ diff --git a/common/static/f-s-b/img/oms_footer.jpg b/common/static/f-s-b/img/oms_footer.jpg deleted file mode 100644 index 69d1bd0..0000000 Binary files a/common/static/f-s-b/img/oms_footer.jpg and /dev/null differ diff --git a/common/static/f-s-b/img/ville_amie_enfant_footer.jpg b/common/static/f-s-b/img/ville_amie_enfant_footer.jpg deleted file mode 100644 index e33efa0..0000000 Binary files a/common/static/f-s-b/img/ville_amie_enfant_footer.jpg and /dev/null differ diff --git a/common/static/f-s-b/img/ville_internet_footer.jpg b/common/static/f-s-b/img/ville_internet_footer.jpg deleted file mode 100644 index 8ce76cc..0000000 Binary files a/common/static/f-s-b/img/ville_internet_footer.jpg and /dev/null differ diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..debba61 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +fontenay-sous-bois-themes (0.0.0-1) unstable; urgency=low + + * Initial release + + -- Thomas NOEL Fri, 19 Dec 2014 15:44:12 +0100 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +8 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..e71407f --- /dev/null +++ b/debian/control @@ -0,0 +1,22 @@ +Source: fontenay-sous-bois-themes +Section: python +Priority: optional +Maintainer: Thomas NOEL +Build-Depends: debhelper (>= 8.0.0) +Standards-Version: 3.9.4 +Homepage: http://repos.entrouvert.org/fontenay-sous-bois.git + +Package: fontenay-sous-bois-authentic-theme +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Fontenay-sous-Bois theme for Authentic + +Package: fontenay-sous-bois-portail-citoyen-theme +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Fontenay-sous-Bois theme for Portail citoyen + +Package: fontenay-sous-bois-wcs-theme +Architecture: all +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: Fontenay-sous-Bois theme for w.c.s. diff --git a/debian/fontenay-sous-bois-authentic-theme.install b/debian/fontenay-sous-bois-authentic-theme.install new file mode 100644 index 0000000..ea5b05c --- /dev/null +++ b/debian/fontenay-sous-bois-authentic-theme.install @@ -0,0 +1 @@ +debian/tmp/usr/share/authentic2 diff --git a/debian/fontenay-sous-bois-portail-citoyen-theme.install b/debian/fontenay-sous-bois-portail-citoyen-theme.install new file mode 100644 index 0000000..852937f --- /dev/null +++ b/debian/fontenay-sous-bois-portail-citoyen-theme.install @@ -0,0 +1 @@ +debian/tmp/usr/share/portail-citoyen2 diff --git a/debian/fontenay-sous-bois-wcs-theme.install b/debian/fontenay-sous-bois-wcs-theme.install new file mode 100644 index 0000000..a40794e --- /dev/null +++ b/debian/fontenay-sous-bois-wcs-theme.install @@ -0,0 +1 @@ +debian/tmp/usr/share/wcs/themes diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..79fd842 --- /dev/null +++ b/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/portail-citoyen/templates/base-cms.html b/portail-citoyen/templates/base-cms.html deleted file mode 100644 index 58fe1c9..0000000 --- a/portail-citoyen/templates/base-cms.html +++ /dev/null @@ -1,21 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} -{% load menu_tags cms_tags sekizai_tags %} - -{% block breadcrumbs %} -
  • {% page_attribute "page_title" %}
  • -{% endblock %} - -{% block rubriques %} -{% page_attribute "slug" as slug %} -
    - - - - -{% endblock %} - - -{% block content %} - {% placeholder "content" %} -{% endblock %} diff --git a/portail-citoyen/templates/base.html b/portail-citoyen/templates/base.html deleted file mode 100644 index c4d55ae..0000000 --- a/portail-citoyen/templates/base.html +++ /dev/null @@ -1,182 +0,0 @@ -{% load menu_tags cms_tags sekizai_tags i18n portail_citoyen_tags static %} - - - Portail citoyen | fontenay-sous-bois.fr - - - - - - {% block extra_css %} - - - - - - - {% endblock %} - {% render_block "css" %} - {% block extra_scripts %} - - {% endblock %} - - - - {% cms_toolbar %} -
    -
    - -
    - -
    -

    Accueil

    - -
    - -
    - {% block messages %}{% if messages %} -
      - {% for message in messages %} - {{ message }} - {% endfor %} -
    - {% endif %} - {% endblock %} -
    -
    - {% block content %} - {% endblock %} -
    -
    -
    - -
    - -
    - -
    - -
    -   -
    - -
    -
    - - - {% block footer %} -
    - - {% endblock %}{# footer #} - -
    -
    - - -
    - - {% render_block "js" %} - - - diff --git a/portail-citoyen/templates/blurps/demandes-en-cours.html b/portail-citoyen/templates/blurps/demandes-en-cours.html deleted file mode 100644 index 98ef7fb..0000000 --- a/portail-citoyen/templates/blurps/demandes-en-cours.html +++ /dev/null @@ -1,22 +0,0 @@ -{% if user.is_authenticated %} - -{% endif %} diff --git a/portail-citoyen/templates/blurps/liste-des-teleservices.html b/portail-citoyen/templates/blurps/liste-des-teleservices.html deleted file mode 100644 index aa1cb14..0000000 --- a/portail-citoyen/templates/blurps/liste-des-teleservices.html +++ /dev/null @@ -1,20 +0,0 @@ -{% load i18n %} - -{% if user.is_authenticated %} -{% regroup teleservices by category as category_list %} -{% else %} -{% regroup teleservices_publics by category as category_list %} -{% endif %} - - - diff --git a/portail-citoyen/templates/portail_citoyen/template_ezt.html b/portail-citoyen/templates/portail_citoyen/template_ezt.html deleted file mode 100644 index 0068263..0000000 --- a/portail-citoyen/templates/portail_citoyen/template_ezt.html +++ /dev/null @@ -1,115 +0,0 @@ -{% extends "base.html" %} -{% load static %} - -{% block extra_css %} -{% with static_prefix="[theme_url]" %}{{ block.super }}{% endwith %} -{% endblock %} - -{% block bodyargs %} - [if-any onload] onload="[onload]"[end] -{% endblock %} - -{% block personnel %} - [if-any user] - - [else] - - [end] -{% endblock %} - -{% block rubriques %} -[if-any user] - -[else] - -[end] - - - - -{% endblock %} - - -{% block breadcrumb %} -[if-any bigdiv] -

    Vous êtes ici : - Accueil / - Démarches en ligne - [if-any title] /[title][end] -

    -[else] -

    Vous êtes ici : - Accueil / - Démarches en ligne -

    -[end] -{% endblock %} - -{% block content %} - - [body] - -{% endblock %} - -{% block personnel_2 %} - [if-any user] -

    [user.display_name]

    -
    - -
    - [else] -

    Compte usager

    -
    - -
    - [end] -{% endblock %} - -{% block dataview %} - $(function() { - $('.dataview').before('Afficher le détail de la demande'); - $('#disclose-dataview').click( - function() { - $(this).hide(); - $('.dataview').show(); - return false; - }); -}); -{% endblock %} - -{% block footer %} -{% with static_prefix="[theme_url]" %} -{{block.super}} -{% endwith %} -{% endblock %} - diff --git a/wcs/fontenay-sous-bois/desc.xml b/wcs/fontenay-sous-bois/desc.xml deleted file mode 100644 index 4496409..0000000 --- a/wcs/fontenay-sous-bois/desc.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - Fontenay-sous-Bois - Thomas NOEL (original from fontenay-sous-bois.fr) - diff --git a/wcs/update-fsb-template b/wcs/update-fsb-template deleted file mode 100755 index b68d631..0000000 --- a/wcs/update-fsb-template +++ /dev/null @@ -1,23 +0,0 @@ -#! /bin/bash - -LOCK=/var/tmp/update-fsb-template -TMPFILE=$(tempfile) || exit -DST=/usr/share/wcs/themes/fontenay-sous-bois/template.ezt -HOSTNAME=$(hostname -f) - -PORTAL=portail-fsb.dev.entrouvert.org -if [ x$HOSTNAME == xauquo-test.entrouvert.org ]; then - PORTAL=portail-fsb.test.entrouvert.org -fi - -if mkdir $LOCK &> /dev/null; then - trap "rm -rf $TMPFILE $LOCK" EXIT - curl --silent https://$PORTAL/__template.ezt > $TMPFILE - chown wcs-au-quotidien:wcs-au-quotidien $TMPFILE - diff $TMPFILE $DST > /dev/null - if [ "$?" != "0" ] - then - # cp $DST $BACKUP.$(date +'%Y%m%d-%H%M%S') - cp $TMPFILE $DST - fi -fi