mirror of https://github.com/zulip/zulip.git
css: Use SCSS nesting for `.input-group` in portico.scss.
This commit is contained in:
parent
b1a6f6598b
commit
c6d52afcff
|
@ -1212,28 +1212,29 @@ input.new-organization-button {
|
|||
}
|
||||
}
|
||||
|
||||
.input-group.margin {
|
||||
.input-group {
|
||||
&.margin {
|
||||
margin: 10px 0px;
|
||||
}
|
||||
}
|
||||
|
||||
.input-group .progress {
|
||||
.progress {
|
||||
margin: 0;
|
||||
margin-top: 5px;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
/* --- new settings styling --- */
|
||||
.input-group input[type=radio],
|
||||
.input-group input[type=checkbox] {
|
||||
/* --- new settings styling --- */
|
||||
input[type=radio],
|
||||
input[type=checkbox] {
|
||||
margin: 0 10px 0 0;
|
||||
}
|
||||
}
|
||||
|
||||
.input-group input[type=radio] {
|
||||
input[type=radio] {
|
||||
position: relative;
|
||||
top: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
.input-group label {
|
||||
label {
|
||||
margin: 0;
|
||||
padding: 5px 0px;
|
||||
|
||||
|
@ -1241,19 +1242,20 @@ input.new-organization-button {
|
|||
/* eyeballing off-centered aesth. */
|
||||
margin-top: 1px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.input-group.radio {
|
||||
&.radio {
|
||||
margin-left: 25px;
|
||||
}
|
||||
}
|
||||
|
||||
.input-group.grid {
|
||||
&.grid {
|
||||
padding: 10px 0px;
|
||||
border-bottom: 1px solid hsl(0, 0%, 87%);
|
||||
|
||||
label.inline-block {
|
||||
width: 200px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.center-container {
|
||||
|
|
Loading…
Reference in New Issue