81 lines
1.5 KiB
CSS
81 lines
1.5 KiB
CSS
/**
|
|
* @file
|
|
* Table drag behavior.
|
|
*
|
|
* @see tabledrag.js
|
|
*/
|
|
|
|
body.drag {
|
|
cursor: move;
|
|
}
|
|
tr.region-title {
|
|
font-weight: 700;
|
|
color: #0678be;
|
|
font-size: 18px;
|
|
line-height: 24px;
|
|
}
|
|
tr.region-message {
|
|
color: #999;
|
|
}
|
|
tr.region-populated {
|
|
display: none;
|
|
}
|
|
tr.add-new .tabledrag-changed {
|
|
display: none;
|
|
}
|
|
.draggable a.tabledrag-handle {
|
|
cursor: move;
|
|
float: left;
|
|
height: 24px;
|
|
margin: 0 10px 0 0;
|
|
overflow: hidden;
|
|
text-decoration: none;
|
|
}
|
|
[dir="rtl"] .draggable a.tabledrag-handle {
|
|
float: right;
|
|
margin: 0 0 0 10px;
|
|
}
|
|
a.tabledrag-handle:hover {
|
|
text-decoration: none;
|
|
}
|
|
a.tabledrag-handle .handle {
|
|
background: url(../../../images/icons/787878/move.svg) no-repeat 4px 4px;
|
|
height: 24px;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 24px;
|
|
}
|
|
.tabledrag-toggle-weight-wrapper {
|
|
text-align: right; /* LTR */
|
|
font-size: 14px;
|
|
float: none;
|
|
}
|
|
div.fieldset-wrapper .tabledrag-toggle-weight-wrapper {
|
|
font-size: 12px;
|
|
}
|
|
@media only screen and (min-width: 1024px) {
|
|
div.fieldset-wrapper .tabledrag-toggle-weight-wrapper {
|
|
position: absolute;
|
|
top: 12px;
|
|
right: 0;
|
|
}
|
|
}
|
|
div.fieldset-wrapper .tabledrag-toggle-weight-wrapper .link {
|
|
font-weight: 400;
|
|
}
|
|
[dir="rtl"] .tabledrag-toggle-weight-wrapper {
|
|
text-align: left;
|
|
}
|
|
.indentation {
|
|
float: left; /* LTR */
|
|
height: 1.7em;
|
|
margin: -0.4em 0.2em -0.4em -0.4em; /* LTR */
|
|
padding: 0.42em 0 0.42em 0.6em; /* LTR */
|
|
width: 20px;
|
|
}
|
|
[dir="rtl"] .indentation {
|
|
float: right;
|
|
margin: -0.4em -0.4em -0.4em 0.2em;
|
|
padding: 0.42em 0.6em 0.42em 0;
|
|
}
|