Add Font Awesome icons and update stylesheet links in task templates
This commit is contained in:
@@ -27,6 +27,7 @@
|
||||
<link rel="stylesheet" type="text/css" href="/libraries/jquery-confirm/jquery-confirm.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/libraries/select2/css/select2.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/libraries/select2/css/select2-bootstrap-5-theme.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/libraries/font-awesome-4.7.0/css/font-awesome.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="/layout/style.css">
|
||||
</head>
|
||||
<body class="logged">
|
||||
|
||||
@@ -76,10 +76,10 @@
|
||||
<div class="dates box">
|
||||
<h3>Termin</h3>
|
||||
<? if ( $this -> task['date_start'] ):?>
|
||||
<div class="date_start"><i class="fa-regular fa-calendar"></i><?= $this -> task['date_start'];?></div>
|
||||
<div class="date_start"><i class="fa fa-regular fa-calendar"></i><?= $this -> task['date_start'];?></div>
|
||||
<? endif;?>
|
||||
<? if ( $this -> task['date_end'] ):?>
|
||||
<div class="date_end <? if ( $this -> task['status'] != 2 and $this -> task['date_end'] == date( 'Y-m-d' ) ):?> warning<? endif;?> <? if ( $this -> task['status'] != 2 and $this -> task['date_end'] < date( 'Y-m-d' ) ):?> dangerx<? endif;?>"><i class="fa-regular fa-calendar"></i><?= $this -> task['date_end'];?></div>
|
||||
<div class="date_end <? if ( $this -> task['status'] != 2 and $this -> task['date_end'] == date( 'Y-m-d' ) ):?> warning<? endif;?> <? if ( $this -> task['status'] != 2 and $this -> task['date_end'] < date( 'Y-m-d' ) ):?> dangerx<? endif;?>"><i class="fa fa-regular fa-calendar"></i><?= $this -> task['date_end'];?></div>
|
||||
<? endif;?>
|
||||
</div>
|
||||
<div class="client box">
|
||||
|
||||
@@ -15,10 +15,10 @@
|
||||
<? if ( $this -> task['date_start'] or $this -> task['date_end'] ):?>
|
||||
<div class="dates">
|
||||
<? if ( $this -> task['date_start'] ):?>
|
||||
<div class="date_start"><i class="fa-regular fa-calendar"></i><?= $this -> task['date_start'];?></div>
|
||||
<div class="date_start"><i class="fa fa-regular fa-calendar"></i><?= $this -> task['date_start'];?></div>
|
||||
<? endif;?>
|
||||
<? if ( $this -> task['date_end'] ):?>
|
||||
<div class="date_end <? if ( $this -> task['status'] != 2 and $this -> task['date_end'] == date( 'Y-m-d' ) ):?> warning<? endif;?> <? if ( $this -> task['status'] != 2 and $this -> task['date_end'] < date( 'Y-m-d' ) ):?> danger<? endif;?>"><i class="fa-regular fa-calendar"></i><?= $this -> task['date_end'];?></div>
|
||||
<div class="date_end <? if ( $this -> task['status'] != 2 and $this -> task['date_end'] == date( 'Y-m-d' ) ):?> warning<? endif;?> <? if ( $this -> task['status'] != 2 and $this -> task['date_end'] < date( 'Y-m-d' ) ):?> danger<? endif;?>"><i class="fa fa-regular fa-calendar"></i><?= $this -> task['date_end'];?></div>
|
||||
<? endif;?>
|
||||
</div>
|
||||
<? endif;?>
|
||||
@@ -47,7 +47,7 @@
|
||||
</a>
|
||||
<? if ( $this -> task['recursively'] ):?>
|
||||
<div class="recursively">
|
||||
<i class="fa-solid fa-repeat"></i>
|
||||
<i class="fa fa-solid fa-repeat"></i>
|
||||
</div>
|
||||
<? endif;?>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user