Skip to content

Commit

Permalink
Fix row colors on show-results.vue and show-history.vue (#8944)
Browse files Browse the repository at this point in the history
* Fix row colors on show-results.vue and show-history.vue

* yarn build runtime.

* Dont need this

* yarn dev
  • Loading branch information
p0psicles authored Dec 31, 2020
1 parent 66c94ba commit 90e831b
Show file tree
Hide file tree
Showing 4 changed files with 93 additions and 92 deletions.
89 changes: 1 addition & 88 deletions themes-default/slim/src/components/snatch-selection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -133,92 +133,5 @@ export default {
};
</script>

<style scoped src="../style/vgt-table.css">
.vgt-table-styling >>> .align-center {
display: flex;
justify-content: center;
}
.vgt-table-styling >>> .indexer-image :not(:last-child) {
margin-right: 5px;
}
.vgt-table-styling >>> .button-row {
width: 100%;
display: inline-block;
}
.vgt-table-styling >>> .fanartBackground {
clear: both;
opacity: 0.9;
}
.vgt-table-styling >>> .fanartBackground table {
table-layout: auto;
width: 100%;
border-collapse: collapse;
border-spacing: 0;
text-align: center;
border: none;
empty-cells: show;
color: rgb(0, 0, 0) !important;
}
.vgt-table-styling >>> .fanartBackground > table th.vgt-row-header {
border: none !important;
background-color: transparent !important;
color: rgb(255, 255, 255) !important;
padding-top: 15px !important;
text-align: left !important;
}
.vgt-table-styling >>> .fanartBackground td.col-search {
text-align: center;
}
.vgt-table-styling >>> .skipped {
background-color: rgb(190, 222, 237);
}
.vgt-table-styling >>> .snatched {
background-color: rgb(235, 193, 234);
}
.vgt-table-styling >>> .downloaded {
background-color: rgb(255, 218, 138);
}
.vgt-table-styling >>> .failed {
background-color: rgb(255, 153, 153);
}
.vgt-table-styling >>> .subtitled {
background-color: rgb(190, 222, 237);
}
.vgt-table-styling >>> .global-ignored td.release span {
color: red;
}
.vgt-table-styling >>> .show-ignored td.release span {
color: red;
font-style: italic;
}
.vgt-table-styling >>> .global-required td.release span {
color: green;
}
.vgt-table-styling >>> .show-required td.release span {
color: green;
font-style: italic;
}
.vgt-table-styling >>> .global-undesired td.release span {
color: orange;
}
.show-history {
margin-bottom: 10px;
}
<style scoped src='../style/vgt-table.css'>
</style>
88 changes: 88 additions & 0 deletions themes-default/slim/src/style/vgt-table.css
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,92 @@
font-weight: 400;
line-height: 1.42857143;
white-space: nowrap;
}

.vgt-table-styling >>> .align-center {
display: flex;
justify-content: center;
}

.vgt-table-styling >>> .indexer-image :not(:last-child) {
margin-right: 5px;
}

.vgt-table-styling >>> .button-row {
width: 100%;
display: inline-block;
}

.vgt-table-styling >>> .fanartBackground {
clear: both;
opacity: 0.9;
}

.vgt-table-styling >>> .fanartBackground table {
table-layout: auto;
width: 100%;
border-collapse: collapse;
border-spacing: 0;
text-align: center;
border: none;
empty-cells: show;
color: rgb(0, 0, 0) !important;
}

.vgt-table-styling >>> .fanartBackground > table th.vgt-row-header {
border: none !important;
background-color: transparent !important;
color: rgb(255, 255, 255) !important;
padding-top: 15px !important;
text-align: left !important;
}

.vgt-table-styling >>> .fanartBackground td.col-search {
text-align: center;
}

.vgt-table-styling >>> .skipped {
background-color: rgb(190, 222, 237);
}

.vgt-table-styling >>> .snatched {
background-color: rgb(235, 193, 234);
}

.vgt-table-styling >>> .downloaded {
background-color: rgb(255, 218, 138);
}

.vgt-table-styling >>> .failed {
background-color: rgb(255, 153, 153);
}

.vgt-table-styling >>> .subtitled {
background-color: rgb(190, 222, 237);
}

.vgt-table-styling >>> .global-ignored td.release span {
color: red;
}

.vgt-table-styling >>> .show-ignored td.release span {
color: red;
font-style: italic;
}

.vgt-table-styling >>> .global-required td.release span {
color: green;
}

.vgt-table-styling >>> .show-required td.release span {
color: green;
font-style: italic;
}

.vgt-table-styling >>> .global-undesired td.release span {
color: orange;
}

.show-history {
margin-bottom: 10px;
}
Loading

0 comments on commit 90e831b

Please sign in to comment.