Add offline cachine for file group elements and contents (not files, though)
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
<div class="database-wrapper">
|
||||
<div class="database-wrapper" *ngIf="!notAvailableOffline">
|
||||
<ion-toolbar>
|
||||
<ion-input
|
||||
[readonly]="readonly"
|
||||
@@ -25,3 +25,7 @@
|
||||
></ag-grid-angular>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="database-wrapper not-available" *ngIf="notAvailableOffline">
|
||||
Sorry, this database is not available offline yet.
|
||||
</div>
|
||||
|
||||
@@ -1,4 +1,11 @@
|
||||
div.database-wrapper {
|
||||
border: 2px solid #8c8c8c;
|
||||
border-radius: 3px;
|
||||
|
||||
&.not-available {
|
||||
height: 600px;
|
||||
text-align: center;
|
||||
padding-top: 100px;
|
||||
color: #494949;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user