discourse/plugins/discourse-local-dates/assets/stylesheets/common/discourse-local-dates.scss

183 lines
2.8 KiB
SCSS
Raw Normal View History

2018-05-30 13:05:41 -04:00
.discourse-local-date {
&.cooked-date {
2018-05-30 13:05:41 -04:00
color: $primary;
cursor: pointer;
2018-10-11 17:45:42 -04:00
border-bottom: 1px dashed $primary-medium;
Upgrade to FontAwesome 5 (take two) (#6673) * 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
2018-11-26 16:49:57 -05:00
.d-icon {
2018-10-12 04:14:37 -04:00
color: $primary;
2018-05-30 13:05:41 -04:00
}
&.past {
2018-10-11 17:45:42 -04:00
border-bottom-color: $primary-low-mid;
}
2018-05-30 13:05:41 -04:00
}
}
.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;
}
}
}
}
}
2018-05-30 13:05:41 -04:00
.discourse-local-dates-create-modal-footer {
display: flex;
align-items: center;
justify-content: flex-start;
&:before,
&:after {
2018-05-30 13:05:41 -04:00
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;
}
}
2018-05-30 13:05:41 -04:00
.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;
2018-05-30 13:05:41 -04:00
margin-top: 16px;
text-align: center;
2018-05-30 13:05:41 -04:00
}
2018-07-12 16:38:51 -04:00
@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;
}
}
2018-05-30 13:05:41 -04:00
}
.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;
}
2018-05-30 13:05:41 -04:00
.timezones-input {
width: 99%;
}
}