BookStack/resources/assets/sass/_tables.scss

23 lines
293 B
SCSS
Raw Normal View History

2015-08-09 03:05:30 +08:00
table.table {
width: 100%;
tr {
border-bottom: 1px solid #DDD;
}
th, td {
text-align: left;
border: none;
padding: $-xs $-xs;
2015-08-23 20:41:35 +08:00
vertical-align: middle;
2015-08-09 03:05:30 +08:00
}
th {
font-weight: bold;
}
tr:hover {
background-color: #EEE;
}
2015-09-06 21:35:53 +08:00
}
table {
max-width: 100%;
2015-08-09 03:05:30 +08:00
}