mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-09 03:11:51 +01:00
Fix clone panel z-index
This commit is contained in:
parent
18a80b291b
commit
fdc8c34258
5 changed files with 4 additions and 4 deletions
2
gogs.go
2
gogs.go
|
@ -17,7 +17,7 @@ import (
|
||||||
"github.com/gogits/gogs/modules/setting"
|
"github.com/gogits/gogs/modules/setting"
|
||||||
)
|
)
|
||||||
|
|
||||||
const APP_VER = "0.5.0.0909 Beta"
|
const APP_VER = "0.5.0.0910 Beta"
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
runtime.GOMAXPROCS(runtime.NumCPU())
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
html,
|
html,
|
||||||
body {
|
body {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow-y: scroll;
|
|
||||||
}
|
}
|
||||||
.octicon,
|
.octicon,
|
||||||
.fa {
|
.fa {
|
||||||
|
@ -1015,6 +1014,7 @@ The register and sign-in page style
|
||||||
left: -354px;
|
left: -354px;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
z-index: 1;
|
||||||
}
|
}
|
||||||
#repo-header-download-drop .btn > i {
|
#repo-header-download-drop .btn > i {
|
||||||
margin-right: 6px;
|
margin-right: 6px;
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
html,
|
html,
|
||||||
body {
|
body {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
overflow-y: scroll;
|
|
||||||
}
|
}
|
||||||
.octicon,
|
.octicon,
|
||||||
.fa {
|
.fa {
|
||||||
|
|
|
@ -84,6 +84,7 @@ border-top-right-radius: .25em;
|
||||||
left: -354px;
|
left: -354px;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
z-index: 1;
|
||||||
.btn > i {
|
.btn > i {
|
||||||
margin-right: 6px;
|
margin-right: 6px;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
0.5.0.0909 Beta
|
0.5.0.0910 Beta
|
Loading…
Reference in a new issue