Changeset 3602:8a1b100e0a84 for admin/style/scss/partials/_forms.scss
- Timestamp:
- 11/17/17 12:10:54 (8 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/style/scss/partials/_forms.scss
r3517 r3602 9 9 select, 10 10 legend { 11 max-width: 100%; 12 } 13 14 input[type=text], 15 input[type=password], 16 input[type=submit], 17 input[type=button], 18 input[type=reset], 19 a.button, 20 button, 21 textarea, 22 legend { 11 23 border-radius: 3px; 12 max-width: 100%;13 24 } 14 25 … … 55 66 textarea, 56 67 select { 68 color: #000; 69 box-shadow: 1px 1px 2px #f3f3f3 inset; 70 padding: 3px; 71 vertical-align: top; 72 } 73 input[type=text], 74 input[type=password], 75 textarea { 57 76 background: #fcfcfc; 58 color: #000;59 77 border-width: 1px; 60 78 border-style: solid; 61 79 border-color: #dfdfdf; 62 box-shadow: 1px 1px 2px #f3f3f3 inset;63 padding: 3px;64 vertical-align: top;65 80 } 66 81 67 82 input:focus, 68 textarea:focus, 69 select:focus { 83 textarea:focus { 70 84 border-color: #9bca1c; 71 85 } … … 87 101 vertical-align: middle; 88 102 } 103 @media not all and (min-resolution:.001dpcm) 104 { @supports (-webkit-appearance:none) { 105 /* Safari 10.1+ only (https://browserstrangeness.bitbucket.io/css_hacks.html#webkit) */ 106 select { 107 font-size: initial; 108 } 109 }} 89 110 90 111 select.l10n option { … … 99 120 textarea.invalid, 100 121 select.invalid { 122 color: #900; 123 box-shadow: 0 0 0 3px rgba(218, 62, 90, 0.3); 124 } 125 input.invalid, 126 textarea.invalid { 101 127 border: 1px solid red; 102 128 background: #FFBABA; 103 color: #900;104 box-shadow: 0 0 0 3px rgba(218, 62, 90, 0.3);105 129 } 106 130
Note: See TracChangeset
for help on using the changeset viewer.