# HG changeset patch # User Mads Kiilerich # Date 1454361539 -3600 # Node ID 951158ff43785a8cd5d77755250bc3469c6df0a0 # Parent 8d93d28adf259a8e1cee92275a2f98562f580032 css: generic .hidden class which can be overruled with .show class Sometimes more convenient and efficient than plain jQuery using .show() and .hide() and filtering on :visible. This should be bootstrap compatible. 7834f845505a already depends on this :-( diff -r 8d93d28adf25 -r 951158ff4378 kallithea/public/css/style.css --- a/kallithea/public/css/style.css Mon Feb 01 21:23:44 2016 +0100 +++ b/kallithea/public/css/style.css Mon Feb 01 22:18:59 2016 +0100 @@ -212,6 +212,17 @@ display: block !important; } +/* Bootstrap compatible */ +.show { + display: block !important; +} +.hidden { + display: none !important; +} +.invisible { + visibility: hidden; +} + .truncate { white-space: nowrap; overflow: hidden; @@ -526,10 +537,6 @@ margin-bottom: -2px; } -td.quick_repo_menu .menu_items.hidden { - display: none; -} - .dt_repo { white-space: nowrap; color: #577632; @@ -3444,10 +3451,6 @@ color: #aaa; } -.btn.blue.hidden { - display: none; -} - .btn.active { font-weight: bold; } @@ -4524,11 +4527,6 @@ } -.diff-container.hidden { - display: none; - overflow: hidden; -} - .compare-revision-selector { font-weight: bold; font-size: 14px;