Update for changes in Gitea 1.21 and 1.20
|
@ -168,6 +168,9 @@
|
|||
|
||||
/* Navbar. */
|
||||
--color-navbar: hsl(213, 10%, 18%);
|
||||
--color-nav-bg: hsl(213, 10%, 18%);
|
||||
--color-nav-hover-bg: hsla(213, 18%, 90%, .05);
|
||||
--color-header-wrapper: hsl(213, 10%, 18%);
|
||||
--color-navbar-transparent: hsla(213, 10%, 14%, 0);
|
||||
--color-header-bar: hsl(213, 10%, 18%);
|
||||
|
||||
|
@ -293,34 +296,10 @@
|
|||
color: var(--color-label-text);
|
||||
}
|
||||
|
||||
.following.bar #navbar {
|
||||
min-height: 45px;
|
||||
}
|
||||
|
||||
/* Align items (notifications, dropdown toggle) to the right. */
|
||||
.following.bar #navbar .brand {
|
||||
justify-content: flex-end !important;
|
||||
}
|
||||
|
||||
.ui.tabular.menu {
|
||||
border-color: var(--color-border);
|
||||
}
|
||||
|
||||
/* Navbar logo. */
|
||||
.item.brand a {
|
||||
opacity: .8;
|
||||
transition: opacity var(--transition-speed) ease-in-out;
|
||||
}
|
||||
|
||||
.item.brand a:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.item.brand svg {
|
||||
height: 21px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.ui.breadcrumb a {
|
||||
color: var(--color-text);
|
||||
}
|
Before Width: | Height: | Size: 4 KiB After Width: | Height: | Size: 4 KiB |
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 7.5 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 124 KiB After Width: | Height: | Size: 124 KiB |
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 92 KiB |
Before Width: | Height: | Size: 118 KiB After Width: | Height: | Size: 118 KiB |
|
@ -455,7 +455,7 @@
|
|||
</style>
|
||||
|
||||
<style>
|
||||
/* Custom styling for code.blender.org */
|
||||
/* Custom styling for projects.blender.org */
|
||||
/* Make sure to start every line with ".nav-global"
|
||||
* so changes affect the developer navbar only. */
|
||||
|
||||
|
@ -467,6 +467,22 @@
|
|||
max-width: 1170px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Override Gitea's default navbar height. */
|
||||
#navbar {
|
||||
min-height: 46px;
|
||||
}
|
||||
|
||||
/* Hide the site logo. */
|
||||
#navbar .item:first-child {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Fix alignment of text in dropdown items. */
|
||||
.ui.dropdown>.text {
|
||||
position: relative;
|
||||
top: -2px;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="nav-global">
|
||||
|
|
|
@ -32,4 +32,4 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<a class="item" href="{{AppSubUrl}}/blender/blender/issues/new?template=.gitea%2fissue_template%2fbug.yaml">{{.locale.Tr "Report a Bug"}}</a>
|
||||
<a class="item" href="{{AppSubUrl}}/blender/blender/issues/new?template=.gitea%2fissue_template%2fbug.yaml">Report a Bug</a>
|
||||
|
|