Chrome 및 Chromium의 경우 문제 1373 : 어두운 배경 웹 사이트를 탐색하면 페이지간에 흰색 깜박임이 발생할 수 있습니다.
의견 261에 설명 된 불행을 최소화 할 수 있지만 완전히 제거 할 수는 없습니다 .
임시 수정으로 웹 사이트에서 스타일 정보를 수신하기 전에 흰색 대신 검은 색으로 창을 렌더링하고 이제는 검은 색으로 깜박이도록 페이지를 검정색 배경으로 렌더링하도록 사용자 정의 사용자 스타일 시트를 설정했습니다. 영구적 인 해결책이 만들어 질 때까지 눈.
해킹은 다음 줄을 추가 포함하여 Custom.css
있는 위치 User Stylesheets
당신에 Default
폴더. 제 경우에는 경로는 ~/.config/chromium/Default/User Stylesheets
입니다.
html, body{
background-color:#000000; //This sets the background color to black
color:#0000FF; //This sets the text to blue, so you can read it on webpages set to use defaults; white is too hard on my eyes and if you dont put this it will be black on black
}
Firefox의 경우 다음 userChrome.css
위치에 다음 코드를 사용합니다 ~/.mozilla/firefox/profile_name/chrome
.
@namespace xul url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
/*prevent white flash*/
tabbrowser tabpanels { background-color: #111 !important}
경우 chrome
폴더가 존재하지 않습니다, 그것을 만들 수 있습니다. 모두 참고 chrome
하고 userChrome.css
대소 문자를 구분합니다.