HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/quadcode/frontend/node_modules/custom-select/examples/native-mobile/index.html
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Custom Select - Example - Native Mobile</title>
    <link rel="stylesheet" href="../../build/custom-select.css">
    <style type="text/css">
      body {
        font-family: Arial;
        font-size: 1.2rem;
      }

      html.is-touch .custom-select-container select{
        visibility: visible;
        width: 100%;
        height: 100%;
        opacity: 0;
      }

      html.is-touch .custom-select-panel{
        display: none;
      }

      .custom-select-container {
        width: 300px;
      }
      .custom-select-opener {
        white-space: nowrap;
        height: 2.3em;
        margin-top: 0.5em;
        margin-bottom: 1em;
        border-radius: 5px;
        border: 2px solid #ccc;
      }
      .custom-select-opener:focus {
        outline: none;
        border-color: CornflowerBlue;
      }
      .custom-select-opener span {
        text-overflow: ellipsis;
        display: block;
        overflow: hidden;
      }
      .custom-select-panel {
        border-radius: 5px;
      }
    </style>
  </head>
  <body>
    <h1>Open this page on a mobile device or chrome simulator!</h1>
    <label>Simple select
      <select id="mySelect1">
        <option value>Select...</option>
        <option value="foo">Foo</option>
        <option value="buzz">Buzz</option>
      </select>
    </label>
    <br>
    <label for="mySelect2">Select with optgroup</label>
    <select id="mySelect2">
      <option value>Select...</option>
      <optgroup label="animals">
        <option value="feline">lion</option>
        <option value="feline">tiger</option>
        <option value="feline">cat</option>
        <option value="reptile">lizard</option>
      </optgroup>
      <optgroup label="vegetables">
        <option value="fruit">mango</option>
        <option value="flower">rose</option>
        <option value="fruit">pineapple</option>
        <option value="flower">lotus</option>
        <option value="flower" selected>lily</option>
      </optgroup>
    </select>
    <br>
    <label for="mySelect3">Disabled Select</label>
    <select id="mySelect3" disabled>
      <option value>Select...</option>
      <option value="volvo">Volvo</option>
      <option value="saab">Saab</option>
      <option value="mercedes">Mercedes</option>
      <option value="audi">Audi</option>
    </select>
    <script src="../../build/custom-select.min.js"></script>
    <script src="index.js"></script>
  </body>
</html>