mirror of
https://github.com/moodle/moodle.git
synced 2025-08-09 10:56:56 +02:00
MDL-66999 theme_boost: @extend replace extends in forms
The css for .form-buttons, .path-admin... has been removed completely The extend was used to add a grey container which is no longer works
This commit is contained in:
parent
828a659728
commit
80465b8785
3 changed files with 61 additions and 194 deletions
|
@ -123,15 +123,6 @@ input#id_externalurl {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Pale grey container for submit buttons.
|
|
||||||
.form-buttons,
|
|
||||||
.path-admin .buttons,
|
|
||||||
.fp-content-center form + div,
|
|
||||||
div.backup-section + form {
|
|
||||||
@extend .form-group;
|
|
||||||
padding-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.form-item .form-setting .defaultsnext > input {
|
.form-item .form-setting .defaultsnext > input {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
}
|
}
|
||||||
|
@ -471,20 +462,20 @@ textarea[data-auto-rows] {
|
||||||
.input-group {
|
.input-group {
|
||||||
&.form-inset {
|
&.form-inset {
|
||||||
.form-inset-item {
|
.form-inset-item {
|
||||||
@extend .position-absolute;
|
position: absolute;
|
||||||
padding-top: calc(#{$input-padding-y} + #{$input-border-width});
|
padding-top: calc(#{$input-padding-y} + #{$input-border-width});
|
||||||
z-index: 3;
|
z-index: 3;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.form-inset-left {
|
&.form-inset-left {
|
||||||
.form-control {
|
.form-control {
|
||||||
@extend .pl-4;
|
padding-left: $spacer * 1.5;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.form-inset-right {
|
&.form-inset-right {
|
||||||
.form-control {
|
.form-control {
|
||||||
@extend .pr-4;
|
padding-right: $spacer * 1.5;
|
||||||
}
|
}
|
||||||
.form-inset-item {
|
.form-inset-item {
|
||||||
right: 0;
|
right: 0;
|
||||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Add table
Add a link
Reference in a new issue