Ticket #47153: 47153.6.diff
File 47153.6.diff, 2.0 KB (added by , 5 years ago) |
---|
-
src/wp-admin/css/common.css
1368 1368 background: #fff; 1369 1369 border: 1px solid #ccd0d4; 1370 1370 border-left-width: 4px; 1371 box-shadow: 0 1px 1px rgba(0,0,0,.04) 1371 box-shadow: 0 1px 1px rgba(0,0,0,.04); 1372 1372 margin: 5px 15px 2px; 1373 1373 padding: 1px 12px; 1374 1374 } … … 1673 1673 background-color: #fff; 1674 1674 border: 1px solid #ccd0d4; 1675 1675 border-top: none; 1676 box-shadow: 0 1px 0 rgba(0, 0, 0, 0.025);1676 box-shadow: 0 0 0 transparent; 1677 1677 } 1678 1678 1679 1679 #screen-options-link-wrap, … … 1690 1690 #screen-meta-links .show-settings { 1691 1691 border: 1px solid #ccd0d4; 1692 1692 border-top: none; 1693 border-bottom-color: #ccd0d4;1694 1693 height: auto; 1695 1694 margin-bottom: 0; 1696 1695 padding: 3px 6px 3px 16px; 1697 1696 background: #fff; 1698 border-radius: 0 ;1697 border-radius: 0 0 4px 4px; 1699 1698 color: #72777c; 1700 1699 line-height: 1.7; 1701 box-shadow: none; 1700 box-shadow: 0 0 0 transparent; 1701 transition: box-shadow 0.1s linear; 1702 1702 } 1703 1703 1704 1704 #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, … … 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 {