123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 |
- .enable_plugin_datatables() when(@enable-plugin-datatables = true) {
- //dataTables
- .dataTables_length {
- //margin-left:8px;
- select {
- width: 70px;
- height: 25px;
- padding: 2px 3px;
- }
- label {
- font-weight:normal;
- }
- }
- .dataTables_filter {
- // margin-right:8px;
- text-align:right;
- input[type=text], input[type=search] {
- width: 125px;
- height: 18px;
- line-height: 18px;
- .box-sizing(content-box);
- padding: 4px 6px;
- }
- label {
- font-weight:normal;
- }
- }
- .dataTables_info {
- // margin:0 0 0 12px;
- font-size: @base-font-size + 1;
- }
- .dataTables_paginate {
- text-align: right;
- .pagination {
- margin: 0 12px;
- }
- }
- .dataTables_wrapper {
- label {
- display: inline-block;
- font-size: @base-font-size;
- }
- input[type=text] , input[type=search], select {
- margin-bottom: 0 !important;
- margin: 0 4px;
- }
- .row {
- margin: 0 !important;//to override .rtl's
-
- &:first-child {
- padding-top: 12px;
- padding-bottom: 12px;
-
- background-color: #EFF3F8;
- + .dataTable {
- border-top: 1px solid @table-border-color;
- border-bottom: 1px solid @table-border-color;
- }
- }
- &:last-child {
- border-bottom: 1px solid lighten(@table-border-color , 1%);
- padding-top: 12px;
- padding-bottom: 12px;
-
- background-color: #EFF3F8;
- }
- }
-
- .dataTables_scroll + .row {
- border-top: 1px solid lighten(@table-border-color , 1%);
- }
- }
- .dataTable {
- margin-bottom:0;
- > thead > tr > th {
- &[class*=sort] {
- cursor:pointer;
- &:after {
- float: right;
- display: inline;
-
- content: "\f0dc";
- font-family: FontAwesome;
- font-size: @base-font-size;
- font-weight: normal;
-
- color: #555;
- }
-
- &:hover {
- color:@table-sort-hover;
- }
- }
- &[class*=sorting_] {
- color:@table-sort-active;
- }
-
- &.sorting_desc , &.sorting_asc {
- #gradient > .vertical(#EFF3F8 , #E3E7ED);
- }
-
- &.sorting_desc:after {
- content:"\f0dd";
- top:-6px;
- color:@table-sort-active;
- }
- &.sorting_asc:after {
- content:"\f0de";
- top:4px;
- color:@table-sort-active;
- }
- &.sorting_disabled {
- cursor:inherit;
- &:after { display:none; }
- }
- }
- }
- //scrollable dataTable
- .dataTables_scrollHead + .dataTables_scrollBody > .dataTable > thead > tr > th:after {
- display: none;
- }
- .dataTables_scrollHeadInner {
- width: auto !important;
- }
- .dataTables_scrollHeadInner > .dataTable > thead > tr > th {
- border-bottom-width: 0 !important;
- }
- //some extra border because of scrolling horizontally
- .dataTables_borderWrap {
- .dataTables_scrollBody , .dataTables_scrollHead {
- border: 1px solid @table-border-color !important;
- border-width: 0 1px !important;
-
- .table-bordered {
- border-left-width: 0;
- border-right-width: 0;
-
- > thead > tr > th:first-child,
- > tbody > tr > td:first-child {
- border-left-width: 0;
- }
- > thead > tr > th:last-child,
- > tbody > tr > td:last-child {
- border-right-width: 0;
- }
- }
- }
- }
- //some extra from
- //https://github.com/DataTables/Plugins/tree/master/integration/bootstrap/3
- table.dataTable {
- clear: both;
- max-width: none !important;
- }
- table.dataTable th:active {
- outline: none;
- }
- //Scrolling
- div.dataTables_scrollHead table {
- margin-bottom: 0 !important;
- border-bottom-left-radius: 0;
- border-bottom-right-radius: 0;
- }
- div.dataTables_scrollHead table thead tr:last-child th:first-child,
- div.dataTables_scrollHead table thead tr:last-child td:first-child {
- border-bottom-left-radius: 0 !important;
- border-bottom-right-radius: 0 !important;
- }
- div.dataTables_scrollBody table {
- border-top: none;
- margin-top: 0 !important;
- margin-bottom: 0 !important;
- }
- div.dataTables_scrollBody tbody tr:first-child th,
- div.dataTables_scrollBody tbody tr:first-child td {
- border-top: none;
- }
- div.dataTables_scrollFoot table {
- margin-top: 0 !important;
- border-top: none;
- }
- ///
- //for tableTools printing
- .DTTT_Print .main-content {
- margin-left: 0 !important;
- margin-right: 0 !important;
- }
- .DTTT_Print .navbar-fixed-top + .main-container {
- padding-top: 0;
- }
- //table Tools extension
- .tableTools-container {
- margin-bottom: 8px;
- }
- .tableTools-alert.gritter-item-wrapper {
- padding: 12px 11px 8px;
- z-index: 1999;
- }
- //ColVis extension
- ul.ColVis_collection {
- z-index: 2002;
-
- > li > a {
- padding: 0;
- &:focus {
- outline: none;
- }
- }
-
- > li.ColVis_Special {
- border-top: 1px solid #DDD;
- > a {
- padding: 6px 11px 7px;
- text-align: center;
- }
- }
-
- label {
- margin: auto;
- padding: 6px 11px 7px;
- display: block;
- cursor: pointer;
- }
- }
- div.ColVis_catcher {
- position: absolute;
- z-index: 1101;
- }
- div.ColVis_collectionBackground {
- position: fixed;
- top: 0;
- left: 0;
- height: 100%;
- width: 100%;
- background-color: black;
- z-index: 1100;
- }
- }
- .enable_plugin_datatables();
|