edit Flow editor

Issue #72 resolved
Alex M Pro created an issue

Маленькие доработки:

  • стили для инпутов
  • нажатие на подменю - prevent??

Comments (8)

  1. Alex M Pro reporter

    classes:

    • CLmyCityTeam
    • bwedit
    • iDateRandeIDs border: 1px solid transparent;

    file: f5main.css

  2. Alex M Pro reporter
    .CLmyCityTeam, .bwedit, .iDateRandeIDs {
      border: 1px solid #fff !important;
      margin: 5px 5px 1px 5px;
      background-color: #c5c5c5 transparent !important;
      padding: 5px !important;
      font-size: 16px !important;
      /* box-shadow: 1px 1px 25px rgba(0, 0, 0, 0.35); */
      border-radius: 36px !important;
      transition:all .100s !important;
    }
    .CLmyCityTeam:hover, .bwedit:hover, .iDateRandeIDs:hover {
        outline:none !important;
        border-color:rgba(255,255,255,.75) !important;
        box-shadow: 1px 1px 25px rgba(0, 0, 0, 0.35) !important;
    }
    
  3. Alex M Pro reporter

    add btn BACK & change btn AddAtt

    edit & editOne view

    files: * v-edit.php * v-edit-one.php

    <span class="addAthleteSpanBtn_" style="margin-left: 5%;">
      <button type="button" onclick="window.history.back();" class="btn btn-primary"><span class="glyphicon glyphicon-arrow-left"></span> назад</button>
    </span>
    
    <span class="addAthleteSpanBtn_">
      <!--<a id="addAthleteBtn01" title="добавить нового атлета" href="#" class="btnf5addAtt-circle">
        <i class="glyphicon glyphicon-plus"></i></a> -->
        <button id="addAthleteBtn01" type="button" class="btn btn-success"><span class="glyphicon glyphicon-plus"></span> Добавить нового Атлета</button>
    </span>
    
  4. Alex M Pro reporter

    change Title on v-one.php

    file: nb-f5marshal.php

    // for editOne viev title
    $pattern = '/(\d+)+$/i';
    $nowURL=preg_replace($pattern, '', $get_rURI);
    if ($nowURL==='/edit/') { $pageTitle = '  f5/fly: Редактирование Атлета';}
    }
    
  5. Alex M Pro reporter

    nb-edit.php

    hide HAmburger menu

          let hamMEnu = document.getElementById('hamburgerMENU');
          hamMEnu.parentNode.style.display = 'none';
          hamMEnu.parentNode.parentNode.removeChild(hamMEnu.parentNode);
          hamMEnu.style.display === 'none';
    
  6. Log in to comment