_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
_settings.scss
95 lines
| 1 | .tiob-settings { |
| 2 | display: flex; |
| 3 | margin-top: 24px; |
| 4 | column-gap: 16px; |
| 5 | .panel { |
| 6 | background-color: #FFF; |
| 7 | min-height: 120px; |
| 8 | width: 100%; |
| 9 | padding: 16px 24px; |
| 10 | box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); |
| 11 | &.is-secondary { |
| 12 | flex-basis: 30%; |
| 13 | height: fit-content; |
| 14 | } |
| 15 | |
| 16 | .setting-tabs { |
| 17 | display: flex; |
| 18 | box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1); |
| 19 | button.tab { |
| 20 | display: flex; |
| 21 | align-items: center; |
| 22 | justify-content: center; |
| 23 | font-weight: 700; |
| 24 | text-decoration: none; |
| 25 | font-size: 14px; |
| 26 | width: auto; |
| 27 | padding: 16px 24px; |
| 28 | color: #2E2E2E; |
| 29 | border-radius: 0; |
| 30 | |
| 31 | &:hover, &:focus { |
| 32 | color: #0566D5; |
| 33 | cursor: pointer; |
| 34 | } |
| 35 | &.active { |
| 36 | color: #0366D5; |
| 37 | box-shadow: 0 -4px 0 0 #0566D5 inset; |
| 38 | } |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | .links { |
| 43 | display: flex; |
| 44 | flex-direction: column; |
| 45 | grid-gap: 12px; |
| 46 | padding: 12px 0; |
| 47 | |
| 48 | .components-button { |
| 49 | justify-content: center; |
| 50 | margin-top: 12px; |
| 51 | } |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | .license { |
| 56 | border: 0; |
| 57 | box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1); |
| 58 | background: none; |
| 59 | padding: 24px 0px; |
| 60 | |
| 61 | .license-form { |
| 62 | display: flex; |
| 63 | grid-gap: 8px; |
| 64 | .components-base-control__field { |
| 65 | margin: 0; |
| 66 | .components-base-control__label { |
| 67 | text-transform: initial; |
| 68 | font-size: 14px; |
| 69 | } |
| 70 | .components-text-control__input { |
| 71 | font-size: 14px; |
| 72 | padding: 8px 16px; |
| 73 | } |
| 74 | } |
| 75 | } |
| 76 | |
| 77 | .info { |
| 78 | display: flex; |
| 79 | align-items: center; |
| 80 | grid-gap: 8px; |
| 81 | margin-top: 16px; |
| 82 | .dashicon.verified { |
| 83 | color: green; |
| 84 | & + span { |
| 85 | color: green; |
| 86 | } |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | .components-notice.is-error { |
| 91 | margin: 0; |
| 92 | } |
| 93 | } |
| 94 | } |
| 95 |