mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-22 07:33:50 +00:00
adapt layout for person search + standard rendering
This commit is contained in:
9
Resources/assets/gumpy/sass/_commons.scss
Normal file
9
Resources/assets/gumpy/sass/_commons.scss
Normal file
@@ -0,0 +1,9 @@
|
||||
.personName {
|
||||
font-variant: small-caps;
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
||||
.personName {
|
||||
text-transform: capitalize;
|
||||
}
|
||||
|
@@ -2,4 +2,6 @@
|
||||
|
||||
@import "_searchbox.scss";
|
||||
|
||||
@import "_flashMessages.scss"
|
||||
@import "_flashMessages.scss";
|
||||
|
||||
@import "_commons.scss";
|
||||
|
@@ -2,6 +2,10 @@ parameters:
|
||||
# cl_chill_main.example.class: CL\Chill\MainBundle\Example
|
||||
|
||||
services:
|
||||
menu_composer:
|
||||
class: CL\Chill\MainBundle\DependencyInjection\Services\MenuComposer
|
||||
arguments:
|
||||
- "@routing.loader"
|
||||
# cl_chill_main.example:
|
||||
# class: %cl_chill_main.example.class%
|
||||
# arguments: [@service_id, "plain_value", %parameter%]
|
||||
|
@@ -12,3 +12,7 @@ div#usefulbar li#search_element div#search_form button { color: white; border: n
|
||||
|
||||
div#flashMessages { margin-top: 20px; }
|
||||
div#flashMessages .flash-notice { margin-top: 10px; margin-bottom: 10px; }
|
||||
|
||||
.personName { font-variant: small-caps; text-transform: capitalize; }
|
||||
|
||||
.personName { text-transform: capitalize; }
|
||||
|
@@ -63,11 +63,11 @@
|
||||
<li id="search_element" class="">
|
||||
<div id="search_form" class="">
|
||||
<div class="field append">
|
||||
|
||||
<form method="GET" action="{{ path('chill_person_search') }}">
|
||||
<input type="search" name="q"
|
||||
class="wide search input" placeholder="Rechercher">
|
||||
<button type="submit" class="medium primary btn">Go</button>
|
||||
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -100,19 +100,19 @@
|
||||
<div id="flashMessages" class="push_three six columns">
|
||||
{% for flashMessage in app.session.flashbag.get('success') %}
|
||||
<div class="flash-notice success alert">
|
||||
{{ flashMessage }}
|
||||
{{ flashMessage|raw }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
{% for flashMessage in app.session.flashbag.get('danger') %}
|
||||
<div class="flash-notice danger alert">
|
||||
{{ flashMessage }}
|
||||
{{ flashMessage|raw }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
{% for flashMessage in app.session.flashbag.get('info') %}
|
||||
<div class="flash-notice info alert">
|
||||
{{ flashMessage }}
|
||||
{{ flashMessage|raw }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
@@ -124,7 +124,7 @@
|
||||
|
||||
<div class="row">
|
||||
<div id="wrapper" style="min-height: 1500px;">
|
||||
|
||||
|
||||
{% block content %}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user