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.
59 lines
1.0 KiB
59 lines
1.0 KiB
/* |
|
* DO NOT EDIT THIS FILE. |
|
* See the following change record for more information, |
|
* https://www.drupal.org/node/3084859 |
|
* @preserve |
|
*/ |
|
|
|
/** |
|
* @file |
|
* Styles for tabledrag. |
|
*/ |
|
|
|
.draggable:hover { |
|
background-color: var(--color--gray-100); |
|
} |
|
|
|
.draggable.drag { |
|
background-color: var(--color--gray-100); |
|
} |
|
|
|
.draggable.drag-previous { |
|
background-color: var(--color--gray-95); |
|
} |
|
|
|
.drag-previous a { |
|
color: var(--color-text-neutral-medium); /* Ensure proper contrast. */ |
|
} |
|
|
|
a.tabledrag-handle, |
|
.touchevents a.tabledrag-handle { |
|
width: 2.25rem; |
|
height: 2.25rem; |
|
} |
|
|
|
.draggable a.tabledrag-handle { |
|
margin-inline-start: 0; |
|
} |
|
|
|
a.tabledrag-handle .handle { |
|
width: var(--sp2); |
|
height: var(--sp2); |
|
margin: 0; |
|
background-position: 50% 5px; |
|
} |
|
|
|
.touchevents a.tabledrag-handle .handle { |
|
height: var(--sp2); |
|
background-position: 50% 5px; |
|
} |
|
|
|
.touchevents .draggable td { |
|
padding-block: var(--sp0-5); |
|
padding-inline-start: 0; |
|
padding-inline-end: var(--sp0-5); |
|
} |
|
|
|
.touchevents .draggable .menu-item__link { |
|
padding: 0; |
|
}
|
|
|