You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
416 B
Plaintext
23 lines
416 B
Plaintext
/**
|
|
* @author vincent loh <vincent.ml@gmail.com>
|
|
* @version: v1.0.0
|
|
* https://github.com/vinzloh/bootstrap-table/
|
|
* Sticky header for bootstrap-table
|
|
*/
|
|
|
|
.fix-sticky {
|
|
position: fixed;
|
|
z-index: 100;
|
|
}
|
|
.fix-sticky thead {
|
|
background: #fff;
|
|
}
|
|
|
|
.fix-sticky thead th,
|
|
.fix-sticky thead th:first-child {
|
|
border-left: 0;
|
|
border-right: 0;
|
|
border-bottom: 1px solid #eee;
|
|
border-radius: 0;
|
|
}
|