Advertisement
oyenbarbar

keita_gantt_index.html

Feb 4th, 2023 (edited)
1,193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.87 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <title>Gantt Chart</title>
  8.     <style>
  9.         .card-background {
  10.             border-radius: 10px;
  11.             /* overflow: hidden; */
  12.         }
  13.         .rounded {
  14.             border-radius: 5px !important;
  15.         }
  16.         .container-fluid .card {
  17.             width: 100% !important;
  18.             overflow: hidden !important;
  19.         }
  20.     </style>
  21.     <style>
  22.         .gtaskname div, .gres div {
  23.             white-space: break-spaces !important;
  24.             overflow: hidden !important;
  25.         }
  26.         .gres {
  27.             width: 300px !important;
  28.             max-width: 300px !important;
  29.         }
  30.         .gtaskname {
  31.             max-width: 300px !important;
  32.             width: 300px !important;
  33.         }
  34.         .gtaskname > div {
  35.             width: 100%;
  36.             max-width: 100%;
  37.         }
  38.         .gcomp {
  39.             max-width: 50px;
  40.             min-width: 50px;
  41.             width: 50px;
  42.         }
  43.         .gres > div {
  44.             padding: 5px 5px;
  45.         }
  46.         .gchartcontainer {
  47.             display:grid;
  48.             grid-template-columns: 1.35fr 1fr auto;
  49.         }
  50.         #GanttChartDIVglisthead .gselector {
  51.             max-width: 500px;
  52.             width: auto;
  53.         }
  54.         .gtaskname ul {
  55.             list-style-type: none;
  56.         }
  57.     </style>
  58.  
  59.     <link rel="stylesheet" href="assets/jsgantt.css" type="text/css" />
  60.     <script src="assets/jsgantt.js" type="text/javascript"></script>
  61.     <link rel="stylesheet" href="assets/bootstrap.min.css">
  62.     <script src="assets/jquery.slim.min.js"></script>
  63.     <script src="assets/popper.min.js"></script>
  64.     <script src="assets/bootstrap.min.js"></script>
  65. </head>
  66. <body>
  67.     <div class="container-fluid py-3 mb-4 h-100" style="overflow: auto;">
  68.         <!-- <div v-if="isLoading">
  69.            <Loading/>
  70.        </div> -->
  71.         <div data-app class="pb-3">
  72.             <div class="card card-background">
  73.                 <div class="card-header">
  74.                     <h5 class="mb-0">Gantt Chart</h5>
  75.                 </div>
  76.                 <div class="card-body">
  77.                     <div class="row">
  78.                         <div class="offset-9 form-group col-3">
  79.                             <!-- <select class="form-control" v-model="workspace" @change="loadGantt(workspace, false)">
  80.                                <option :value="work._id" v-for="work, index in myWorkspace" :key="index">{{ work.name }}</option>
  81.                            </select> -->
  82.                         </div>
  83.                     </div>
  84.                     <div class="gantt" id="GanttChartDIV"></div>
  85.                 </div>
  86.             </div>
  87.         </div>
  88.     </div>
  89. </body>
  90. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement