aboutsummaryrefslogtreecommitdiffstats
path: root/public/less
diff options
context:
space:
mode:
authorKim "BKC" Carlbäcker <kim.carlbacker@gmail.com>2015-12-26 12:26:26 +0100
committerKim "BKC" Carlbäcker <kim.carlbacker@gmail.com>2016-01-05 19:21:41 +0100
commit0df39b33ebcff50df537f4682a72dcc29f046d01 (patch)
tree9454f38fb3a9ce16d58d20dc9a9a7016dba3359f /public/less
parent7392b6a755300e9f921535d2c1ec6358d4e8bfe8 (diff)
downloadgitea-0df39b33ebcff50df537f4682a72dcc29f046d01.tar.gz
gitea-0df39b33ebcff50df537f4682a72dcc29f046d01.zip
Implement Split Diff-View
- Unified/Inline Diff-View Selectable
Diffstat (limited to 'public/less')
-rw-r--r--public/less/_base.less7
-rw-r--r--public/less/_repository.less24
2 files changed, 31 insertions, 0 deletions
diff --git a/public/less/_base.less b/public/less/_base.less
index ab2785ff57..c07c81db4f 100644
--- a/public/less/_base.less
+++ b/public/less/_base.less
@@ -19,6 +19,13 @@ pre {
line-height: 1.5;
overflow: auto;
}
+ &.wrap {
+ white-space: pre-wrap; /* CSS 3 */
+ white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
+ white-space: -pre-wrap; /* Opera 4-6 */
+ white-space: -o-pre-wrap; /* Opera 7 */
+ word-wrap: break-word; /* Internet Explorer 5.5+ */
+ }
}
.full.height {
padding: 0;
diff --git a/public/less/_repository.less b/public/less/_repository.less
index 9891886e88..441832daf2 100644
--- a/public/less/_repository.less
+++ b/public/less/_repository.less
@@ -668,6 +668,11 @@
color: #A7A7A7;
background: #fafafa;
width: 1%;
+
+ span.fold {
+ display: block;
+ text-align: center;
+ }
}
.lines-num-old {
border-right: 1px solid #DDD;
@@ -698,6 +703,9 @@
padding-top: 4px;
padding-bottom: 4px;
}
+ td.halfwidth {
+ width: 50%;
+ }
// td.selected-line, td.selected-line pre {
// background-color: #ffffdd !important;
// }
@@ -708,10 +716,23 @@
// }
// }
&.del-code {
+ td.add-code {
+ background-color: #eaffea !important;
+ border-color: #c1e9c1 !important;
+ pre {
+ background-color: #eaffea !important;
+ border-color: #c1e9c1 !important;
+
+ }
+ }
td, pre {
background-color: #ffecec !important;
border-color: #f1c0c0 !important;
}
+
+ td.halfwidth {
+ width: 50%;
+ }
// td.selected-line, td.selected-line pre {
// background-color: #ffffdd !important;
// }
@@ -721,6 +742,9 @@
background-color: #eaffea !important;
border-color: #c1e9c1 !important;
}
+ td.halfwidth {
+ width: 50%;
+ }
// td.selected-line, td.selected-line pre {
// background-color: #ffffdd !important;
// }