You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
684 B
31 lines
684 B
/* ------------------------------------------------------------------------------ |
|
* |
|
* # Columns reorder |
|
* |
|
* Easily modify the column order of a table through drop-and-drag of column headers |
|
* |
|
* Version: 1.0 |
|
* Latest update: May 25, 2015 |
|
* |
|
* ---------------------------------------------------------------------------- */ |
|
|
|
|
|
// Highlight cloned header |
|
.DTCR_clonedTable { |
|
background-color: fade(#fff, 80%); |
|
z-index: 202; |
|
cursor: move; |
|
|
|
// Mute background and add border |
|
th, |
|
td { |
|
border: 1px solid @table-border-color!important; |
|
} |
|
} |
|
|
|
// Add colored pointer |
|
.DTCR_pointer { |
|
width: 1px; |
|
background-color: @brand-primary; |
|
z-index: 201; |
|
}
|
|
|