Doc: Add the missing styles to get multi-column classes list
Add two- and three-column layouts for the 'All C++ Classes' list. Also affects the layout of 'All QML Types' page. Task-number: QTBUG-49376 Change-Id: I80953c0955dbc37db5aa4c60eb9ea8e3023a77f2 Reviewed-by: Martin Smith <martin.smith@theqtcompany.com>
This commit is contained in:
parent
60536d7421
commit
df57e3a33f
@ -595,6 +595,21 @@ ol.a > li{
|
||||
margin-left: 15px
|
||||
}
|
||||
|
||||
.flowList {
|
||||
padding: 25px
|
||||
}
|
||||
.flowList dd {
|
||||
display: inline-block;
|
||||
margin-left: 10px;
|
||||
width: 255px;
|
||||
line-height: 1.15em;
|
||||
overflow-x: hidden;
|
||||
text-overflow: ellipsis
|
||||
}
|
||||
.alphaChar {
|
||||
font-size: 2em;
|
||||
position: relative
|
||||
}
|
||||
/*
|
||||
-----------
|
||||
Content table
|
||||
|
@ -254,6 +254,13 @@
|
||||
line-height:1.4;
|
||||
font-size:0.875em
|
||||
}
|
||||
@media (min-width: 1320px) {
|
||||
.context .flowListDiv dl.flowList {
|
||||
-webkit-column-count:3;
|
||||
-moz-column-count:3;
|
||||
column-count:3
|
||||
}
|
||||
}
|
||||
@media (min-width: 1120px) {
|
||||
#navbar.fixed,#navbar.shadow_bottom {
|
||||
-moz-box-shadow:0px 0px 8px rgba(0,0,0,0.2);
|
||||
@ -293,6 +300,11 @@
|
||||
#navbar.fixed #mainmenu li.current-menu-item a {
|
||||
border-bottom:4px solid #80C342
|
||||
}
|
||||
.flowListDiv dl.flowList {
|
||||
-webkit-column-count:2;
|
||||
-moz-column-count:2;
|
||||
column-count:2
|
||||
}
|
||||
}
|
||||
@media (max-width: 1120px) {
|
||||
#navbar {
|
||||
@ -1220,6 +1232,19 @@ li a.active {
|
||||
.flowList {
|
||||
padding:25px
|
||||
}
|
||||
.flowListDiv dl {
|
||||
-webkit-column-count:1;
|
||||
-moz-column-count:1;
|
||||
column-count:1
|
||||
}
|
||||
.flowList dd {
|
||||
display:inline-block;
|
||||
margin-left:10px;
|
||||
width:90%;
|
||||
line-height:1.15em;
|
||||
overflow-x:hidden;
|
||||
text-overflow:ellipsis
|
||||
}
|
||||
.alphaChar {
|
||||
font-size:2em;
|
||||
position:absolute
|
||||
|
Loading…
Reference in New Issue
Block a user