mirror of
https://github.com/tag1consulting/d7_to_d10_migration.git
synced 2025-09-06 00:51:22 +00:00
Initial commit
This commit is contained in:
commit
c5e731d8ae
2773 changed files with 600767 additions and 0 deletions
63
drupal7/web/modules/system/system.messages.css
Normal file
63
drupal7/web/modules/system/system.messages.css
Normal file
|
@ -0,0 +1,63 @@
|
|||
|
||||
/**
|
||||
* @file
|
||||
* Styles for system messages.
|
||||
*/
|
||||
|
||||
div.messages {
|
||||
background-position: 8px 8px; /* LTR */
|
||||
background-repeat: no-repeat;
|
||||
border: 1px solid;
|
||||
margin: 6px 0;
|
||||
padding: 10px 10px 10px 50px; /* LTR */
|
||||
}
|
||||
|
||||
div.status {
|
||||
background-image: url(../../misc/message-24-ok.png);
|
||||
border-color: #be7;
|
||||
}
|
||||
div.status,
|
||||
.ok {
|
||||
color: #234600;
|
||||
}
|
||||
div.status,
|
||||
table tr.ok {
|
||||
background-color: #f8fff0;
|
||||
}
|
||||
|
||||
div.warning {
|
||||
background-image: url(../../misc/message-24-warning.png);
|
||||
border-color: #ed5;
|
||||
}
|
||||
div.warning,
|
||||
.warning {
|
||||
color: #840;
|
||||
}
|
||||
div.warning,
|
||||
table tr.warning {
|
||||
background-color: #fffce5;
|
||||
}
|
||||
|
||||
div.error {
|
||||
background-image: url(../../misc/message-24-error.png);
|
||||
border-color: #ed541d;
|
||||
}
|
||||
div.error,
|
||||
.error {
|
||||
color: #8c2e0b;
|
||||
}
|
||||
div.error,
|
||||
table tr.error {
|
||||
background-color: #fef5f1;
|
||||
}
|
||||
div.error p.error {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
div.messages ul {
|
||||
margin: 0 0 0 1em; /* LTR */
|
||||
padding: 0;
|
||||
}
|
||||
div.messages ul li {
|
||||
list-style-image: none;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue