40 lines
574 B
CSS
40 lines
574 B
CSS
/*
|
|
* DO NOT EDIT THIS FILE.
|
|
* See the following change record for more information,
|
|
* https://www.drupal.org/node/3084859
|
|
* @preserve
|
|
*/
|
|
|
|
/**
|
|
* @file
|
|
* System admin module: admin and compact links.
|
|
*/
|
|
|
|
/**
|
|
* System compact link: to toggle the display of description text.
|
|
*/
|
|
|
|
.compact-link {
|
|
margin: 0 0 0.5em 0;
|
|
}
|
|
|
|
/**
|
|
* Quick inline admin links.
|
|
*/
|
|
|
|
small .admin-link:before {
|
|
content: " [";
|
|
}
|
|
|
|
small .admin-link:after {
|
|
content: "]";
|
|
}
|
|
|
|
/**
|
|
* Cron external link on cron configuration form.
|
|
*/
|
|
|
|
.system-cron-settings__link {
|
|
word-wrap: break-word;
|
|
}
|