Changeset - 951158ff4378
[Not reviewed]
default
0 1 0
Mads Kiilerich - 10 years ago 2016-02-01 22:18:59
madski@unity3d.com
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 :-(
1 file changed with 11 insertions and 13 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -212,6 +212,17 @@ div.rst-block pre,
 
    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 @@ td.quick_repo_menu .menu_items .icon img
 
    margin-bottom: -2px;
 
}
 

	
 
td.quick_repo_menu .menu_items.hidden {
 
    display: none;
 
}
 

	
 
.dt_repo {
 
    white-space: nowrap;
 
    color: #577632;
 
@@ -3444,10 +3451,6 @@ label.disabled {
 
    color: #aaa;
 
}
 

	
 
.btn.blue.hidden {
 
    display: none;
 
}
 

	
 
.btn.active {
 
    font-weight: bold;
 
}
 
@@ -4524,11 +4527,6 @@ span.pr-closed-tag {
 

	
 
}
 

	
 
.diff-container.hidden {
 
    display: none;
 
    overflow: hidden;
 
}
 

	
 
.compare-revision-selector {
 
    font-weight: bold;
 
    font-size: 14px;
0 comments (0 inline, 0 general)