mirror of https://github.com/ColorlibHQ/AdminLTE
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
365 B
33 lines
365 B
10 years ago
|
/*
|
||
|
* 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;
|
||
|
}
|
||
|
}
|