Quellcode durchsuchen

Style pour le lien Rechercher/retour de myNetwork

bastien vor 12 Jahren
Ursprung
Commit
74925a3eea

+ 3 - 5
src/Muzich/MynetworkBundle/Resources/views/Mynetwork/index.html.twig Datei anzeigen

@@ -4,11 +4,9 @@
4 4
 
5 5
 {% block content %}
6 6
 
7
-  <p>
8
-    <a href="{{ path('mynetwork_search') }}" >
9
-      Rechercher
10
-    </a>
11
-  </p>
7
+  <a class="link_navigation" href="{{ path('mynetwork_search') }}" >
8
+    Rechercher
9
+  </a>
12 10
   
13 11
   {% if followeds_users %}
14 12
     <b>Utilisateurs</b>

+ 3 - 5
src/Muzich/MynetworkBundle/Resources/views/Mynetwork/search.html.twig Datei anzeigen

@@ -4,11 +4,9 @@
4 4
 
5 5
 {% block content %}
6 6
 
7
-  <p>
8
-    <a href="{{ path('mynetwork_index') }}" >
9
-      Retour
10
-    </a>
11
-  </p>
7
+  <a class="link_navigation" href="{{ path('mynetwork_index') }}" >
8
+    Retour
9
+  </a>
12 10
   
13 11
   <b>Rechercher des utilisateurs et des groupes</b>
14 12
   

+ 8 - 7
web/bundles/mynetwork/css/mynetwork.css Datei anzeigen

@@ -1,7 +1,8 @@
1
-/* 
2
-    Document   : mynetwork
3
-    Created on : 27 sept. 2011, 14:41:54
4
-    Author     : bux
5
-    Description:
6
-        Purpose of the stylesheet follows.
7
-*/
1
+
2
+#container .link_navigation
3
+{
4
+  float: right;
5
+  font-weight: bold;
6
+  text-decoration: none;
7
+  color: black;
8
+}