Drupal 8.0.0 beta 12. More info: https://www.drupal.org/node/2514176
This commit is contained in:
commit
9921556621
13277 changed files with 1459781 additions and 0 deletions
57
core/themes/seven/css/theme/install-page.css
Normal file
57
core/themes/seven/css/theme/install-page.css
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
/**
|
||||
* @file
|
||||
* Installation styling.
|
||||
*
|
||||
* Unfortunately we have to make our styling quite strong, to override the
|
||||
* .maintenance-page styling.
|
||||
*/
|
||||
.install-page {
|
||||
background-color: #1275b2;
|
||||
background-image:
|
||||
url(../../images/noise-low.png),
|
||||
-webkit-radial-gradient(hsl(203, 80%, 45%), hsl(203, 80%, 32%));
|
||||
background-image:
|
||||
url(../../images/noise-low.png),
|
||||
radial-gradient(hsl(203, 80%, 45%), hsl(203, 80%, 32%));
|
||||
background-repeat: repeat;
|
||||
background-position: left top, 50% 50%; /* LTR */
|
||||
min-height: 100%;
|
||||
}
|
||||
[dir="rtl"] .install-page {
|
||||
background-position: right top, 50% 50%;
|
||||
}
|
||||
|
||||
/**
|
||||
* Password widget
|
||||
*/
|
||||
.install-page .password-parent,
|
||||
.install-page .confirm-parent {
|
||||
width: auto;
|
||||
}
|
||||
.install-page .form-item .password-suggestions {
|
||||
float: none;
|
||||
width: auto;
|
||||
}
|
||||
.install-page table td {
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
@media all and (max-width: 1010px) and (min-width: 48em) {
|
||||
.install-page .password-strength,
|
||||
.install-page .confirm-parent {
|
||||
width: 100%;
|
||||
}
|
||||
.install-configure-form .form-type-password {
|
||||
width: 100%;
|
||||
}
|
||||
.password-confirm,
|
||||
.password-field {
|
||||
float: none;
|
||||
}
|
||||
.password-confirm-match {
|
||||
float: none;
|
||||
width: auto;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in a new issue