Browse Source

Split view fixed

tags/v0.9.99
Kim "BKC" Carlbäcker 8 years ago
parent
commit
96dee1c354
3 changed files with 12 additions and 1 deletions
  1. 3
    0
      public/css/gogs.css
  2. 8
    0
      public/less/_base.less
  3. 1
    1
      templates/repo/diff.tmpl

+ 3
- 0
public/css/gogs.css View File

@@ -809,6 +809,9 @@ pre.wrap {
.ui.right {
float: right;
}
.ui.container.fluid.padded {
padding: 0 10px 0 10px;
}
.ui .text.red {
color: #d95c5c !important;
}

+ 8
- 0
public/less/_base.less View File

@@ -101,6 +101,14 @@ pre {
float: right;
}

&.container {
&.fluid {
&.padded {
padding: 0 10px 0 10px;
}
}
}

.text {
&.red {
color: #d95c5c !important;

+ 1
- 1
templates/repo/diff.tmpl View File

@@ -1,7 +1,7 @@
{{template "base/head" .}}
<div class="repository diff">
{{template "repo/header" .}}
<div class="ui container">
<div class="ui container {{if .IsSplitStyle}}fluid padded{{end}}">
{{if .IsDiffCompare }}
{{template "repo/commits_table" .}}
{{else}}

Loading…
Cancel
Save