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

328 lines
5.5 KiB
SCSS
Raw Normal View History

2018-05-31 01:05:41 +08:00
.discourse-local-date {
&.cooked-date {
2018-05-31 01:05:41 +08:00
color: $primary;
cursor: pointer;
2018-10-12 05:45:42 +08: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-27 05:49:57 +08:00
.d-icon {
2018-10-12 16:14:37 +08:00
color: $primary;
2018-05-31 01:05:41 +08:00
}
&.past {
2018-10-12 05:45:42 +08:00
border-bottom-color: $primary-low-mid;
}
2018-05-31 01:05:41 +08:00
}
}
#d-popover {
.locale-dates-previews {
max-width: 360px;
.preview {
display: flex;
flex-direction: column;
padding: 5px;
.timezone {
font-weight: 700;
}
&.current {
background: $tertiary-low;
}
}
}
}
2018-05-31 01:05:41 +08:00
.discourse-local-dates-create-modal-footer {
display: flex;
align-items: center;
justify-content: flex-start;
&:before,
&:after {
2018-05-31 01:05:41 +08: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: 320px;
2018-05-31 01:05:41 +08:00
display: flex;
flex-direction: row;
padding: 0.5em;
2018-05-31 01:05:41 +08:00
.picker-panel {
padding: 5px;
border: 1px solid $primary-low;
}
.date-picker {
display: flex;
flex-direction: column;
width: auto;
box-sizing: border-box;
.pika-single {
position: relative !important;
flex: 1;
display: flex;
border: 0;
}
}
2018-05-31 01:05:41 +08:00
.form {
flex: 1 0 0px;
2018-05-31 01:05:41 +08:00
label {
font-weight: 700;
}
.date-time-configuration {
display: flex;
.fake-input {
display: none;
}
2019-03-28 23:34:56 +08:00
.timezone-input {
width: 100%;
&.is-expanded {
.select-kit-header {
border: 1px solid $primary-medium;
}
}
.select-kit-header {
padding: 0.5em 0.5em;
border: 1px solid $primary-low;
.d-icon {
margin-right: 1em;
}
.caret-icon {
margin-right: 0;
}
}
}
2018-05-31 01:05:41 +08:00
.date-time-control {
position: relative;
display: flex;
border: 1px solid $primary-low;
&.is-filled,
&.is-selected {
.date-time {
color: $primary;
background: $secondary;
}
.d-icon {
color: $primary-high;
}
}
&.from {
border-radius: 5px 5px 0 0;
.date-time {
border-radius: 5px 5px 0 0;
2018-05-31 01:05:41 +08:00
}
&.is-selected {
border-color: $tertiary;
}
}
&.to {
border-radius: 0 0 5px 5px;
margin-bottom: 1em;
.date-time {
border-radius: 0 0 5px 5px;
padding-right: 3em;
}
&.is-selected {
border-color: $tertiary;
}
}
.date-time {
color: $primary-medium;
background: $primary-very-low;
}
.d-icon {
position: absolute;
margin-top: auto;
margin-bottom: auto;
left: 0.5em;
top: 0;
bottom: 0;
color: $primary-medium;
}
.delete-to-date {
position: absolute;
margin-top: auto;
margin-bottom: auto;
right: 0;
width: 30px;
top: 0;
bottom: 0;
color: $primary-high;
border-radius: 0 0 5px 0;
}
.date-time {
padding: 1em 0.5em 1em 2em;
border: 0;
outline: none;
flex: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 100%;
text-align: left;
2018-05-31 01:05:41 +08:00
}
}
.inputs-panel {
flex: 1;
}
.picker-panel {
z-index: 1;
background: $secondary;
width: 200px;
box-sizing: border-box;
2019-03-28 23:34:56 +08:00
margin-left: 1em;
2018-05-31 01:05:41 +08:00
}
.time-pickers {
display: flex;
justify-content: center;
flex: 1;
margin-top: 1em;
align-items: center;
padding: 0.25em;
border-top: 1px solid $primary-low-mid;
box-sizing: border-box;
.d-icon {
color: $primary-medium;
}
.time-picker {
outline: none;
box-shadow: none;
2019-03-28 23:34:56 +08:00
margin: 0;
box-sizing: border-box;
width: 100%;
border: 0;
}
}
2018-05-31 01:05:41 +08:00
}
2019-03-28 23:34:56 +08:00
.preview {
text-align: center;
margin-top: 0;
margin-bottom: 0.5em;
display: flex;
align-items: center;
padding: 0.5em;
flex-wrap: wrap;
b {
margin-right: 0.5em;
}
2019-03-28 23:34:56 +08:00
b + p {
margin: 0;
display: inline-block;
}
2018-05-31 01:05:41 +08:00
}
.recurrence {
.recurrence-input {
width: 300px;
}
}
}
.validation-error {
margin-bottom: 0.5em;
}
.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-31 01:05:41 +08:00
.timezones-input {
width: 99%;
}
}
2019-03-28 23:34:56 +08:00
html:not(.mobile-view) {
.fixed-modal .discourse-local-dates-create-modal.modal-body {
width: 600px;
max-height: 400px !important;
}
}
html.mobile-view {
.fixed-modal .discourse-local-dates-create-modal.modal-body {
max-height: 400px !important;
.date-time-configuration {
flex-direction: column;
}
2019-03-28 23:34:56 +08:00
.picker-panel {
width: 100%;
margin: 0 0 1em 0;
2019-03-28 23:34:56 +08:00
.pika-single {
justify-content: center;
2019-03-28 23:34:56 +08:00
}
}
.time-picker {
padding-top: 6px;
}
2019-03-28 23:34:56 +08:00
}
}