vrifox/gitea-theme
Archived
1
0
Fork 0
This repository has been archived on 2022-09-28. You can view files and clone it, but cannot push or open issues or pull requests.
gitea-theme/scss/import/explore.scss

102 lines
1.9 KiB
SCSS
Raw Normal View History

2020-09-27 21:09:15 +02:00
/* explore: repositories / main */
.explore {
2020-11-08 19:50:40 +01:00
@include secondary-menu_new-menu;
2020-09-27 21:09:15 +02:00
.container {
@if $nojavascript == true {
.filter.menu {
display: none;
}
2020-09-27 21:09:15 +02:00
}
form.form {
.input {
input {
2020-10-20 19:24:47 +02:00
background: $bg40;
border: 2px solid $bg60;
color: $white;
2020-09-27 21:09:15 +02:00
&:focus {
2020-10-20 19:24:47 +02:00
background: $bg50;
border: 2px solid $bg60;
color: $white-light;
2020-09-27 21:09:15 +02:00
}
}
.button {
2020-10-20 19:24:47 +02:00
background: $bg60;
2020-09-27 21:09:15 +02:00
border: 0;
&:hover {
2020-10-20 19:24:47 +02:00
background: $bg50;
2020-09-27 21:09:15 +02:00
}
}
}
}
.divider {
2020-10-20 19:37:44 +02:00
border-bottom: 1px solid $bg60 !important;
border-top: 0 !important;
2020-09-27 21:09:15 +02:00
}
2020-10-20 19:37:44 +02:00
.repository.list,
.user.list {
2020-09-27 21:09:15 +02:00
.item {
&:not(:first-child) {
2020-10-20 19:24:47 +02:00
border-top: 1px solid $bg60;
2020-09-27 21:09:15 +02:00
}
.header {
a.name {
i.archive.icon {
2020-10-20 19:24:47 +02:00
color: $white-dark !important;
2020-09-27 21:09:15 +02:00
}
}
.metas {
2020-10-20 19:37:44 +02:00
@if $singleuser == true {
display: none;
}
2020-09-27 21:09:15 +02:00
span {
2020-10-20 19:24:47 +02:00
color: $white-dark !important;
2020-09-27 21:09:15 +02:00
}
}
}
.description {
p {
2020-10-20 19:24:47 +02:00
color: $white;
2020-09-27 21:09:15 +02:00
&.time {
2020-10-20 19:24:47 +02:00
color: $white-dark;
2020-09-27 21:09:15 +02:00
}
}
.tags {
a .label {
2020-10-20 19:24:47 +02:00
background: $bg60;
color: $white;
2020-09-27 21:09:15 +02:00
&:hover {
2020-10-20 19:24:47 +02:00
background: $bg70;
color: $white-light;
2020-09-27 21:09:15 +02:00
}
}
}
}
}
}
}
}
/* explore: users */
.explore.users {
.container {
.user.list {
.content {
.header {
2020-10-20 19:24:47 +02:00
color: $white;
2020-09-27 21:09:15 +02:00
}
.description {
2020-10-20 19:24:47 +02:00
color: $white;
2020-10-20 19:37:44 +02:00
svg {
@if $nojavascript == true {
display: none;
}
}
2020-09-27 21:09:15 +02:00
}
}
}
}
}