mirror of
https://github.com/tag1consulting/d7_to_d10_migration.git
synced 2025-09-05 16:51:21 +00:00
Initial commit
This commit is contained in:
commit
c5e731d8ae
2773 changed files with 600767 additions and 0 deletions
271
drupal7/web/modules/system/system.admin.css
Normal file
271
drupal7/web/modules/system/system.admin.css
Normal file
|
@ -0,0 +1,271 @@
|
|||
|
||||
/**
|
||||
* @file
|
||||
* Styles for administration pages.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Administration blocks.
|
||||
*/
|
||||
div.admin-panel {
|
||||
margin: 0;
|
||||
padding: 5px 5px 15px 5px;
|
||||
}
|
||||
div.admin-panel .description {
|
||||
margin: 0 0 3px;
|
||||
padding: 2px 0 3px 0;
|
||||
}
|
||||
div.admin-panel .body {
|
||||
padding: 0 4px 2px 8px; /* LTR */
|
||||
}
|
||||
div.admin {
|
||||
padding-top: 15px;
|
||||
}
|
||||
div.admin .left {
|
||||
float: left; /* LTR */
|
||||
width: 47%;
|
||||
margin-left: 1em; /* LTR */
|
||||
}
|
||||
div.admin .right {
|
||||
float: right; /* LTR */
|
||||
width: 47%;
|
||||
margin-right: 1em; /* LTR */
|
||||
}
|
||||
div.admin .expert-link {
|
||||
text-align: right; /* LTR */
|
||||
margin-right: 1em; /* LTR */
|
||||
padding-right: 4px; /* LTR */
|
||||
}
|
||||
|
||||
/**
|
||||
* Markup generated by theme_system_compact_link().
|
||||
*/
|
||||
.compact-link {
|
||||
margin: 0 0 0.5em 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Quick inline admin links.
|
||||
*/
|
||||
small .admin-link:before {
|
||||
content: '[';
|
||||
}
|
||||
small .admin-link:after {
|
||||
content: ']';
|
||||
}
|
||||
|
||||
/**
|
||||
* Modules page.
|
||||
*/
|
||||
#system-modules div.incompatible {
|
||||
font-weight: bold;
|
||||
}
|
||||
div.admin-requirements,
|
||||
div.admin-required {
|
||||
font-size: 0.9em;
|
||||
color: #444;
|
||||
}
|
||||
span.admin-disabled {
|
||||
color: #800;
|
||||
}
|
||||
span.admin-enabled {
|
||||
color: #080;
|
||||
}
|
||||
span.admin-missing {
|
||||
color: #f00;
|
||||
}
|
||||
a.module-link {
|
||||
display: block;
|
||||
padding: 1px 0 1px 20px; /* LTR */
|
||||
white-space: nowrap;
|
||||
}
|
||||
a.module-link-help {
|
||||
background: url(../../misc/help.png) 0 50% no-repeat; /* LTR */
|
||||
}
|
||||
a.module-link-permissions {
|
||||
background: url(../../misc/permissions.png) 0 50% no-repeat; /* LTR */
|
||||
}
|
||||
a.module-link-configure {
|
||||
background: url(../../misc/configure.png) 0 50% no-repeat; /* LTR */
|
||||
}
|
||||
.module-help {
|
||||
margin-left: 1em; /* LTR */
|
||||
float: right; /* LTR */
|
||||
}
|
||||
|
||||
/**
|
||||
* Status report.
|
||||
*/
|
||||
table.system-status-report td {
|
||||
padding: 6px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
table.system-status-report tr.merge-up td {
|
||||
padding: 0 6px 8px 28px; /* LTR */
|
||||
}
|
||||
table.system-status-report td.status-icon {
|
||||
width: 16px;
|
||||
padding-right: 0; /* LTR */
|
||||
}
|
||||
table.system-status-report td.status-icon div {
|
||||
background-repeat: no-repeat;
|
||||
height: 16px;
|
||||
width: 16px;
|
||||
}
|
||||
table.system-status-report tr.error td.status-icon div {
|
||||
background-image: url(../../misc/message-16-error.png);
|
||||
}
|
||||
table.system-status-report tr.warning td.status-icon div {
|
||||
background-image: url(../../misc/message-16-warning.png);
|
||||
}
|
||||
tr.merge-down,
|
||||
tr.merge-down td {
|
||||
border-bottom-width: 0 !important;
|
||||
}
|
||||
tr.merge-up,
|
||||
tr.merge-up td {
|
||||
border-top-width: 0 !important;
|
||||
}
|
||||
|
||||
/**
|
||||
* Theme settings.
|
||||
*/
|
||||
.theme-settings-left {
|
||||
float: left;
|
||||
width: 49%;
|
||||
}
|
||||
.theme-settings-right {
|
||||
float: right;
|
||||
width: 49%;
|
||||
}
|
||||
.theme-settings-bottom {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/**
|
||||
* Appearance page.
|
||||
*/
|
||||
table.screenshot {
|
||||
margin-right: 1em; /* LTR */
|
||||
}
|
||||
.theme-info h2 {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
.theme-info p {
|
||||
margin-top: 0;
|
||||
}
|
||||
.system-themes-list {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.system-themes-list-disabled {
|
||||
border-top: 1px solid #cdcdcd;
|
||||
padding-top: 20px;
|
||||
}
|
||||
.system-themes-list h2 {
|
||||
margin: 0;
|
||||
}
|
||||
.theme-selector {
|
||||
padding-top: 20px;
|
||||
}
|
||||
.theme-selector .screenshot,
|
||||
.theme-selector .no-screenshot {
|
||||
border: 1px solid #e0e0d8;
|
||||
padding: 2px;
|
||||
vertical-align: bottom;
|
||||
width: 294px;
|
||||
height: 219px;
|
||||
line-height: 219px;
|
||||
text-align: center;
|
||||
}
|
||||
.theme-default .screenshot {
|
||||
border: 1px solid #aaa;
|
||||
}
|
||||
.system-themes-list-enabled .theme-selector .screenshot,
|
||||
.system-themes-list-enabled .theme-selector .no-screenshot {
|
||||
float: left; /* LTR */
|
||||
margin: 0 20px 0 0; /* LTR */
|
||||
}
|
||||
.system-themes-list-disabled .theme-selector .screenshot,
|
||||
.system-themes-list-disabled .theme-selector .no-screenshot {
|
||||
width: 194px;
|
||||
height: 144px;
|
||||
line-height: 144px;
|
||||
}
|
||||
.theme-selector h3 {
|
||||
font-weight: normal;
|
||||
}
|
||||
.theme-default h3 {
|
||||
font-weight: bold;
|
||||
}
|
||||
.system-themes-list-enabled .theme-selector h3 {
|
||||
margin-top: 0;
|
||||
}
|
||||
.system-themes-list-disabled .theme-selector {
|
||||
width: 300px;
|
||||
float: left; /* LTR */
|
||||
padding: 20px 20px 20px 0; /* LTR */
|
||||
}
|
||||
.system-themes-list-enabled .theme-info {
|
||||
max-width: 940px;
|
||||
}
|
||||
.system-themes-list-disabled .theme-info {
|
||||
min-height: 170px;
|
||||
}
|
||||
.theme-selector .incompatible {
|
||||
margin-top: 10px;
|
||||
font-weight: bold;
|
||||
}
|
||||
.theme-selector .operations {
|
||||
margin: 10px 0 0 0;
|
||||
padding: 0;
|
||||
}
|
||||
.theme-selector .operations li {
|
||||
float: left; /* LTR */
|
||||
margin: 0;
|
||||
padding: 0 0.7em;
|
||||
list-style-type: none;
|
||||
border-right: 1px solid #cdcdcd; /* LTR */
|
||||
}
|
||||
.theme-selector .operations li.last {
|
||||
padding: 0 0 0 0.7em; /* LTR */
|
||||
border-right: none; /* LTR */
|
||||
}
|
||||
.theme-selector .operations li.first {
|
||||
padding: 0 0.7em 0 0; /* LTR */
|
||||
}
|
||||
#system-themes-admin-form {
|
||||
clear: left;
|
||||
}
|
||||
|
||||
/**
|
||||
* Exposed filters.
|
||||
*/
|
||||
.exposed-filters .filters {
|
||||
float: left; /* LTR */
|
||||
margin-right: 1em; /* LTR */
|
||||
width: 25em; /* IE6 */
|
||||
}
|
||||
.exposed-filters .form-item {
|
||||
margin: 0 0 0.1em 0;
|
||||
padding: 0;
|
||||
}
|
||||
.exposed-filters .form-item label {
|
||||
float: left; /* LTR */
|
||||
font-weight: normal;
|
||||
width: 10em;
|
||||
}
|
||||
.exposed-filters .form-select {
|
||||
width: 14em;
|
||||
}
|
||||
/* Current filters */
|
||||
.exposed-filters .current-filters {
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
.exposed-filters .current-filters .placeholder {
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
}
|
||||
.exposed-filters .additional-filters {
|
||||
float: left; /* LTR */
|
||||
margin-right: 1em; /* LTR */
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue