mirror of https://github.com/gogs/gogs.git
css: fix /admin/config pre overflow
parent
8796df8218
commit
333998509f
File diff suppressed because one or more lines are too long
|
@ -3180,6 +3180,10 @@ footer .ui.language .menu {
|
||||||
.admin.config .log-config table tbody tr td:first-child {
|
.admin.config .log-config table tbody tr td:first-child {
|
||||||
width: 100px;
|
width: 100px;
|
||||||
}
|
}
|
||||||
|
.admin.config .log-config table tbody tr td:last-child pre {
|
||||||
|
width: 600px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
.explore {
|
.explore {
|
||||||
padding-top: 15px;
|
padding-top: 15px;
|
||||||
padding-bottom: 80px;
|
padding-bottom: 80px;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -22,7 +22,8 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&:not(.select) {
|
&:not(.select) {
|
||||||
th, td {
|
th,
|
||||||
|
td {
|
||||||
&:first-of-type {
|
&:first-of-type {
|
||||||
padding-left: 15px !important;
|
padding-left: 15px !important;
|
||||||
}
|
}
|
||||||
|
@ -74,6 +75,10 @@
|
||||||
&:first-child {
|
&:first-child {
|
||||||
width: 100px;
|
width: 100px;
|
||||||
}
|
}
|
||||||
|
&:last-child pre {
|
||||||
|
width: 600px;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue