Merge pull request #471 from DimalChandrasiri/release-2.0.x

Fix for datatable icon not showing issue
revert-70aa11f8
Charitha Goonetilleke 8 years ago committed by GitHub
commit f4ffacc2c6

@ -6526,4 +6526,41 @@ select > option:hover {
}
.table.list-table:not(.grid-view) tbody{
margin: 0px !important;
}
}
#user-grid td i {
padding-right: 5px;
}
/**
*
* Temporary responsive fix for table listing action button width issue
* Todo : Move responsive style to theme.less file
*
**/
@media (max-width: 1199px) and (min-width: 992px){
.table .fw-stack{
font-size: 12px;
}
}
@media (min-width: 1200px){
table tbody tr {
width: 18% !important;
}
.table .fw-stack{
font-size: 1.2vw;
}
}
@media (min-width: 1500px){
table tbody tr {
width: 14% !important;
}
.table .fw-stack{
font-size: 0.8vw;
}
}
/** End **/

Loading…
Cancel
Save