.table {
    &.table-striped {
        tbody {
            tr {
                td {
                    &.visibility-not-published {
                        background-color: LightCoral;
                    }

                    &.visibility-published {
                        background-color: LightGreen;
                    }
                }
            }
        }
    }
}