_card.scss
5 years ago
_custom-tooltip.scss
3 years ago
_demo-site-templates.scss
5 years ago
_docnotice.scss
2 years ago
_editor-selector.scss
2 years ago
_editor-tabs.scss
4 years ago
_feedback.scss
2 years ago
_general.scss
3 years ago
_header.scss
3 years ago
_import-modal.scss
3 years ago
_library.scss
2 years ago
_license.scss
3 years ago
_media-queries.scss
4 years ago
_mock.scss
5 years ago
_new-tc-notice.scss
1 year ago
_notification.scss
4 years ago
_preview.scss
5 years ago
_search.scss
4 years ago
_settings.scss
2 years ago
_starter-site-card.scss
4 years ago
_stepper.scss
3 years ago
_sticky-nav.scss
5 years ago
_vars.scss
5 years ago
_feedback.scss
97 lines
| 1 | .tiob-feedback-notice { |
| 2 | padding: 8px 4px; |
| 3 | .tiob-notice { |
| 4 | height: 46px; |
| 5 | max-width: 600px; |
| 6 | width: auto; |
| 7 | background-color: #fff; |
| 8 | padding: 0 8px; |
| 9 | border-radius: 4px; |
| 10 | transition: width 0.8s; |
| 11 | margin: 0; |
| 12 | &:not(.error):not(.updated) { |
| 13 | border: 1px solid transparent; |
| 14 | } |
| 15 | |
| 16 | .dashicons-saved { |
| 17 | color: #00a32a; |
| 18 | } |
| 19 | |
| 20 | button.is-tertiary { |
| 21 | color: #1e1e1e; |
| 22 | &:hover { |
| 23 | color: var(--wp-admin-theme-color); |
| 24 | box-shadow: none; |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | button.error { |
| 29 | color: red; |
| 30 | &:hover { |
| 31 | color: #1e1e1e; |
| 32 | } |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | .tiob-feedback-form { |
| 38 | margin-top: 24px; |
| 39 | padding: 0px; |
| 40 | border: 0; |
| 41 | } |
| 42 | |
| 43 | .tiob_feedback_modal, .tiob-feedback-form { |
| 44 | max-width: 100%; |
| 45 | border-radius: 4px; |
| 46 | .components-modal__header { |
| 47 | background-color: var(--wp-admin-theme-color); |
| 48 | h1 { |
| 49 | color: #fff; |
| 50 | } |
| 51 | .components-button { |
| 52 | color: #fff; |
| 53 | &:hover { |
| 54 | color: #1e1e1e; |
| 55 | } |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | .feedback_options { |
| 60 | margin-top: 16px; |
| 61 | .components-flex.components-h-stack { |
| 62 | gap: calc(8px); |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | .feedback_details { |
| 67 | margin-top: 16px; |
| 68 | &.invalid textarea { |
| 69 | border-color: red; |
| 70 | } |
| 71 | &.invalid p { |
| 72 | color: red; |
| 73 | } |
| 74 | &.submitted p { |
| 75 | color: green; |
| 76 | } |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | .tiob_feedback_collect.info { |
| 81 | overflow: hidden; |
| 82 | transition: height .5s; |
| 83 | margin-top: 16px; |
| 84 | |
| 85 | .info-row { |
| 86 | padding: 0 12px; |
| 87 | background-color: #efefef; |
| 88 | display: flex; |
| 89 | justify-content: space-between; |
| 90 | border-bottom: 1px solid #9e9e9e; |
| 91 | |
| 92 | &:nth-child( odd ) { |
| 93 | background-color: #fff; |
| 94 | } |
| 95 | } |
| 96 | } |
| 97 |