diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-01-24 13:34:12 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-24 13:34:12 -0600 |
commit | 8f5c62c99f51007986559984445d1ebc86c128a5 (patch) | |
tree | 07856ab9134ad23a348106ed55c1b88dc874212a | |
parent | fa5cb9c875d87c1f5da42b5586118d1ecccf1079 (diff) | |
parent | 1936b561037b89b4363af071551a11598bfc5f65 (diff) | |
download | nextcloud-server-8f5c62c99f51007986559984445d1ebc86c128a5.tar.gz nextcloud-server-8f5c62c99f51007986559984445d1ebc86c128a5.zip |
Merge pull request #3204 from nextcloud/remove-button-shadow
remove button shadow effect, fix #3203
-rw-r--r-- | core/css/inputs.scss | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/core/css/inputs.scss b/core/css/inputs.scss index a1af00298e5..6a2253ed6f7 100644 --- a/core/css/inputs.scss +++ b/core/css/inputs.scss @@ -115,11 +115,6 @@ input[type='reset'] { cursor: pointer; box-sizing: border-box; background-color: #fafafa; - box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.15); - &:active, - &.active { - box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.15); - } } /* Buttons */ @@ -134,7 +129,7 @@ input[type='reset'] { } } button, .button { - > span { + > span { /* icon position inside buttons */ &[class^='icon-'], &[class*=' icon-'] { |