sync
[roojs1] / less / roojs-bootstrap / table.less
1 /* paging toolbar */
2
3 .pagination .x-paging-position span {
4     padding-top:3px; padding-bottom:3px;
5 }
6 .pagination .x-paging-position span  input {
7     margin: 0 3px;
8 }
9
10 .navbar .pagination>li>span {
11     min-height:34px;
12 }
13
14 .navbar .pagination {
15     margin: 0;
16 }
17
18
19 /* these are technicall adminlte related */
20 .skin-blue  .navbar .pagination > li > a:active,
21 .skin-blue  .navbar .pagination > li > a:focus,
22 .skin-blue .navbar .pagination>li>a {
23     background-color: @brand-primary;
24     
25 }
26 .skin-blue  .navbar .pagination > li > a:hover
27 {
28    background-color:  @gray-light;
29 }
30 .skin-blue table .navbar {
31     background-color: @body-bg;
32  
33 }
34 .skin-blue .navbar .pagination>li.disabled >a{
35     background-color: @gray-light;
36 }
37 .skin-blue table .navbar {
38     margin-bottom: 0;
39     min-height: 0;
40 }
41
42 .table .sortable {
43     cursor: pointer;
44 }
45
46 .table-body-fixed tbody {
47    overflow-y: scroll;
48    width: 100%;
49 }
50 .table-body-fixed  thead,
51 .table-body-fixed  tbody,
52 .table-body-fixed th   {
53   display: block;
54 }
55 .table-body-fixed thead {
56     overflow:  hidden;
57 }
58
59
60 .table-body-fixed tbody td, 
61 .table-body-fixed thead > tr> th {
62   float: left;
63   border-bottom-width: 0;
64 }
65
66 /* fake infinate widt.. */
67 .table-body-fixed thead > tr,
68 .table-body-fixed tbody > tr
69 {
70     display: block;
71     overflow: hidden;
72 }
73
74 /* standard bootstrap does not colour rows very well.. */
75
76 .table > tbody > tr.info
77 {
78   background-color: @state-info-bg; //#d9edf7;
79 }
80
81 .table-hover > tbody > tr.info:hover
82 {
83   background-color: darken(@state-info-bg, 5%); //#c4e3f3;
84 }
85
86 .table tfoot .navbar {
87     min-height : inherit;
88 }
89
90 /* for ie11 && edge: fixing height inheriting from tbody to tr */
91 .roo-ie11 table tbody tr,
92 .roo-edge table tbody tr
93 {
94     height: auto;
95 }