Ver código fonte

fix changes refs - BT#10657

Alex Aragon 8 anos atrás
pai
commit
451c96cdff

+ 17 - 16
app/Resources/public/css/themes/rainbow/default.css

@@ -150,25 +150,24 @@ a:focus {
 .navbar-collapse{
     padding: 0;
 }
-/* .menu-1{
-    background: #41A62A;
+.navbar-default .navbar-nav > li > a:focus, .navbar-default .navbar-nav > li > a:hover{
+    background-color: #8A3BA2;
 }
-.menu-2{
-    background: #97BF0D;
+#formLogin .input-group .input-group-addon .fa{
+    color: #162A83;
 }
-.menu-3{
-    background: #F9B200;
+.grid-courses  .items .image .user-actions .btn .fa{
+    color: #162A83;
 }
-.menu-4{
-    background: #E53140;
+.hot-courses .grid-courses .items .toolbar{
+    display: none;
 }
-.menu-5{
-    background: #E2007A;
+.hot-courses .grid-courses .items{
+    min-height: 230px;
+}
+#latest_pages .section-title{
+    margin-bottom: 35px;
 }
-.menu-6{
-    background: #8E91FD;
-} */
-/* end Menu Option */
 .statistics{
     padding-top: 20px;
     padding-bottom: 20px;
@@ -190,12 +189,11 @@ a:focus {
 }
 .section-notice .items .title a{
     color: #162A83;
-    font-size: 20px;
+    font-size: 14px;
     font-weight: 700;
 }
 .section-notice .items .title a:hover{
     color: #666666;
-    font-size: 20px;
     font-weight: 700;
 }
 .section-notice .items .image .sonata-media-block-media-container img,
@@ -208,6 +206,9 @@ a:focus {
     padding-top: 5px;
     padding-bottom: 10px;
 }
+.section-global #breadcrumb-bar{
+    display: none;
+}
 .grid-courses .session .session-name{
     color: #E53140;
 }

+ 1 - 1
main/template/rainbow/layout/menu.tpl

@@ -25,7 +25,7 @@
                 {% endif %}
 
                 {% if _u.logged == 0 %}
-                    <li class="item-menu menu-1"><a href="{{ _p.web }}">{{ "CampusHomepage"|get_lang }}</a></li>
+                    <li class="item-menu active"><a href="{{ _p.web }}">{{ "CampusHomepage"|get_lang }}</a></li>
                     <li class="item-menu menu-2"><a href="{{ _p.web }}web/app_dev.php/faq?_locale={{ document_language }}">{{ "FAQ"|get_lang }}</a></li>
                     <li class="item-menu menu-3"><a href="{{ _p.web }}main/auth/inscription.php">{{ "Subscription"|get_lang }}</a></li>
                     <li class="item-menu menu-4"><a href="#">{{ "Demo"|get_lang }}</a></li>

+ 1 - 1
src/Chamilo/PageBundle/Resources/views/blocks.html.twig

@@ -4,7 +4,6 @@
         {% for page in pages %}
             <div class="col-md-4">
             <div class="items">
-                <div class="image"> {{ sonata_page_render_container('image_preview', page)  }}</div>
                 <div class="description">
                     <h2 class="title">
                         <a href="{{ url(page.routeName, {'path' : page.url}) }}">{{ page.name }}</a>
@@ -13,6 +12,7 @@
                         <i class="fa fa-calendar" aria-hidden="true"></i>
                         {{ page.createdAt | format_datetime }}
                     </div>
+                    {{ sonata_page_render_container('image_preview', page)  }}
                     <p>
                         {{ page.metaDescription }}
                     </p>

+ 1 - 1
src/Chamilo/PageBundle/Resources/views/latest.html.twig

@@ -4,7 +4,6 @@
         {% for page in pages %}
             <div class="col-md-4">
             <div class="items">
-                <div class="image"> {{ sonata_page_render_container('image_preview', page)  }}</div>
                 <div class="description">
                     <h2 class="title">
                         <a href="{{ url(page.routeName, {'path' : page.url}) }}">{{ page.name }}</a>
@@ -13,6 +12,7 @@
                         <i class="fa fa-calendar" aria-hidden="true"></i>
                         {{ page.createdAt | format_datetime }}
                     </div>
+                    {{ sonata_page_render_container('image_preview', page)  }}
                     <p>
                         {{ page.metaDescription }}
                     </p>