PluginProbe
Code Snippets / 3.10.0
Code Snippets v3.10.0
3.10.2 3.10.1 3.10.0 3.10.0-beta.2 3.10.0-beta.1 4.0.0-beta.1 3.9.6 trunk 2.10.0 2.10.1 2.12.0 2.12.1 2.13.0 2.13.1 2.13.2 2.13.3 2.14.0 2.14.1 2.14.2 2.14.3 2.14.4 2.14.5 2.14.6 3.0.0 3.0.1 All 64 releases
code-snippets / css / common / _checkbox.scss

_checkbox.scss in Code Snippets 3.10.0, at css/common/_checkbox.scss

40 lines 873 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @use 'theme';
2
3 @mixin canonical {
4 appearance: none;
5 display: inline-grid;
6 place-content: center;
7 vertical-align: middle;
8 inline-size: 20px;
9 block-size: 20px;
10 padding: 0;
11 margin: 0;
12 box-sizing: border-box;
13 background: #fff;
14 border: 1.5px solid theme.$control-border;
15 border-radius: 5px;
16 box-shadow: 0 2px 2px rgb(0 0 0 / 5%);
17 cursor: pointer;
18
19 &:focus {
20 outline: 2px solid var(--wp-admin-theme-color);
21 }
22
23 &::before {
24 content: none;
25 }
26
27 &:checked {
28 background: theme.$accent;
29 border-color: theme.$accent;
30
31 &::before {
32 content: '';
33 inline-size: 20px;
34 block-size: 20px;
35 margin: 0;
36 background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M14.83 4.89l1.34.94-5.81 8.38H9.02L5.78 9.67l1.34-1.25 2.57 2.4z' fill='%23fff'/%3E%3C/svg%3E") center/20px no-repeat;
37 }
38 }
39 }
40