[Legacy] Language Desktop Styling Fixes

This commit is contained in:
balumahendran 2022-04-01 14:53:24 +05:30 committed by Clemente Raposo
parent f40a9b9262
commit f285f30654
2 changed files with 69 additions and 2 deletions

View file

@ -32,4 +32,71 @@
}
}
}
tr.yui-dt-even {
height: 33px;
margin: 0;
padding: 0;
background: transparent;
}
tr.yui-dt-odd {
height: 33px;
margin: 0;
padding: 0;
}
.yui-dt-hd {
background: $white !important;
}
.yui-dt th .yui-dt-liner {
font-size: 13px;
text-transform: uppercase;
font-weight: bold;
width: 100%;
color: #666;
margin-left: 2.5em;
}
.add-table-mobile {
display: flex;
overflow-x: auto;
}
.desktop-enabled {
width: auto;
#enabled_div {
width: 100% !important;
}
.yui-dt-data {
.yui-dt-liner {
background: $off-violet;
border-radius: 0.3em;
line-height: 25px;
max-width: 100%;
margin-left: 4px;
padding-left: 1em;
}
}
}
.desktop-disabled {
width: auto;
#disabled_div {
width: 100% !important;
}
.yui-dt-data {
.yui-dt-liner {
background: $very-light-orange;
border-radius: 0.3em;
line-height: 25px;
max-width: 100%;
margin-left: 4px;
padding-left: 1em;
}
}
}
.yui-dt-scrollable .yui-dt-bd {
overflow-y: auto;
background: $off-white;
margin: 5px;
padding: 5px;
}
.yui-dt-scrollable table {
border-collapse: initial;
}
}