_field.scss
5 years ago
_help.scss
5 years ago
_preview.scss
5 years ago
_ssp_page.scss
5 years ago
_ssp_tabs.scss
5 years ago
_switch.scss
5 years ago
_preview.scss
72 lines
| 1 | .ssp-field__preview { |
| 2 | display: flex; |
| 3 | flex-wrap: wrap; |
| 4 | align-items: center; |
| 5 | width: 100%; |
| 6 | padding: 4px; |
| 7 | font-size: 13px; |
| 8 | |
| 9 | @include sp_admin { |
| 10 | font-size: 12px; |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | .ssp-field__preview__label { |
| 15 | |
| 16 | margin-left: 4px; |
| 17 | |
| 18 | @include sp_admin { |
| 19 | display: none; |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | .ssp-field__preview__content { |
| 24 | display: inline-block; |
| 25 | margin-left: 8px; |
| 26 | padding: 12px; |
| 27 | background: #ececec; |
| 28 | border-radius: 3px; |
| 29 | box-shadow: inset 0 0 4px #ddd; |
| 30 | |
| 31 | @include sp_admin { |
| 32 | padding: 8px; |
| 33 | } |
| 34 | |
| 35 | span { |
| 36 | margin: 0 2px; |
| 37 | padding: 4px 8px; |
| 38 | color: #fff; |
| 39 | background: #87ab87; |
| 40 | border-radius: 4px; |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | |
| 45 | // HELPボタン |
| 46 | .ssp-helpButton { |
| 47 | display: inline-block; |
| 48 | width: 22px; |
| 49 | height: 22px; |
| 50 | margin-left: 12px; |
| 51 | padding: 0; |
| 52 | color: #fff !important; |
| 53 | font-weight: bold; |
| 54 | font-size: 12px; |
| 55 | line-height: 22px; |
| 56 | text-align: center; |
| 57 | text-decoration: none; |
| 58 | vertical-align: middle; |
| 59 | background: #87ab87; |
| 60 | border-radius: 50%; |
| 61 | box-shadow: inset 0 0 4px rgba(50, 50, 50, 0.15); |
| 62 | transition: transform 0.25s; |
| 63 | |
| 64 | @include sp_admin { |
| 65 | margin-left: 12px; |
| 66 | } |
| 67 | |
| 68 | &:hover { |
| 69 | transform: scale(1.1); |
| 70 | } |
| 71 | } |
| 72 |