Ticket #47153: 47153.4.diff
File 47153.4.diff, 2.2 KB (added by , 6 years ago) |
---|
-
src/wp-admin/css/common.css
1681 1681 margin: 0 20px -1px 0px; 1682 1682 position: relative; 1683 1683 background-color: #fff; 1684 border: 1px solid # ddd;1684 border: 1px solid #ccd0d4; 1685 1685 border-top: none; 1686 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.025);1686 box-shadow: 0 0 0 transparent; 1687 1687 } 1688 1688 1689 1689 #screen-options-link-wrap, … … 1698 1698 } 1699 1699 1700 1700 #screen-meta-links .show-settings { 1701 border: 1px solid # ddd;1701 border: 1px solid #ccd0d4; 1702 1702 border-top: none; 1703 border-bottom-color: #ccc;1704 1703 height: auto; 1705 1704 margin-bottom: 0; 1706 1705 padding: 3px 6px 3px 16px; 1707 1706 background: #fff; 1708 border-radius: 0 ;1707 border-radius: 0 0 4px 4px; 1709 1708 color: #72777c; 1710 1709 line-height: 1.7; 1711 box-shadow: none; 1710 box-shadow: 0 0 0 transparent; 1711 transition: box-shadow 0.1s linear; 1712 1712 } 1713 1713 1714 1714 #screen-meta-links .show-settings:hover, -
src/wp-admin/css/forms.css
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 #7e8993; 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, … … 50 52 input[type="radio"]:focus, 51 53 select:focus, 52 54 textarea:focus { 53 border-color: # 5b9dd9;54 box-shadow: 0 0 2px rgba(30, 140, 190, 0.8);55 border-color: #007cba; 56 box-shadow: 0 0 0 1px #007cba; 55 57 /* Only visible in Windows High Contrast mode */ 56 58 outline: 2px solid transparent; 57 59 } … … 70 72 71 73 input[type="checkbox"], 72 74 input[type="radio"] { 73 border: 1px solid # b4b9be;75 border: 1px solid #7e8993; 74 76 background: #fff; 75 77 color: #555; 76 78 clear: none; … … 184 186 select { 185 187 font-size: 14px; 186 188 padding: 3px 5px; 187 border-radius: 0; /* Reset mobile webkit's default element styling */188 189 } 189 190 190 191 textarea {