UNPKG

1.24 kBSCSSView Raw
1/**
2 * @author zhixin wen <wenzhixin2010@gmail.com>
3 * https://github.com/wenzhixin/bootstrap-table/
4 * theme: https://github.com/Semantic-Org/Semantic-UI
5 */
6
7 @import './variables.scss';
8 @import '../theme.scss';
9
10.bootstrap-table {
11 .fixed-table-container.fixed-height:not(.has-footer),
12 .fixed-table-body {
13 border-bottom-left-radius: .28571429rem;
14 border-bottom-right-radius: .28571429rem;
15 }
16
17 .float-left {
18 float: left;
19 }
20
21 .float-right {
22 float: right;
23 }
24
25 .fixed-table-toolbar {
26 .search input {
27 padding-top: 0.60714286rem;
28 padding-bottom: 0.60714286rem;
29 }
30
31 .button.dropdown {
32 padding: 0;
33
34 .button {
35 border-top-left-radius: 0;
36 border-bottom-left-radius: 0;
37 }
38 }
39
40 .ui.buttons .button:last-child .button {
41 border-top-right-radius: 0.285714rem;
42 border-bottom-right-radius: .28571429rem;
43 }
44 }
45
46 .fixed-table-header .table {
47 border-bottom-left-radius: 0;
48 border-bottom-right-radius: 0;
49 border-bottom: none;
50 }
51
52 .table {
53 background: transparent;
54
55 thead th[data-not-first-th] {
56 border-left: 1px solid $border-color!important;
57 }
58 }
59
60 .dropup i.icon.dropdown:before {
61 content: "\f0d8";
62 }
63}