Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 458 | Rev 460 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 458 Rev 459
Línea 521... Línea 521...
521
});
521
});
522
JS;
522
JS;
523
$this->inlineScript()->captureEnd();
523
$this->inlineScript()->captureEnd();
524
?>
524
?>
Línea -... Línea 525...
-
 
525
 
-
 
526
<style>
-
 
527
    * {margin:0;padding:0; border: 0 none; position: relative;}
-
 
528
*, *:before, *:after {box-sizing: inherit;}
-
 
529
html{
-
 
530
  box-sizing: border-box;
-
 
531
  background: #fff;
-
 
532
  font-size: 1rem;
-
 
533
}
-
 
534
table {
-
 
535
  table-layout: fixed;
-
 
536
  margin: 1rem auto;
-
 
537
  width: 90%;
-
 
538
  box-shadow: 0 0 2px rgba(0,0,0,.4);
-
 
539
  border-collapse: collapse;
-
 
540
}
-
 
541
thead {
-
 
542
  
-
 
543
}
-
 
544
th {
-
 
545
  background: #1195b2;
-
 
546
  color: #fff;
-
 
547
  font-weight: 400;
-
 
548
  padding: .7rem 0;
-
 
549
  border: 3px solid #fff;
-
 
550
  font-size: 1.5rem;
-
 
551
  font-variant: small-caps;
-
 
552
  width: 22%;
-
 
553
}
-
 
554
th:last-child {width: 8%;}
-
 
555
tr:nth-child(even) {
-
 
556
  background: rgba(17,149,178,.2);
-
 
557
}
-
 
558
td {
-
 
559
  padding: .5rem 1rem;
-
 
560
  border-right: 1px solid rgba(0,0,0,.05);
-
 
561
}
-
 
562
td:last-child {
-
 
563
  border-right: 0 none;
-
 
564
  text-align: center;
-
 
565
}
-
 
566
@media only screen and (max-width:600px) {
-
 
567
  table{
-
 
568
    width: 98%;
-
 
569
  }
-
 
570
  thead {display: none;}
-
 
571
  tr {border-bottom: 2px solid rgba(17,149,178,.35);}
-
 
572
  tr:last-child {border-bottom: 0 none;}
-
 
573
  td {
-
 
574
    display: block;
-
 
575
    padding: .3rem .5rem;
-
 
576
  }
-
 
577
  td:before {
-
 
578
    content: attr(data-head);
-
 
579
    display: inline-block;
-
 
580
    width: auto;;
-
 
581
    min-width: 40%;
-
 
582
    font-weight: 900;
-
 
583
    padding-right: 1rem;
-
 
584
    font-variant: small-caps;
-
 
585
  }
-
 
586
  td:last-child {text-align: left;}
-
 
587
  td:nth-child(odd) {
-
 
588
    background: rgba(17,149,178,.15);
-
 
589
  }
-
 
590
}
-
 
591
</style>
525
 
592
 
526
<!-- Content Header (Page header) -->
593
<!-- Content Header (Page header) -->
527
<section class="content-header">
594
<section class="content-header">
528
    <div class="container-fluid">
595
    <div class="container-fluid">
529
        <div class="row mb-2">
596
        <div class="row mb-2">
Línea 658... Línea 725...
658
   </div>
725
   </div>
659
   <div id="collapse-{{:slug_section}}" class="panel-collapse in collapse show">
726
   <div id="collapse-{{:slug_section}}" class="panel-collapse in collapse show">
660
      <div class="panel-body">
727
      <div class="panel-body">
661
         <div class="table-responsive">
728
         <div class="table-responsive">
662
            <table class="table table-bordered"  width="100%" style="width:100%">
729
            <table class="table table-bordered"  width="100%" style="width:100%">
663
          
-
 
-
 
730
               <thead>
664
                  <tr>
731
                  <tr>
665
                     <th style="width: 30%;">LABEL_QUESTION</th>
732
                     <th style="width: 30%;">LABEL_QUESTION</th>
666
                     <th style="width: 30%;">LABEL_ANSWER</th>
733
                     <th style="width: 30%;">LABEL_ANSWER</th>
667
                     <th style="width: 10%;">LABEL_STATUS</th>
734
                     <th style="width: 10%;">LABEL_STATUS</th>
668
                     <th style="width: 10%;">LABEL_PTOS</th>
735
                     <th style="width: 10%;">LABEL_PTOS</th>
669
                     <th style="width: 20%;">LABEL_ACTIONS</th>
736
                     <th style="width: 20%;">LABEL_ACTIONS</th>
670
                  </tr>
737
                  </tr>
671
         
-
 
-
 
738
               </thead>
-
 
739
               <tbody>
672
               {{for questions}}
740
               {{for questions}}
673
                  <tr class="tr-question">
741
                  <tr class="tr-question">
674
                     <td class="text-left">{{:~removeTags(text)}} </td>
742
                     <td class="text-left">{{:~removeTags(text)}} </td>
675
                     <td>{{:~getAnswer(type,options,answer)}}</td>
743
                     <td>{{:~getAnswer(type,options,answer)}}</td>
676
                     <td>
744
                     <td>
Línea 702... Línea 770...
702
                        {{/if}}
770
                        {{/if}}
Línea 703... Línea 771...
703
 
771
 
704
                     </td>
772
                     </td>
705
                  </tr>
773
                  </tr>
-
 
774
               {{/for}}
706
               {{/for}}
775
               </tbody>
707
            </table>
776
            </table>
708
         </div>
777
         </div>
709
      </div>
778
      </div>
710
   </div>
779
   </div>