mirror of https://github.com/ColorlibHQ/AdminLTE
33 lines
365 B
Plaintext
33 lines
365 B
Plaintext
|
/*
|
||
|
* Component: Table
|
||
|
* ----------------
|
||
|
*/
|
||
|
|
||
|
.table {
|
||
|
//progress bars in tables
|
||
|
tr td .progress {
|
||
|
margin-top: 5px;
|
||
|
}
|
||
|
}
|
||
|
.table.no-border {
|
||
|
|
||
|
&, td, th {
|
||
|
border: 0;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/* .text-center in tables */
|
||
|
table.text-center {
|
||
|
&, td, th {
|
||
|
text-align: center;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.table.align {
|
||
|
th {
|
||
|
text-align: left;
|
||
|
}
|
||
|
td {
|
||
|
text-align: right;
|
||
|
}
|
||
|
}
|