PluginProbe ʕ •ᴥ•ʔ
SEO SIMPLE PACK / 2.2.3
SEO SIMPLE PACK v2.2.3
1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 2.0.0 2.1.0 2.1.1 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.3.1 2.4.0 2.4.1 2.4.2 2.5.0 2.5.1 3.0.0 3.1.0 3.1.1 3.1.2 3.2.0 3.2.1 3.3.0 3.3.1 3.4.0 3.5.0 3.5.1 3.5.2 3.6.0 3.6.1 3.6.2 3.6.3 3.7.0 trunk 1.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.0 1.1.1 1.1.2
seo-simple-pack / src / scss / inc / _preview.scss
seo-simple-pack / src / scss / inc Last commit date
_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