diff --git a/core/themes/seven/css/components/buttons.theme.css b/core/themes/seven/css/components/buttons.theme.css index 36a4d6a..07634e3 100644 --- a/core/themes/seven/css/components/buttons.theme.css +++ b/core/themes/seven/css/components/buttons.theme.css @@ -43,14 +43,15 @@ text-decoration: none; outline: none; } +.button:hover { + box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.125); +} .button:focus { border: 1px solid #3AB2FF; box-shadow: 0 0 0.5em 0.1em hsla(203, 100%, 60%, 0.7); } -.button:hover { - box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.125); -} .button:active { + border: 1px solid #a6a6a6; background-color: #dfdfd9; background-image: -webkit-linear-gradient(top, #f6f6f3, #e7e7df); background-image: -moz-linear-gradient(top, #f6f6f3, #e7e7df); diff --git a/core/themes/seven/css/seven.base.css b/core/themes/seven/css/seven.base.css index bff4d6a..ce3039b 100644 --- a/core/themes/seven/css/seven.base.css +++ b/core/themes/seven/css/seven.base.css @@ -15,6 +15,10 @@ a:hover, .link:hover { text-decoration: underline; } +.button:focus { + outline: 0; + box-shadow: 0 0 0.5em 0.1em hsla(203, 100%, 60%, 0.7); +} hr { margin: 0; padding: 0; diff --git a/core/themes/seven/css/style.css b/core/themes/seven/css/style.css index ff81295..8c5c109 100644 --- a/core/themes/seven/css/style.css +++ b/core/themes/seven/css/style.css @@ -840,10 +840,11 @@ textarea.form-textarea { border: 1px solid #b8b8b8; border-top-color: #999; background: #fff; - color: #333; + color: #000; + border-color: rgba(0, 116, 189, 0.8); border-radius: 2px; background: #fcfcfa; - box-shadow: inset 0 1px 2px rgba(0, 0, 0, .125); + box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(220, 220, 220, 0.4); font-size: 1em; color: #595959; -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;