Change list title input design to fit upstream (#2626)
* Change settings input field design to match upstream's * Fix light theme discrepancies * Restore regexp inputs as glitch-soc-specific styles
This commit is contained in:
parent
5c0a64a975
commit
41c85e3b6d
3 changed files with 59 additions and 70 deletions
|
@ -23,7 +23,7 @@ export default class SettingText extends PureComponent {
|
||||||
<label>
|
<label>
|
||||||
<span style={{ display: 'none' }}>{label}</span>
|
<span style={{ display: 'none' }}>{label}</span>
|
||||||
<input
|
<input
|
||||||
className='setting-text'
|
className='glitch-setting-text'
|
||||||
value={settings.getIn(settingPath)}
|
value={settings.getIn(settingPath)}
|
||||||
onChange={this.handleChange}
|
onChange={this.handleChange}
|
||||||
placeholder={label}
|
placeholder={label}
|
||||||
|
|
|
@ -2945,7 +2945,6 @@ $ui-header-height: 55px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
flex: 0 0 auto;
|
|
||||||
padding: 0;
|
padding: 0;
|
||||||
padding-inline-end: 5px;
|
padding-inline-end: 5px;
|
||||||
z-index: 3;
|
z-index: 3;
|
||||||
|
@ -3213,8 +3212,7 @@ $ui-header-height: 55px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.setting-text {
|
input.glitch-setting-text {
|
||||||
display: block;
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
color: $darker-text-color;
|
color: $darker-text-color;
|
||||||
background: transparent;
|
background: transparent;
|
||||||
|
@ -3232,15 +3230,57 @@ $ui-header-height: 55px;
|
||||||
border-bottom-color: $ui-highlight-color;
|
border-bottom-color: $ui-highlight-color;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.light {
|
@media screen and (width <= 600px) {
|
||||||
color: $inverted-text-color;
|
font-size: 16px;
|
||||||
border-bottom: 2px solid lighten($ui-base-color, 27%);
|
}
|
||||||
|
}
|
||||||
|
|
||||||
&:focus,
|
.setting-text {
|
||||||
&:active {
|
display: block;
|
||||||
color: $inverted-text-color;
|
box-sizing: border-box;
|
||||||
border-bottom-color: $ui-highlight-color;
|
margin: 0;
|
||||||
|
color: $inverted-text-color;
|
||||||
|
background: $white;
|
||||||
|
padding: 7px 10px;
|
||||||
|
font-family: inherit;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 22px;
|
||||||
|
border-radius: 4px;
|
||||||
|
border: 1px solid $white;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
outline: 0;
|
||||||
|
border-color: lighten($ui-highlight-color, 12%);
|
||||||
|
}
|
||||||
|
|
||||||
|
&__wrapper {
|
||||||
|
background: $white;
|
||||||
|
border: 1px solid $ui-secondary-color;
|
||||||
|
margin-bottom: 10px;
|
||||||
|
border-radius: 4px;
|
||||||
|
|
||||||
|
.setting-text {
|
||||||
|
border: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
|
||||||
|
&:focus {
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__modifiers {
|
||||||
|
color: $inverted-text-color;
|
||||||
|
font-family: inherit;
|
||||||
|
font-size: 14px;
|
||||||
|
background: $white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
&__toolbar {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
margin-bottom: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media screen and (width <= 600px) {
|
@media screen and (width <= 600px) {
|
||||||
|
@ -6448,56 +6488,11 @@ a.status-card.compact:hover {
|
||||||
}
|
}
|
||||||
|
|
||||||
.setting-text {
|
.setting-text {
|
||||||
display: block;
|
|
||||||
box-sizing: border-box;
|
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin: 0;
|
|
||||||
color: $inverted-text-color;
|
|
||||||
background: $white;
|
|
||||||
padding: 10px;
|
|
||||||
font-family: inherit;
|
|
||||||
font-size: 14px;
|
|
||||||
resize: none;
|
resize: none;
|
||||||
outline: 0;
|
|
||||||
border-radius: 4px;
|
|
||||||
border: 1px solid $ui-secondary-color;
|
|
||||||
min-height: 100px;
|
min-height: 100px;
|
||||||
max-height: 50vh;
|
max-height: 50vh;
|
||||||
margin-bottom: 10px;
|
border: 0;
|
||||||
|
|
||||||
&:focus {
|
|
||||||
border: 1px solid darken($ui-secondary-color, 8%);
|
|
||||||
}
|
|
||||||
|
|
||||||
&__wrapper {
|
|
||||||
background: $white;
|
|
||||||
border: 1px solid $ui-secondary-color;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
border-radius: 4px;
|
|
||||||
|
|
||||||
.setting-text {
|
|
||||||
border: 0;
|
|
||||||
margin-bottom: 0;
|
|
||||||
border-radius: 0;
|
|
||||||
|
|
||||||
&:focus {
|
|
||||||
border: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&__modifiers {
|
|
||||||
color: $inverted-text-color;
|
|
||||||
font-family: inherit;
|
|
||||||
font-size: 14px;
|
|
||||||
background: $white;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
&__toolbar {
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.setting-toggle {
|
.setting-toggle {
|
||||||
|
@ -7738,10 +7733,10 @@ noscript {
|
||||||
}
|
}
|
||||||
|
|
||||||
.column-inline-form {
|
.column-inline-form {
|
||||||
padding: 7px 15px;
|
padding: 15px;
|
||||||
padding-inline-end: 5px;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
|
gap: 15px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
background: lighten($ui-base-color, 4%);
|
background: lighten($ui-base-color, 4%);
|
||||||
|
|
||||||
|
@ -7750,18 +7745,8 @@ noscript {
|
||||||
|
|
||||||
input {
|
input {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
margin-bottom: 6px;
|
|
||||||
|
|
||||||
&:focus {
|
|
||||||
outline: 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon-button {
|
|
||||||
flex: 0 0 auto;
|
|
||||||
margin: 0 5px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.drawer__backdrop {
|
.drawer__backdrop {
|
||||||
|
|
|
@ -80,6 +80,10 @@ html {
|
||||||
background: $white;
|
background: $white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.column-header {
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.column-header__button.active {
|
.column-header__button.active {
|
||||||
color: $ui-highlight-color;
|
color: $ui-highlight-color;
|
||||||
|
|
||||||
|
@ -422,7 +426,7 @@ html {
|
||||||
.column-header__collapsible-inner {
|
.column-header__collapsible-inner {
|
||||||
background: darken($ui-base-color, 4%);
|
background: darken($ui-base-color, 4%);
|
||||||
border: 1px solid lighten($ui-base-color, 8%);
|
border: 1px solid lighten($ui-base-color, 8%);
|
||||||
border-top: 0;
|
border-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.column-settings__hashtags .column-select__option {
|
.column-settings__hashtags .column-select__option {
|
||||||
|
|
Loading…
Reference in a new issue