diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
index 3a84f85..191e7ff 100644
|
a
|
b
|
form.upgrade .hint { |
| 1675 | 1675 | margin: 0 20px -1px 0px; |
| 1676 | 1676 | position: relative; |
| 1677 | 1677 | background-color: #fff; |
| 1678 | | border: 1px solid #ddd; |
| | 1678 | border: 1px solid #8d96a0; |
| 1679 | 1679 | border-top: none; |
| 1680 | | box-shadow: 0 1px 0 rgba(0, 0, 0, 0.025); |
| | 1680 | box-shadow: 0 0 0 transparent; |
| 1681 | 1681 | } |
| 1682 | 1682 | |
| 1683 | 1683 | #screen-options-link-wrap, |
| … |
… |
form.upgrade .hint { |
| 1692 | 1692 | } |
| 1693 | 1693 | |
| 1694 | 1694 | #screen-meta-links .show-settings { |
| 1695 | | border: 1px solid #ddd; |
| | 1695 | border: 1px solid #8d96a0; |
| 1696 | 1696 | border-top: none; |
| 1697 | 1697 | border-bottom-color: #ccc; |
| 1698 | 1698 | height: auto; |
| 1699 | 1699 | margin-bottom: 0; |
| 1700 | 1700 | padding: 3px 6px 3px 16px; |
| 1701 | 1701 | background: #fff; |
| 1702 | | border-radius: 0; |
| | 1702 | border-radius: 0 0 4px 4px; |
| 1703 | 1703 | color: #72777c; |
| 1704 | 1704 | line-height: 1.7; |
| 1705 | | box-shadow: none; |
| | 1705 | box-shadow: 0 0 0 transparent; |
| | 1706 | transition: box-shadow 0.1s linear; |
| 1706 | 1707 | } |
| 1707 | 1708 | |
| 1708 | 1709 | #screen-meta-links .show-settings:hover, |
diff --git a/src/wp-admin/css/forms.css b/src/wp-admin/css/forms.css
index b264994..0195c53 100644
|
a
|
b
|
input[type="url"], |
| 23 | 23 | input[type="week"], |
| 24 | 24 | select, |
| 25 | 25 | textarea { |
| 26 | | border: 1px solid #ddd; |
| 27 | | box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.07); |
| | 26 | padding: 6px 8px; |
| | 27 | box-shadow: 0 0 0 transparent; |
| | 28 | transition: box-shadow 0.1s linear; |
| | 29 | border-radius: 4px; |
| | 30 | border: 1px solid #8d96a0; |
| 28 | 31 | background-color: #fff; |
| 29 | 32 | color: #32373c; |
| 30 | 33 | outline: none; |
| 31 | | transition: 0.05s border-color ease-in-out; |
| 32 | 34 | } |
| 33 | 35 | |
| 34 | 36 | input[type="text"]:focus, |
| … |
… |
input[type="radio"]:focus, |
| 51 | 53 | select:focus, |
| 52 | 54 | textarea:focus { |
| 53 | 55 | border-color: #5b9dd9; |
| 54 | | box-shadow: 0 0 2px rgba(30, 140, 190, 0.8); |
| 55 | 56 | /* Only visible in Windows High Contrast mode */ |
| 56 | 57 | outline: 2px solid transparent; |
| 57 | 58 | } |