| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- /**
- * @author zhixin wen <wenzhixin2010@gmail.com>
- * https://github.com/wenzhixin/bootstrap-table/
- * theme: https://github.com/jgthms/bulma/
- */
- @import "./variables";
- @import "../theme";
- .bootstrap-table {
- .float-left {
- float: left;
- }
- .float-right {
- float: right;
- }
- .fixed-table-toolbar {
- .search input {
- height: 2.5293rem;
- }
- .keep-open.dropdown-container {
- .button {
- &:hover .menu {
- background: #fff;
- }
- }
- .menu {
- li {
- padding: 5px 0;
- label {
- white-space: nowrap;
- text-align: left;
- }
- }
- }
- }
- input,
- .button {
- margin-bottom: 0;
- }
- }
- .fixed-table-pagination {
- .page-list > div {
- display: inline;
- }
- .button {
- margin-bottom: 0;
- }
- .dropup .fa-angle-down::before {
- content: "\f106";
- }
- .page-item {
- padding: 6px 12px;
- line-height: 1.4286;
- }
- }
- .dropdown-pane {
- width: auto;
- padding: 0.5rem;
- }
- }
|