added styles to repository: files
This commit is contained in:
parent
74194873fd
commit
90e3c5f755
3 changed files with 182 additions and 11 deletions
|
@ -97,6 +97,16 @@
|
|||
}
|
||||
.secondary.menu {
|
||||
.item {
|
||||
.blue.buttons {
|
||||
.button {
|
||||
background: rgb(60, 60, 90);
|
||||
box-shadow: none;
|
||||
color: rgb(245, 245, 255);
|
||||
&:hover {
|
||||
background: rgb(50, 50, 75);
|
||||
}
|
||||
}
|
||||
}
|
||||
#clone-panel {
|
||||
#repo-clone-https,
|
||||
#repo-clone-ssh {
|
||||
|
@ -140,6 +150,17 @@
|
|||
}
|
||||
.download.icon {
|
||||
color: rgb(245, 245, 255);
|
||||
.menu {
|
||||
background: rgb(60, 60, 90);
|
||||
border: 1px solid rgb(50, 50, 75);
|
||||
box-shadow: none;
|
||||
.item {
|
||||
color: rgb(245, 245, 255);
|
||||
&:hover {
|
||||
background: rgb(50, 50, 75);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -188,7 +209,7 @@
|
|||
}
|
||||
}
|
||||
.jumpable-path {
|
||||
color: rgb(100, 100, 150) !important;
|
||||
color: rgb(215, 215, 225) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -248,11 +269,24 @@
|
|||
background: rgb(50, 50, 75);
|
||||
}
|
||||
}
|
||||
.menu {
|
||||
background: rgb(60, 60, 90);
|
||||
border: 1px solid rgb(50, 50, 75);
|
||||
box-shadow: none;
|
||||
.item {
|
||||
color: rgb(245, 245, 255);
|
||||
&:hover {
|
||||
background: rgb(50, 50, 75);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.segment.text {
|
||||
background: rgb(30, 30, 45);
|
||||
.segment {
|
||||
border: 0;
|
||||
.text {
|
||||
background: rgb(30, 30, 45);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -374,10 +408,14 @@
|
|||
background: rgb(60, 60, 90);
|
||||
}
|
||||
.menu {
|
||||
background: rgb(50, 50, 75);
|
||||
border: rgb(60, 60, 90);
|
||||
background: rgb(70, 70, 105);
|
||||
border: 1px solid rgb(60, 60, 90);
|
||||
box-shadow: none;
|
||||
.item {
|
||||
color: rgb(245, 245, 255);
|
||||
&:hover {
|
||||
background: rgb(60, 60, 90);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -450,5 +488,74 @@
|
|||
/* repository: files */
|
||||
|
||||
.repository.file {
|
||||
|
||||
.container {
|
||||
.secondary.menu {
|
||||
.item {
|
||||
.repo-path {
|
||||
a {
|
||||
color: rgb(215, 215, 225);
|
||||
&:hover {
|
||||
color: rgb(255, 130, 130);
|
||||
}
|
||||
}
|
||||
.divider {
|
||||
color: rgb(215, 215, 225);
|
||||
}
|
||||
.active.section {
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.non-diff-file-content {
|
||||
.file-header {
|
||||
.file-header-left {
|
||||
.file-info {
|
||||
color: rgb(215, 215, 225) !important;
|
||||
}
|
||||
}
|
||||
.file-header-right {
|
||||
.file-actions {
|
||||
a {
|
||||
.btn-octicon {
|
||||
.svg {
|
||||
fill: rgb(215, 215, 225);
|
||||
transition: fill .2s;
|
||||
&:hover {
|
||||
fill: rgb(255, 255, 255);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.buttons {
|
||||
.button {
|
||||
background: rgb(70, 70, 105);
|
||||
box-shadow: none;
|
||||
color: rgb(245, 245, 255);
|
||||
&:hover {
|
||||
background: rgb(60, 60, 90);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.table {
|
||||
.file-view.code-view {
|
||||
table {
|
||||
tbody {
|
||||
tr {
|
||||
td,
|
||||
td pre code .linenums {
|
||||
background: rgb(30, 30, 45) !important;
|
||||
border-color: rgb(60, 60, 90) !important;
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue