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

@ -342,14 +342,23 @@
}
}
.commit-list {
.sha.label {
background: rgb(70, 70, 105);
border: 0 !important;
color: rgb(245, 245, 255);
transition: background .2s, color .2s;
&:hover {
background: rgb(60, 60, 90);
color: rgb(255, 255, 255);
th {
.sha.label {
background: rgb(70, 70, 105);
border: 0 !important;
color: rgb(245, 245, 255);
transition: background .2s, color .2s;
&:hover {
background: rgb(60, 60, 90);
color: rgb(255, 255, 255);
}
}
.commit-summary {
.commit-button {
@if $nojavascript == true {
display: none;
}
}
}
}
}
@ -683,6 +692,31 @@
}
}
}
.table {
.very.basic.table {
.commit-list {
tr {
.sha.label {
background: rgb(70, 70, 105);
border: 0 !important;
color: rgb(245, 245, 255);
transition: background .2s, color .2s;
&:hover {
background: rgb(60, 60, 90);
color: rgb(255, 255, 255);
}
}
.message {
.commit-button {
@if $nojavascript == true {
display: none;
}
}
}
}
}
}
}
}
}