home2/cocinasdalloway/public_html/admin/scss/_tables.scss 0000644 00000002567 15014473142 0017620 0 ustar 00 .table {
tbody {
tr {
td, th {
padding: 10px;
border-top: 1px solid #eee;
border-bottom: 1px solid #eee;
}
}
tr.primary {
td, th {
background-color: #1f91f3;
color: #fff;
}
}
tr.success {
td, th {
background-color: #2b982b;
color: #fff;
}
}
tr.info {
td, th {
background-color: #00b0e4;
color: #fff;
}
}
tr.warning {
td, th {
background-color: #ff9600;
color: #fff;
}
}
tr.danger {
td, th {
background-color: #fb483a;
color: #fff;
}
}
}
thead {
tr {
th {
padding: 10px;
border-bottom: 1px solid #eee;
}
}
}
}
.table-bordered {
border-top: 1px solid #eee;
tbody {
tr {
td, th {
padding: 10px;
border: 1px solid #eee;
}
}
}
thead {
tr {
th {
padding: 10px;
border: 1px solid #eee;
}
}
}
}