diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2019-08-09 11:53:22 +0100 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2019-08-12 17:24:42 +0100 |
commit | 3e2f2b807148c9dce1f7cc56ec902cf60bc9029c (patch) | |
tree | 8036e7368522b6c53377f98dfe33861089e65ee1 /app/assets/stylesheets/pages/builds.scss | |
parent | c85cbc08f7fc43819f7569b7686ee22ce747e7b3 (diff) | |
download | gitlab-ce-3e2f2b807148c9dce1f7cc56ec902cf60bc9029c.tar.gz |
Adds highlight to collapsible line
In the job log adds a highlight when hovering
the collapsible line
Diffstat (limited to 'app/assets/stylesheets/pages/builds.scss')
-rw-r--r-- | app/assets/stylesheets/pages/builds.scss | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/builds.scss b/app/assets/stylesheets/pages/builds.scss index 6fc742871e7..73166940146 100644 --- a/app/assets/stylesheets/pages/builds.scss +++ b/app/assets/stylesheets/pages/builds.scss @@ -124,6 +124,26 @@ float: left; padding-left: $gl-padding-8; } + + .section-start { + display: inline; + } + + .section-start, + .section-header { + &:hover { + cursor: pointer; + + &::after { + content: ''; + background-color: rgba($white-light, 0.2); + left: 0; + right: 0; + position: absolute; + height: $job-log-highlight-height; + } + } + } } .build-header { |