Changeset - ddba357cb1e3
[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 - add horizontal scrollbar when necessary
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 {
 
#lang_stats td {
 
  padding: 1px 0 !important;
 
}
 
/* every direct child of a main panel, that is not .panel-heading, should auto
 
 * overflow to prevent overflowing of elements like text boxes and tables */
 
#main > .panel > :not(.panel-heading) {
 
  overflow-x: auto;
 
  min-height: 0.01%;
 
}
 
.form-group > label {
 
  float: left;
 
}
kallithea/public/less/style.less
Show inline comments
 
@@ -113,6 +113,13 @@ nav.navbar #logo > .navbar-brand > img {
 
  }
 
}
 

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

	
 
.form-group > label {
 
  float: left;
 
}
0 comments (0 inline, 0 general)