mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 15:43:43 +08:00
03deda2147
* Add missing icons to set
* Revert FA5 revert
This reverts commit 42572ff
* use new SVG syntax in locales
* Noscript page changes (remove login button, center "powered by" footer text)
* Cast wider net for SVG icons in settings
- include any _icon setting for SVG registry (offers better support for plugin settings)
- let themes store multiple pipe-delimited icons in a setting
- also replaces broken onebox image icon with SVG reference in cooked post processor
* interpolate icons in locales
* Fix composer whisper icon alignment
* Add support for stacked icons
* SECURITY: enforce hostname to match discourse hostname
This ensures that the hostname rails uses for various helpers always matches
the Discourse hostname
* load SVG sprite with pre-initializers
* FIX: enable caching on SVG sprites
* PERF: use JSONP for SVG sprites so they are served from CDN
This avoids needing to deal with CORS for loading of the SVG
Note, added the svg- prefix to the filename so we can quickly tell in
dev tools what the file is
* Add missing SVG sprite JSONP script to CSP
* Upgrade to FA 5.5.0
* Add support for all FA4.7 icons
- adds complete frontend and backend for renamed FA4.7 icons
- improves performance of SvgSprite.bundle and SvgSprite.all_icons
* Fix group avatar flair preview
- adds an endpoint at /svg-sprites/search/:keyword
- adds frontend ajax call that pulls icon in avatar flair preview even when it is not in subset
* Remove FA 4.7 font files
187 lines
2.9 KiB
SCSS
187 lines
2.9 KiB
SCSS
.discourse-local-date {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
|
|
&.cooked-date {
|
|
color: $primary;
|
|
cursor: pointer;
|
|
border-bottom: 1px dashed $primary-medium;
|
|
|
|
.d-icon {
|
|
margin-right: 0.25em;
|
|
color: $primary;
|
|
}
|
|
|
|
&.past {
|
|
border-bottom-color: $primary-low-mid;
|
|
}
|
|
}
|
|
}
|
|
|
|
.discourse-local-date + #discourse-tooltip {
|
|
.tooltip-content {
|
|
max-width: 360px;
|
|
padding: 0.5em;
|
|
|
|
.previews {
|
|
.preview {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 5px;
|
|
|
|
.timezone {
|
|
font-weight: 700;
|
|
}
|
|
|
|
&.current {
|
|
background: $tertiary-low;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.discourse-local-dates-create-modal-footer {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
|
|
&:before,
|
|
&:after {
|
|
content: none;
|
|
}
|
|
|
|
.cancel-action {
|
|
margin: 0 5px 5px 0;
|
|
}
|
|
|
|
.btn + .cancel-action {
|
|
margin-left: 1em;
|
|
}
|
|
|
|
.advanced-mode-btn {
|
|
margin-left: auto;
|
|
}
|
|
}
|
|
|
|
.discourse-local-dates-create-modal {
|
|
min-height: 300px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
.form {
|
|
flex: 1;
|
|
|
|
label {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.date-time-configuration {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
|
|
.range {
|
|
.from {
|
|
flex-direction: row;
|
|
display: flex;
|
|
}
|
|
|
|
.to {
|
|
flex-direction: row;
|
|
display: flex;
|
|
}
|
|
|
|
.to-indicator {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin: 0.5em 0;
|
|
}
|
|
}
|
|
|
|
.date {
|
|
.date-input {
|
|
margin-right: 1em;
|
|
|
|
.date-picker {
|
|
padding-top: 5px;
|
|
bottom: 5px;
|
|
margin: 0;
|
|
width: 120px;
|
|
text-align: left;
|
|
}
|
|
}
|
|
}
|
|
|
|
.time {
|
|
.time-input {
|
|
margin: 0 0.5em 0 0;
|
|
width: 120px;
|
|
padding: 3.5px 10px;
|
|
}
|
|
}
|
|
|
|
.preview {
|
|
flex: 1;
|
|
margin-top: 16px;
|
|
text-align: center;
|
|
}
|
|
|
|
@include breakpoint(medium) {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
|
|
.range .from,
|
|
.range .to {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.date .date-input .date-picker {
|
|
width: 200px;
|
|
}
|
|
|
|
.time .time-input {
|
|
width: 200px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.validation-error {
|
|
color: $danger;
|
|
}
|
|
|
|
.recurrence {
|
|
.recurrence-input {
|
|
width: 300px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.format {
|
|
.format-input {
|
|
width: 280px;
|
|
}
|
|
}
|
|
|
|
.formats {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
.format {
|
|
.previewed-format {
|
|
color: $primary-medium;
|
|
}
|
|
}
|
|
}
|
|
|
|
.control-group.recurrence,
|
|
.control-group.format,
|
|
.control-group.timezones {
|
|
margin-top: 1em;
|
|
}
|
|
|
|
.timezones-input {
|
|
width: 99%;
|
|
}
|
|
}
|