feature/css-datei #11
@@ -1,11 +1,11 @@
|
|||||||
<!--suppress HtmlUnknownTarget -->
|
<!--suppress HtmlUnknownTarget -->
|
||||||
<nav>
|
<nav>
|
||||||
<ul>
|
<ul>
|
||||||
<li><a class="{ isActive('home') }" href="/">Home</a></li>
|
<li class="{ isActive('home') }"><a href="/">Home</a></li>
|
||||||
<li><a class="{ isActive('weekly') }" href="/views/weekly">Wochenansicht</a></li>
|
<li class="{ isActive('weekly') }"><a href="/views/weekly">Wochenansicht</a></li>
|
||||||
<li><a class="{ isActive('monthly') }" href="/views/monthly">Monatsansicht</a></li>
|
<li class="{ isActive('monthly') }"><a href="/views/monthly">Monatsansicht</a></li>
|
||||||
<li><a class="{ isActive('yearly') }" href="/views/yearly">Jahresansicht</a></li>
|
<li class="{ isActive('yearly') }"><a href="/views/yearly">Jahresansicht</a></li>
|
||||||
<li><a class="{ isActive('working-hours') }" href="/working-hours">Einträge</a></li>
|
<li class="{ isActive('working-hours') }"><a href="/working-hours">Einträge</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
|
|||||||
@@ -16,6 +16,12 @@
|
|||||||
<p>Loading...</p>
|
<p>Loading...</p>
|
||||||
{:else}
|
{:else}
|
||||||
<table>
|
<table>
|
||||||
|
<colgroup>
|
||||||
|
<col />
|
||||||
|
<col />
|
||||||
|
<col />
|
||||||
|
<col />
|
||||||
|
</colgroup>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Zeitraum</th>
|
<th>Zeitraum</th>
|
||||||
|
|||||||
@@ -153,6 +153,11 @@
|
|||||||
</fieldset>
|
</fieldset>
|
||||||
</form>
|
</form>
|
||||||
<table>
|
<table>
|
||||||
|
<colgroup>
|
||||||
|
<col />
|
||||||
|
<col />
|
||||||
|
<col />
|
||||||
|
</colgroup>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Datum</th>
|
<th>Datum</th>
|
||||||
@@ -201,7 +206,7 @@
|
|||||||
<button on:click={Controller.saveRecord} type="button">Übernehmen
|
<button on:click={Controller.saveRecord} type="button">Übernehmen
|
||||||
<IconifyIcon icon={checkIcon} color="green"/>
|
<IconifyIcon icon={checkIcon} color="green"/>
|
||||||
</button>
|
</button>
|
||||||
<button on:click={Controller.cancelActiveRecord} type="button">Abbrechen
|
<button on:click={Controller.cancelActiveRecord} type="button" class="sub-button">Abbrechen
|
||||||
<IconifyIcon icon={xIcon}/>
|
<IconifyIcon icon={xIcon}/>
|
||||||
</button>
|
</button>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|||||||
Reference in New Issue
Block a user