UNPKG

1.23 kBSCSSView Raw
1/**
2 * @author zhixin wen <wenzhixin2010@gmail.com>
3 * https://github.com/wenzhixin/bootstrap-table/
4 * theme: https://github.com/jgthms/bulma/
5 */
6
7 @import './variables.scss';
8 @import '../theme.scss';
9
10.bootstrap-table {
11 .float-left {
12 float: left;
13 }
14
15 .float-right {
16 float: right;
17 }
18
19 .fixed-table-toolbar {
20 .search input {
21 width: auto;
22 }
23
24 .columns {
25 margin-right: 0;
26 }
27
28 .keep-open.button.dropdown {
29 padding: 0;
30 margin: 0;
31 border: 0;
32
33 .button {
34 border-bottom-left-radius: 0;
35 border-top-left-radius: 0;
36 border-bottom-right-radius: 4px;
37 border-top-right-radius: 4px;
38 margin-right: 0;
39 }
40
41 .dropdown-content {
42 box-shadow: none;
43 border: 1px solid $border-color;
44 }
45
46 label.dropdown-item {
47 padding: 5px 20px;
48 }
49 }
50 }
51
52 .fixed-table-pagination {
53 .ui.dropdown {
54 vertical-align: middle;
55 }
56
57 .is-up .fa-angle-down:before {
58 content: "\f106";
59 }
60
61 .pagination-link.disabled {
62 background-color: #dbdbdb;
63 border-color: #dbdbdb;
64 box-shadow: none;
65 color: #7a7a7a;
66 opacity: .5;
67 cursor: not-allowed;
68 }
69 }
70}