Changeset - eee7674cef41
[Not reviewed]
default
0 2 0
domruf - 8 years ago 2017-10-28 18:39:04
dominikruf@gmail.com
less: prevent elements from overflowing panels
2 files changed with 13 insertions and 0 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -102,6 +102,12 @@ nav.navbar #logo > .navbar-brand > img {
 
  margin-top: -9px;
 
  margin-right: 5px;
 
}
 
/* every direct child of a panel, that is not .panel-heading, should auto
 
 * overflow to prevent overflowing of elements like text boxes and tables */
 
.panel > :not(.panel-heading) {
 
  overflow-x: auto;
 
  min-height: 0.01%;
 
}
 
/* language bars (summary page) */
 
#lang_stats .progress-bar {
 
  min-width: 15px;
kallithea/public/less/style.less
Show inline comments
 
@@ -111,6 +111,13 @@ nav.navbar #logo > .navbar-brand > img {
 
  margin-right: 5px;
 
}
 

	
 
/* every direct child of a panel, that is not .panel-heading, should auto
 
 * overflow to prevent overflowing of elements like text boxes and tables */
 
.panel > :not(.panel-heading){
 
  overflow-x: auto;
 
  min-height: 0.01%;
 
}
 

	
 
/* language bars (summary page) */
 
#lang_stats {
 
  .progress-bar {
0 comments (0 inline, 0 general)