summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets
diff options
context:
space:
mode:
authorJacopo <beschi.jacopo@gmail.com>2017-04-16 11:42:08 +0200
committerJacopo <beschi.jacopo@gmail.com>2017-04-16 11:51:21 +0200
commitde62d3b48c45030b91113e61bae0f3a2f24797e9 (patch)
tree510ec9981dedab53f234b4eec3141d3bdb9c0c95 /app/assets/stylesheets
parentae52d1a4b82cd86130c92795390fc3d9664d180b (diff)
downloadgitlab-ce-de62d3b48c45030b91113e61bae0f3a2f24797e9.tar.gz
Expand/collapse button -> Change to make it look like a toggle
Changed the expand/collapse button to look different when is opened/closed
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r--app/assets/stylesheets/pages/commits.scss7
1 files changed, 6 insertions, 1 deletions
diff --git a/app/assets/stylesheets/pages/commits.scss b/app/assets/stylesheets/pages/commits.scss
index 0dad91ba128..9e3142c8aa3 100644
--- a/app/assets/stylesheets/pages/commits.scss
+++ b/app/assets/stylesheets/pages/commits.scss
@@ -135,7 +135,7 @@
.text-expander {
display: inline-block;
- background: $gray-light;
+ background: $white-light;
color: $gl-text-color-secondary;
padding: 0 5px;
cursor: pointer;
@@ -146,6 +146,11 @@
line-height: $gl-font-size;
outline: none;
+ &.open {
+ background: $gray-light;
+ box-shadow: inset 0 0 2px rgba($black, 0.2);
+ }
+
&:hover {
background-color: darken($gray-light, 10%);
text-decoration: none;