color changes in safari css

Solutions on MaxInterview for color changes in safari css by the best coders in the world

showing results for - "color changes in safari css"
Fran
26 May 2017
1input[disabled], textarea[disabled],
2select[disabled='disabled']{
3   -webkit-text-fill-color: rgba(0, 0, 0, 1); 
4   -webkit-opacity: 1; 
5   color: rgba(0, 0, 0, 1); 
6   background: white;
7}
8
Latoya
12 Apr 2016
1input[disabled], textarea[disabled],
2select[disabled='disabled']{
3    color: #000001 !important;
4}
5