PluginProbe ʕ •ᴥ•ʔ
Secure Custom Fields / trunk
Secure Custom Fields vtrunk
6.9.1 6.9.0 6.8.9 6.8.7 6.8.8 6.8.6 6.8.4 6.8.5 trunk 6.4.0-beta1 6.4.0-beta2 6.4.1 6.4.1-beta3 6.4.1-beta4 6.4.1-beta5 6.4.1-beta6 6.4.1-beta7 6.4.2 6.5.0 6.5.1 6.5.2 6.5.3 6.5.4 6.5.5 6.5.6 6.5.7 6.6.0 6.7.0 6.7.1 6.8.0 6.8.1 6.8.2 6.8.3
secure-custom-fields / assets / src / sass / _updates.scss
secure-custom-fields / assets / src / sass Last commit date
pro 1 week ago _acf-headerbar.scss 1 year ago _acf-icon-picker.scss 1 year ago _admin-inputs.scss 1 year ago _admin-toolbar.scss 1 year ago _btn.scss 1 year ago _dark.scss 1 year ago _edit-field-group.scss 1 year ago _field-group.scss 1 year ago _field-picker.scss 1 year ago _field-type-icons.scss 1 year ago _fields.scss 1 month ago _forms.scss 11 months ago _global.scss 1 year ago _icons.scss 1 year ago _input.scss 1 year ago _list-table.scss 1 year ago _media.scss 1 year ago _mixins.scss 1 year ago _post-types-taxonomies.scss 1 year ago _postbox.scss 1 year ago _pro-upgrade.scss 1 year ago _sub-field-groups.scss 1 year ago _tools.scss 1 year ago _typography.scss 1 year ago _updates.scss 1 year ago _variables.scss 1 year ago acf-dark.scss 1 year ago acf-field-group.scss 7 months ago acf-global.scss 2 months ago acf-input.scss 1 month ago
_updates.scss
142 lines
1 /*---------------------------------------------------------------------------------------------
2 *
3 * Updates layout
4 *
5 *---------------------------------------------------------------------------------------------*/
6 .acf-settings-wrap.acf-updates {
7 display: flex;
8 flex-direction: row;
9 flex-wrap: wrap;
10 justify-content: flex-start;
11 align-content: flex-start;
12 align-items: flex-start;
13 }
14
15 .custom-fields_page_acf-settings-updates .acf-admin-notice,
16 .custom-fields_page_acf-settings-updates .acf-upgrade-notice,
17 .custom-fields_page_acf-settings-updates .notice {
18 flex: 1 1 100%;
19 }
20
21 /*---------------------------------------------------------------------------------------------
22 *
23 * ACF Box
24 *
25 *---------------------------------------------------------------------------------------------*/
26 .acf-settings-wrap.acf-updates {
27
28 .acf-box {
29 margin: {
30 top: 0;
31 right: 0;
32 bottom: 0;
33 left: 0;
34 };
35
36 .inner {
37 padding: {
38 top: 24px;
39 right: 24px;
40 bottom: 24px;
41 left: 24px;
42 };
43 }
44
45 @media screen and (max-width: $md) {
46 flex: 1 1 100%;
47 }
48
49 }
50
51 }
52
53 /*---------------------------------------------------------------------------------------------
54 *
55 * Notices
56 *
57 *---------------------------------------------------------------------------------------------*/
58 .acf-settings-wrap.acf-updates {
59
60 .acf-admin-notice {
61 flex: 1 1 100%;
62 margin: {
63 top: 16px;
64 right: 0;
65 left: 0;
66 };
67 }
68
69 }
70
71 /*---------------------------------------------------------------------------------------------
72 *
73 * Update information table
74 *
75 *---------------------------------------------------------------------------------------------*/
76 #acf-update-information {
77 flex: 1 1 35%;
78 max-width: calc(35% - 32px);
79
80 .form-table {
81
82 th,
83 td {
84 padding: {
85 top: 0;
86 right: 0;
87 bottom: 24px;
88 left: 0;
89 };
90 @extend .p4;
91 color: $gray-700;
92 }
93
94 }
95
96 .acf-update-changelog {
97 margin: {
98 top: 8px;
99 bottom: 24px;
100 };
101 padding: {
102 top: 8px;
103 };
104 border-top: {
105 width: 1px;
106 style: solid;
107 color: $gray-200;
108 };
109 color: $gray-700;
110
111 h4 {
112 margin: {
113 bottom: 0;
114 };
115 }
116
117 p {
118 margin: {
119 top: 0;
120 bottom: 16px;
121 };
122
123 &:last-of-type {
124 margin: {
125 bottom: 0;
126 };
127 }
128
129 em {
130 @extend .p6;
131 color: $gray-500;
132 }
133
134 }
135
136 }
137
138 .acf-btn {
139 display: inline-flex;
140 }
141
142 }