UNPKG

1.39 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.box {
11 background-color: #fff;
12 border-radius: 6px;
13 color: #4a4a4a;
14 display: block;
15 padding: 1.25rem;
16}
17
18.bootstrap-table {
19 .float-left {
20 float: left;
21 }
22
23 .float-right {
24 float: right;
25 }
26
27 .fixed-table-toolbar {
28 .search input {
29 width: auto;
30 }
31
32 .columns {
33 margin-right: 0;
34 }
35
36 .button.dropdown {
37 padding: 0;
38 border: 0;
39
40 .button {
41 margin: 0;
42 }
43
44 &:not(:first-child) .button {
45 border-bottom-left-radius: 0;
46 border-top-left-radius: 0;
47 }
48
49 &:last-child .button {
50 border-bottom-right-radius: 4px;
51 border-top-right-radius: 4px;
52 }
53
54 .dropdown-content {
55 box-shadow: none;
56 border: 1px solid $border-color;
57 }
58
59 label.dropdown-item {
60 padding: 5px 20px;
61 }
62 }
63 }
64
65 .fixed-table-pagination {
66 .ui.dropdown {
67 vertical-align: middle;
68 }
69
70 .is-up .fa-angle-down:before {
71 content: "\f106";
72 }
73
74 .pagination-link.disabled {
75 background-color: #dbdbdb;
76 border-color: #dbdbdb;
77 box-shadow: none;
78 color: #7a7a7a;
79 opacity: .5;
80 cursor: not-allowed;
81 }
82 }
83}