mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-19 12:59:39 -07:00
Merge branch 'feature/v4' of https://github.com/twanariens/Ombi into feature/v4
This commit is contained in:
commit
57fa0e607f
2 changed files with 40 additions and 33 deletions
|
@ -1,26 +0,0 @@
|
||||||
|
|
||||||
<settings-menu></settings-menu>
|
|
||||||
|
|
||||||
|
|
||||||
<table class="table table-striped table-hover table-responsive table-condensed">
|
|
||||||
<thead>
|
|
||||||
<tr>
|
|
||||||
<td>Title</td>
|
|
||||||
<td>Type</td>
|
|
||||||
<td>Retry Count</td>
|
|
||||||
<td>Error Description</td>
|
|
||||||
<td>Delete</td>
|
|
||||||
</tr>
|
|
||||||
</thead>
|
|
||||||
<tbody>
|
|
||||||
<tr *ngFor="let v of vm">
|
|
||||||
<td class="vcenter">
|
|
||||||
{{v.title}}
|
|
||||||
</td>
|
|
||||||
<td>{{RequestType[v.type] | humanize}}</td>
|
|
||||||
<td class="vcenter">{{v.retryCount}}</td>
|
|
||||||
<td class="vcenter"> <i [pTooltip]="v.error" class="fa fa-info-circle"></i></td>
|
|
||||||
<td class="vcenter"><button class="btn btn-sm btn-danger-outline" (click)="remove(v)">Remove</button></td>
|
|
||||||
</tr>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
|
@ -1,6 +1,7 @@
|
||||||
@media (max-width: 978px) {
|
@import "~styles/variables.scss";
|
||||||
|
@media (max-width: 978px) {
|
||||||
.top-spacing {
|
.top-spacing {
|
||||||
padding-top: 10%;
|
padding-top: 2%;
|
||||||
}
|
}
|
||||||
.modal-panel {
|
.modal-panel {
|
||||||
max-height: 100vh !important;
|
max-height: 100vh !important;
|
||||||
|
@ -11,7 +12,7 @@
|
||||||
|
|
||||||
@media (min-width: 979px) {
|
@media (min-width: 979px) {
|
||||||
.top-spacing {
|
.top-spacing {
|
||||||
padding-top: 4%;
|
padding-top: 2%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -19,6 +20,8 @@ html,
|
||||||
body {
|
body {
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
scrollbar-color: #616161 #303030; //firefox
|
||||||
|
scrollbar-width: thin; //firefox
|
||||||
}
|
}
|
||||||
|
|
||||||
.spinner-container {
|
.spinner-container {
|
||||||
|
@ -33,18 +36,19 @@ body {
|
||||||
|
|
||||||
/* Scrollbar */
|
/* Scrollbar */
|
||||||
|
|
||||||
::-webkit-scrollbar {
|
::-webkit-scrollbar{
|
||||||
width: 7px;
|
width: 7px;
|
||||||
background: rgba(0, 0, 0, 0);
|
background: #818181;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar-track {
|
::-webkit-scrollbar-track {
|
||||||
background: rgba(0, 0, 0, 0);
|
background: rgba(0, 0, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar-thumb {
|
// Changed color of the scrollbar
|
||||||
|
::-webkit-scrollbar-thumb{
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
background: #41927b;
|
background: #303030;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidenav ::-webkit-scrollbar-track {
|
.sidenav ::-webkit-scrollbar-track {
|
||||||
|
@ -68,3 +72,32 @@ table {
|
||||||
display: flex;
|
display: flex;
|
||||||
padding-bottom: 4%;
|
padding-bottom: 4%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
::ng-deep .dark .form-control{
|
||||||
|
background-color: rgba(0, 0, 0, 0.18);
|
||||||
|
color:#fff;
|
||||||
|
border: 1px solid rgba(0, 0, 0, 0.18);
|
||||||
|
}
|
||||||
|
|
||||||
|
::ng-deep .dark .nav-link.active{
|
||||||
|
color: #303030;
|
||||||
|
background-color: $accent-dark;
|
||||||
|
border-color: rgba(0, 0, 0, 0.18);
|
||||||
|
font-weight:400;
|
||||||
|
}
|
||||||
|
|
||||||
|
::ng-deep .dark .nav-link{
|
||||||
|
color: #fff;
|
||||||
|
background-color: rgba(0, 0, 0, 0.18);
|
||||||
|
border-color: rgba(0, 0, 0, 0.18);
|
||||||
|
}
|
||||||
|
|
||||||
|
::ng-deep .dark .ui-autocomplete.ui-autocomplete-multiple .ui-autocomplete-multiple-container .ui-autocomplete-input-token input{
|
||||||
|
color:#fff;
|
||||||
|
}
|
||||||
|
|
||||||
|
::ng-deep .dark .ui-inputtext{
|
||||||
|
background-color: rgba(0, 0, 0, 0.18);
|
||||||
|
color:#fff;
|
||||||
|
border: 1px solid rgba(0, 0, 0, 0.18);
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue