mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #1673 from overleaf/jel-cms-table-style
Styling for features table GitOrigin-RevId: a8c37cf9bcda7c93d3d910036cd08f3cba06209e
This commit is contained in:
parent
e03b5ae691
commit
8c2da6afab
2 changed files with 75 additions and 3 deletions
|
@ -542,5 +542,6 @@ module.exports = settings =
|
||||||
'span': [ 'class', 'id', 'style' ]
|
'span': [ 'class', 'id', 'style' ]
|
||||||
'table': [ 'border', 'class', 'id', 'style' ]
|
'table': [ 'border', 'class', 'id', 'style' ]
|
||||||
'td': [ 'colspan', 'rowspan', 'headers' ]
|
'td': [ 'colspan', 'rowspan', 'headers' ]
|
||||||
'th': [ 'abbr', 'headers', 'colspan', 'rowspan', 'scope', 'sorted' ]
|
'th': [ 'abbr', 'headers', 'colspan', 'rowspan', 'scope', 'sorted', 'style' ]
|
||||||
|
'tr': [ 'class' ]
|
||||||
'video': [ 'alt', 'class', 'controls', 'height', 'width' ]
|
'video': [ 'alt', 'class', 'controls', 'height', 'width' ]
|
|
@ -103,10 +103,81 @@
|
||||||
word-break: normal;
|
word-break: normal;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.fa-check-square {
|
}
|
||||||
|
.table-styled, .features-table {
|
||||||
|
.fa-check-square, .fa-check {
|
||||||
color: @ol-green;
|
color: @ol-green;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.features-table {
|
||||||
|
background: white;
|
||||||
|
max-width: none;
|
||||||
|
th, td {
|
||||||
|
border: 1px solid @gray-lighter;
|
||||||
|
hyphens: auto;
|
||||||
|
padding: @padding-sm;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
th, td {
|
||||||
|
width: 20%;
|
||||||
|
}
|
||||||
|
.btn {
|
||||||
|
max-width: 100%;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
word-wrap: break-word;
|
||||||
|
}
|
||||||
|
&.left-align-first-col {
|
||||||
|
td, th {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
td + td,
|
||||||
|
th + th {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.hidden-row-above-xs {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
@media screen and (max-width: @screen-xs-max) {
|
||||||
|
tbody, thead {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
tr {
|
||||||
|
display: flex;
|
||||||
|
flex-flow: row wrap;
|
||||||
|
justify-content: space-around;
|
||||||
|
}
|
||||||
|
|
||||||
|
td, th {
|
||||||
|
display: block;
|
||||||
|
width: 25%;
|
||||||
|
}
|
||||||
|
tr:first-child {
|
||||||
|
th {
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
th:first-child {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
td:first-child {
|
||||||
|
text-align: center;
|
||||||
|
background: #efefef;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.hidden-row-xs {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.hidden-row-above-xs {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
.table-header {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
universities page
|
universities page
|
||||||
|
|
Loading…
Reference in a new issue