BookStack/resources/assets/sass/_tables.scss

60 lines
820 B
SCSS
Raw Normal View History

table {
min-width: 100px;
max-width: 100%;
thead {
background-color: #F8F8F8;
font-weight: 500;
}
td, th {
min-width: 10px;
padding: 6px 8px;
border: 1px solid #DDD;
overflow: auto;
line-height: 1.2;
}
td p, th p {
margin: 0;
}
}
2015-08-08 19:05:30 +00:00
table.table {
width: 100%;
tr {
border-bottom: 1px solid #DDD;
}
th, td {
text-align: left;
border: none;
padding: $-xs $-xs;
2015-08-23 12:41:35 +00:00
vertical-align: middle;
margin: 0;
2015-08-08 19:05:30 +00:00
}
th {
font-weight: bold;
}
tr:hover {
background-color: #EEE;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
2015-09-06 13:35:53 +00:00
}
table.no-style {
td {
border: 0;
padding: 0;
}
}
2016-04-09 12:52:44 +00:00
table.list-table {
margin: 0 -$-xs;
td {
border: 0;
vertical-align: middle;
padding: $-xs;
}
2015-08-08 19:05:30 +00:00
}