Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-02-24 17:56:20 +0300
committerPhil Hughes <me@iamphill.com>2017-02-28 17:38:23 +0300
commite13dc680523c14c205c20c2cd299ad64c287cd23 (patch)
tree7cfe9b7bb59c749455c444cd1c523c4d907d5771 /app/assets/stylesheets/pages/diff.scss
parentdb44e5569851d5542ae3fbe283cd7ccf0522b46a (diff)
Disables interaction with expanded lines
Fixed scss-lint errors
Diffstat (limited to 'app/assets/stylesheets/pages/diff.scss')
-rw-r--r--app/assets/stylesheets/pages/diff.scss9
1 files changed, 7 insertions, 2 deletions
diff --git a/app/assets/stylesheets/pages/diff.scss b/app/assets/stylesheets/pages/diff.scss
index 339cdcde480..5d0c247dea8 100644
--- a/app/assets/stylesheets/pages/diff.scss
+++ b/app/assets/stylesheets/pages/diff.scss
@@ -133,8 +133,13 @@
width: 35px;
font-weight: normal;
- &:hover {
- text-decoration: underline;
+ &[disabled] {
+ cursor: default;
+
+ &:hover,
+ &:active {
+ text-decoration: none;
+ }
}
}
}