vrifox/gitea-theme
Archived
1
0
Fork 0

button not usable if

This commit is contained in:
Vrifox 2020-10-09 14:31:22 +02:00
parent ae07ce8437
commit ca70118f60
4 changed files with 70 additions and 12 deletions

View file

@ -262,12 +262,12 @@ body > .full.height::first-line,
fill: #d7d7e1; }
.repository .container .table tbody tr .jumpable-path {
color: #d7d7e1 !important; }
.repository .container .table .commit-list .sha.label {
.repository .container .table .commit-list th .sha.label {
background: #464669;
border: 0 !important;
color: #f5f5ff;
transition: background .2s, color .2s; }
.repository .container .table .commit-list .sha.label:hover {
.repository .container .table .commit-list th .sha.label:hover {
background: #3c3c5a;
color: white; }
@ -433,6 +433,15 @@ body > .full.height::first-line,
.repository.commits .container .header form .checkbox label {
color: #f5f5ff; }
.repository.commits .container .table .very.basic.table .commit-list tr .sha.label {
background: #464669;
border: 0 !important;
color: #f5f5ff;
transition: background .2s, color .2s; }
.repository.commits .container .table .very.basic.table .commit-list tr .sha.label:hover {
background: #3c3c5a;
color: white; }
/* repository: branches */
.repository.branches .container .table tbody tr:hover {
background: #1e1e2d; }

View file

@ -309,14 +309,16 @@ body > .full.height::first-line,
width: 10px; }
.repository .container .table tbody tr .jumpable-path {
color: #d7d7e1 !important; }
.repository .container .table .commit-list .sha.label {
.repository .container .table .commit-list th .sha.label {
background: #464669;
border: 0 !important;
color: #f5f5ff;
transition: background .2s, color .2s; }
.repository .container .table .commit-list .sha.label:hover {
.repository .container .table .commit-list th .sha.label:hover {
background: #3c3c5a;
color: white; }
.repository .container .table .commit-list th .commit-summary .commit-button {
display: none; }
.repository .container .non-diff-file-content {
color: #f5f5ff; }
@ -502,6 +504,18 @@ body > .full.height::first-line,
.repository.commits .container .header form .checkbox label {
color: #f5f5ff; }
.repository.commits .container .table .very.basic.table .commit-list tr .sha.label {
background: #464669;
border: 0 !important;
color: #f5f5ff;
transition: background .2s, color .2s; }
.repository.commits .container .table .very.basic.table .commit-list tr .sha.label:hover {
background: #3c3c5a;
color: white; }
.repository.commits .container .table .very.basic.table .commit-list tr .message .commit-button {
display: none; }
/* repository: branches */
.repository.branches .container .table tbody tr:hover {
background: #1e1e2d; }