summaryrefslogtreecommitdiff
path: root/app/assets
diff options
context:
space:
mode:
authorPatricio Cano <suprnova32@gmail.com>2016-06-29 15:26:02 -0500
committerPatricio Cano <suprnova32@gmail.com>2016-07-05 16:54:22 -0500
commit2e96fcff12a8944b1f9bd5179381094ed4498bd5 (patch)
tree94fee6cdae670446b29fbd3426f49f1a87f44eeb /app/assets
parent29c50c53159333bdd124d4d3584ae826f49c28ad (diff)
downloadgitlab-ce-2e96fcff12a8944b1f9bd5179381094ed4498bd5.tar.gz
Clone button should not be clickable when there is a disabled protocol
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/stylesheets/framework/buttons.scss11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/buttons.scss b/app/assets/stylesheets/framework/buttons.scss
index a431fa59a57..590b8f54363 100644
--- a/app/assets/stylesheets/framework/buttons.scss
+++ b/app/assets/stylesheets/framework/buttons.scss
@@ -288,3 +288,14 @@
text-decoration: none;
}
}
+
+.btn-static {
+ background-color: $background-color !important;
+ border: 1px solid lightgrey;
+ cursor: default;
+ &:active {
+ -moz-box-shadow: inset 0 0 0 white;
+ -webkit-box-shadow: inset 0 0 0 white;
+ box-shadow: inset 0 0 0 white;
+ }
+}