Changeset b1a751e in portal_2019


Ignore:
Timestamp:
Nov 4, 2019, 10:11:53 AM (5 years ago)
Author:
Angelo Osorio <danielking.321@…>
Branches:
master, dev, portal
Children:
74acf6f
Parents:
6460441
Message:

Cambios de frontend

Files:
5 edited

Legend:

Unmodified
Added
Removed
  • css/styles.css

    r0320f1b rb1a751e  
    7575  color: #275a9b;
    7676}
     77a {
     78  color: #1b449c !important;
     79}
     80.text-primary {
     81  color: #1b449c !important;
     82}
     83
     84.btn-outline-primary {
     85  color: #1b449c;
     86  border-color: #0b449c !important;;
     87}
     88.btn-outline-primary:hover, .btn-outline-primary:focus {
     89  background-color: #0b449c;
     90  color: #fff;
     91}
     92.btn-primary {
     93  background-color: #0b449c;
     94  border-color: #0b449c;
     95}
    7796
    7897footer {
    79   background-color: #37474f;
     98  background-color: #0b449c;
    8099}
    81100footer a {
  • index.php

    r0320f1b rb1a751e  
    8888                    />
    8989                  </div>
    90                   <div class="row">
    91                     <div class="col-10 offset-1 col-md-4 offset-md-2 pb-3">
    92                       <button type="submit" class="btn btn-outline-primary btn-block"> Enviar </button>
    93                     </div>
    94                     <div class="col-10 offset-1 col-md-4 offset-md-0 pb-3">
    95                       <button id="reset" class="btn btn-outline-secondary btn-block" type="reset"> Limpiar </button>
    96                     </div>
    97                   </div>
     90                  <button type="submit" class="btn btn-primary btn-block"> Enviar </button>
     91                  <!-- <button id="reset" class="btn btn-outline-secondary btn-block" type="reset"> Limpiar </button> -->
    9892                </form>
    9993              </div>
     
    115109                    <input id="file-check-sign" class="file" type="file" multiple data-min-file-count="1" name="upload" />
    116110                  </div>
    117                   <div class="row">
    118                     <div class="col-10 offset-1 col-md-4 offset-md-2 pb-3">
    119                       <button type="submit" class="btn btn-outline-primary btn-block"> Enviar </button>
    120                     </div>
    121                     <div class="col-10 offset-1 col-md-4 offset-md-0 pb-3">
    122                       <button id="resetVerificacion" class="btn btn-outline-secondary btn-block" type="reset">
    123                         Limpiar
    124                       </button>
    125                     </div>
    126                   </div>
     111                  <button type="submit" class="btn btn-primary btn-block"> Verificar </button>
     112                  <!-- <button id="resetVerificacion" type="reset"> Limpiar </button> -->
    127113                </form>
    128114              </div>
  • js/fileinput.js

    rbbe2084 rb1a751e  
    20342034        previewFileIcon: '<i class="fa fa-file"></i>',
    20352035        browseIcon: '<i class="fa fa-folder-open"></i> &nbsp;',
    2036         browseClass: 'btn btn-primary rounded-0',
     2036        browseClass: 'btn btn-outline-primary rounded-0',
    20372037        removeIcon: '<i class="fa fa-trash"></i> ',
    20382038        removeClass: 'btn btn-light rounded-0',
     
    20772077        fileSingle: 'file',
    20782078        filePlural: 'files',
    2079         browseLabel: 'Browse &hellip;',
    2080         removeLabel: 'Remove',
     2079        browseLabel: 'Adjuntar &hellip;',
     2080        removeLabel: 'Limpiar',
    20812081        removeTitle: 'Clear selected files',
    2082         cancelLabel: 'Cancel',
     2082        cancelLabel: 'Cancelar',
    20832083        cancelTitle: 'Abort ongoing upload',
    2084         uploadLabel: 'Upload',
     2084        uploadLabel: 'Subir archivo',
    20852085        uploadTitle: 'Upload selected files',
    20862086        msgSizeTooLarge: 'File "{name}" (<b>{size} KB</b>) exceeds maximum allowed upload size of <b>{maxSize} KB</b>. Please retry your upload!',
  • js/partial-3.js

    rbbe2084 rb1a751e  
    9292                        success: function(data, textStatus, jqXHR){
    9393                          alert('Archivo firmado correctamente: ' + data['signedFileId']);
    94                           var linkToDownload = "<a href=\"https://murachi.cenditel.gob.ve/Murachi/0.1/archivos/descargas/" + data['signedFileId'] +"\">descargar archivo firmado</a>";
     94                          var linkToDownload = "<a class='btn btn-primary' href=\"https://murachi.cenditel.gob.ve/Murachi/0.1/archivos/descargas/" + data['signedFileId'] +"\"> Descargar archivo firmado </a>";
    9595                          document.getElementById("respuesta").innerHTML = linkToDownload;
    9696                        },
  • php/sign.php

    r0320f1b rb1a751e  
    6969
    7070                <div class="form-group text-center">
    71                   <input class="btn btn-outline-primary btn-block" name="submit" type="submit" value="Firmar" tabindex="4">
     71                  <input class="btn btn-primary btn-block" name="submit" type="submit" value="Firmar" tabindex="4">
    7272                </div>
    7373
Note: See TracChangeset for help on using the changeset viewer.