vrifox/gitea-theme
Archived
1
0
Fork 0
This commit is contained in:
Vrifox 2020-10-26 19:06:53 +01:00
parent 396a8f6743
commit a0e132171f
2 changed files with 136 additions and 0 deletions

View file

@ -28,5 +28,6 @@ $border-radius: 5px;
@import 'import/repository.scss'; @import 'import/repository.scss';
@import 'import/explore.scss'; @import 'import/explore.scss';
@import 'import/user.scss'; @import 'import/user.scss';
@import 'import/dashboard.scss';
@import 'import/footer'; @import 'import/footer';

135
scss/import/dashboard.scss Normal file
View file

@ -0,0 +1,135 @@
.dashboard.feeds {
.dashboard-navbar {
.secondary.menu {
.item {
.dropdown {
&:hover {
.context.user.menu {
display: none;
}
}
.text {
color: $white;
}
.context.user.menu {
background: $bg50;
.header {
color: $white;
}
.scrolling.menu.items {
border: 0;
}
.item {
border-radius: 0;
color: $white !important;
&:hover {
background: $bg40;
}
&.active {
background: $bg40 !important;
&:hover {
background: $bg30 !important;
}
}
}
}
}
}
}
}
.divider {
border: 0 !important;
border-top: 1px solid $bg60 !important;
}
.container {
.grid {
.column.ten {
.news {
.grid {
.column.fourteen {
div {
.content {
ul {
li {
.text.grey {
color: $white-dark !important;
}
}
}
}
.text.grey {
.time-since {
color: $white-dark;
}
}
}
}
.column.two {
.text.grey {
svg {
fill: $white-dark;
}
}
}
}
}
}
.column.six {
div {
.item.tabable.menu {
background: $bg70;
border: 0;
.item {
color: $white;
&:hover {
background: $bg60 !important;
}
&.active {
background: $bg60;
&:hover {
background: $bg50;
}
}
}
}
.tab.list.dashboard-repos {
h4.attached.header {
background: $bg50;
border: 0;
color: $white;
span.grey.label {
background: $white;
color: $bg50;
}
.right {
a {
color: $white;
}
}
}
.repos-search {
background: $bg50;
border: 0;
color: $white;
.input {
}
.repos-filter {
.item {
color: $white;
&.active {
.grey.label {
background: $white;
color: $bg50;
border-radius: $border-radius;
}
}
}
}
}
}
}
}
}
}
}