button not usable if
This commit is contained in:
parent
ae07ce8437
commit
ca70118f60
4 changed files with 70 additions and 12 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
||||||
deploy.sh
|
deploy.sh
|
||||||
|
*.kate-swp
|
||||||
|
|
|
@ -262,12 +262,12 @@ body > .full.height::first-line,
|
||||||
fill: #d7d7e1; }
|
fill: #d7d7e1; }
|
||||||
.repository .container .table tbody tr .jumpable-path {
|
.repository .container .table tbody tr .jumpable-path {
|
||||||
color: #d7d7e1 !important; }
|
color: #d7d7e1 !important; }
|
||||||
.repository .container .table .commit-list .sha.label {
|
.repository .container .table .commit-list th .sha.label {
|
||||||
background: #464669;
|
background: #464669;
|
||||||
border: 0 !important;
|
border: 0 !important;
|
||||||
color: #f5f5ff;
|
color: #f5f5ff;
|
||||||
transition: background .2s, color .2s; }
|
transition: background .2s, color .2s; }
|
||||||
.repository .container .table .commit-list .sha.label:hover {
|
.repository .container .table .commit-list th .sha.label:hover {
|
||||||
background: #3c3c5a;
|
background: #3c3c5a;
|
||||||
color: white; }
|
color: white; }
|
||||||
|
|
||||||
|
@ -433,6 +433,15 @@ body > .full.height::first-line,
|
||||||
.repository.commits .container .header form .checkbox label {
|
.repository.commits .container .header form .checkbox label {
|
||||||
color: #f5f5ff; }
|
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 */
|
||||||
.repository.branches .container .table tbody tr:hover {
|
.repository.branches .container .table tbody tr:hover {
|
||||||
background: #1e1e2d; }
|
background: #1e1e2d; }
|
||||||
|
|
|
@ -309,14 +309,16 @@ body > .full.height::first-line,
|
||||||
width: 10px; }
|
width: 10px; }
|
||||||
.repository .container .table tbody tr .jumpable-path {
|
.repository .container .table tbody tr .jumpable-path {
|
||||||
color: #d7d7e1 !important; }
|
color: #d7d7e1 !important; }
|
||||||
.repository .container .table .commit-list .sha.label {
|
.repository .container .table .commit-list th .sha.label {
|
||||||
background: #464669;
|
background: #464669;
|
||||||
border: 0 !important;
|
border: 0 !important;
|
||||||
color: #f5f5ff;
|
color: #f5f5ff;
|
||||||
transition: background .2s, color .2s; }
|
transition: background .2s, color .2s; }
|
||||||
.repository .container .table .commit-list .sha.label:hover {
|
.repository .container .table .commit-list th .sha.label:hover {
|
||||||
background: #3c3c5a;
|
background: #3c3c5a;
|
||||||
color: white; }
|
color: white; }
|
||||||
|
.repository .container .table .commit-list th .commit-summary .commit-button {
|
||||||
|
display: none; }
|
||||||
|
|
||||||
.repository .container .non-diff-file-content {
|
.repository .container .non-diff-file-content {
|
||||||
color: #f5f5ff; }
|
color: #f5f5ff; }
|
||||||
|
@ -502,6 +504,18 @@ body > .full.height::first-line,
|
||||||
.repository.commits .container .header form .checkbox label {
|
.repository.commits .container .header form .checkbox label {
|
||||||
color: #f5f5ff; }
|
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 */
|
||||||
.repository.branches .container .table tbody tr:hover {
|
.repository.branches .container .table tbody tr:hover {
|
||||||
background: #1e1e2d; }
|
background: #1e1e2d; }
|
||||||
|
|
|
@ -342,14 +342,23 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.commit-list {
|
.commit-list {
|
||||||
.sha.label {
|
th {
|
||||||
background: rgb(70, 70, 105);
|
.sha.label {
|
||||||
border: 0 !important;
|
background: rgb(70, 70, 105);
|
||||||
color: rgb(245, 245, 255);
|
border: 0 !important;
|
||||||
transition: background .2s, color .2s;
|
color: rgb(245, 245, 255);
|
||||||
&:hover {
|
transition: background .2s, color .2s;
|
||||||
background: rgb(60, 60, 90);
|
&:hover {
|
||||||
color: rgb(255, 255, 255);
|
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;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue