diff --git a/issues.go b/issues.go index 38fdc4e..6b6ed6e 100644 --- a/issues.go +++ b/issues.go @@ -134,7 +134,7 @@ func issueSearch(ctx context.Context, label, token string, ch chan<- Issue) erro // Tell the request to use our context so we can cancel it in-flight if needed req = req.WithContext(ctx) - q := fmt.Sprintf(`is:open type:issue label:"%s"`, label) + q := fmt.Sprintf(`is:open type:issue archived:false label:"%s"`, label) for k, v := range orgs { if v.Visible == true { q += " org:" + k diff --git a/resources/css/app.css b/resources/css/app.css index bb0bc48..8f93cd1 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -2,7 +2,7 @@ @tailwind components; @tailwind utilities; -.paging_simple_numbers { +.dataTables_paginate { border-radius: theme('borderRadius.DEFAULT'); overflow: hidden; border: 1px solid theme('colors.gray.200'); @@ -10,11 +10,11 @@ display: inline-flex; } -.paging_simple_numbers>span { +.dataTables_paginate>span { display: flex; } -.paging_simple_numbers a { +.dataTables_paginate a { display: block; font-size: .875rem; padding: .5rem .75rem; @@ -23,6 +23,10 @@ border: 1px solid theme('colors.gray.200'); } +.dataTables_paginate a.current { + background-color: theme('colors.teal.100'); +} + .dataTables_filter label { font-size: .875rem; font-weight: 500; @@ -35,3 +39,7 @@ box-shadow: theme('boxShadow.sm'); border: 1px solid theme('colors.gray.300'); } + +.dataTables_wrapper table a { + text-decoration: underline; +}