46 lines
776 B
Stylus
46 lines
776 B
Stylus
#lesionTableContainer
|
|
width: 100%
|
|
height: 25%
|
|
overflow: auto
|
|
|
|
table.lesionTable
|
|
thead
|
|
th
|
|
background-color: #424242
|
|
font-style: italic
|
|
color:white
|
|
text-align: center
|
|
height: 15px
|
|
width: 20px
|
|
|
|
table.lesionTable > thead > tr > th {
|
|
padding: 4px;
|
|
margin: 0;
|
|
height: 25px;
|
|
line-height: 15px;
|
|
}
|
|
|
|
table.lesionTable > tbody > tr > td {
|
|
padding: 4px;
|
|
margin: 0;
|
|
height: 25px;
|
|
line-height: 15px;
|
|
}
|
|
|
|
table.lesionTable tbody tr:hover{
|
|
background-color: #d1d1d1;
|
|
}
|
|
|
|
table.lesionTable tbody tr{
|
|
background-color: #b3b3b3;
|
|
color: #424242;
|
|
line-height: 14px;
|
|
}
|
|
|
|
|
|
.btnRemove{
|
|
border: none;
|
|
outline:none;
|
|
background-color: transparent;
|
|
}
|