mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 05:59:26 +08:00
This change affects any caret icon across the app to be converted to an angle icon. **Before** <img width="462" height="150" alt="CleanShot 2026-02-04 at 15 53 10@2x" src="https://github.com/user-attachments/assets/adf52ce6-b958-4650-bf99-836203884640" /> **After** <img width="454" height="136" alt="CleanShot 2026-02-04 at 15 50 22@2x" src="https://github.com/user-attachments/assets/eea2f844-fdc7-4fa7-98f5-af393ae835b8" />
44 lines
707 B
SCSS
Vendored
44 lines
707 B
SCSS
Vendored
.custom-date-time-wrap {
|
|
padding: 1em 1em 0.5em;
|
|
border: 1px solid var(--content-border-color);
|
|
border-top: none;
|
|
background: var(--primary-very-low);
|
|
|
|
.d-icon {
|
|
padding: 0 0.75em 0 0;
|
|
color: var(--primary-high);
|
|
margin-top: -0.5em;
|
|
}
|
|
|
|
.angle-icon {
|
|
margin-top: 0;
|
|
padding: 0 0 0 5px;
|
|
}
|
|
|
|
.tap-tile-date-input,
|
|
.tap-tile-time-input {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.date-picker,
|
|
.time-input {
|
|
text-align: left;
|
|
}
|
|
|
|
.time-input,
|
|
.date-picker-wrapper {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
&.custom-input-wrap {
|
|
border-bottom: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
&.custom-relative-wrap {
|
|
.relative-time-picker {
|
|
display: flex;
|
|
}
|
|
}
|
|
}
|