Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Side by Side Diff: chrome/browser/resources/options/options_page.css

Issue 7067036: Options: Remove the hidden class, since we override the hidden attribute to set (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 body { 1 body {
2 cursor: default; 2 cursor: default;
3 font-size: 13px; 3 font-size: 13px;
4 } 4 }
5 5
6 a:link { 6 a:link {
7 color: rgb(63, 110, 194); 7 color: rgb(63, 110, 194);
8 } 8 }
9 9
10 a:active { 10 a:active {
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 .option { 387 .option {
388 margin-top: 0; 388 margin-top: 0;
389 } 389 }
390 390
391 div.checkbox, 391 div.checkbox,
392 div.radio { 392 div.radio {
393 margin: 5px 0; 393 margin: 5px 0;
394 } 394 }
395 395
396 /* [hidden] does display:none, but its priority is too low in some cases. */ 396 /* [hidden] does display:none, but its priority is too low in some cases. */
397 .hidden,
398 [hidden] { 397 [hidden] {
399 display: none !important; 398 display: none !important;
400 } 399 }
401 400
402 .transparent { 401 .transparent {
403 opacity: 0; 402 opacity: 0;
404 } 403 }
405 404
406 div.disabled { 405 div.disabled {
407 color: #888; 406 color: #888;
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
771 770
772 html:not([hasFlashPlugin]) .flash-plugin-area, 771 html:not([hasFlashPlugin]) .flash-plugin-area,
773 /* If the Flash plug-in supports the NPP_ClearSiteData API, we don't need to 772 /* If the Flash plug-in supports the NPP_ClearSiteData API, we don't need to
774 * show the link to the Flash storage settings manager: 773 * show the link to the Flash storage settings manager:
775 */ 774 */
776 html[flashPluginSupportsClearSiteData] .flash-plugin-area, 775 html[flashPluginSupportsClearSiteData] .flash-plugin-area,
777 html:not([flashPluginSupportsClearSiteData]) .clear-plugin-lso-data-enabled, 776 html:not([flashPluginSupportsClearSiteData]) .clear-plugin-lso-data-enabled,
778 html[flashPluginSupportsClearSiteData] .clear-plugin-lso-data-disabled { 777 html[flashPluginSupportsClearSiteData] .clear-plugin-lso-data-disabled {
779 display: none; 778 display: none;
780 } 779 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698