PluginProbe
Code Snippets / 3.8.1
Code Snippets v3.8.1
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 / edit / _form.scss

_form.scss in Code Snippets 3.8.1, at css/edit/_form.scss

100 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @use '../common/theme';
2
3 $sidebar-width: 321px;
4 $sidebar-gap: 30px;
5
6 .snippet-form #titlediv #title,
7 .snippet-type-container {
8 border-color: #ccc;
9 block-size: 45px
10 }
11
12 .snippet-type-option {
13 display: flex;
14 align-items: center;
15 justify-content: space-between;
16 flex-flow: row;
17 gap: 2em;
18
19 .small-badge {
20 margin-inline-start: 0.5em;
21 }
22
23 .badge {
24 float: inline-end;
25 }
26 }
27
28
29 .conditions-editor-open {
30 .button.button-large {
31 block-size: 100%;
32 display: flex;
33 align-items: center;
34 gap: 8px;
35 overflow: hidden;
36 border-color: #ccc;
37 padding-block: 6px;
38 padding-inline: 12px;
39 }
40
41 &.no-condition .cond-badge {
42 background: transparent;
43 color: inherit;
44 border: 1px solid currentcolor;
45 }
46
47 &.no-condition:hover .cond-badge {
48 color: #fff;
49 background: theme.$accent;
50 border-color: theme.$accent;
51 }
52 }
53
54 .snippet-form {
55 margin-block-start: 10px;
56 display: grid;
57 gap: $sidebar-gap;
58 grid-template-columns: 1fr $sidebar-width;
59 grid-template-areas: 'upper sidebar' 'lower sidebar';
60 transition: all 700ms;
61
62 &.snippet-form-expanded {
63 grid-template-areas: 'upper upper' 'lower sidebar';
64 }
65
66 .snippet-form-upper {
67 grid-area: upper;
68 }
69
70 .snippet-form-lower {
71 grid-area: lower;
72 }
73
74 .snippet-editor-sidebar {
75 grid-area: span 3 / sidebar;
76 max-inline-size: $sidebar-width;
77 position: sticky;
78 inset-block-start: 32px;
79 align-self: start;
80 }
81
82 @media (width <= 1024px) {
83 grid-template-columns: 1fr;
84 }
85
86 h2, h3 {
87 margin-block: 25px 15px;
88 margin-inline: 0;
89 font-size: 1.16em;
90
91 label {
92 cursor: auto;
93 }
94
95 .button {
96 font-weight: normal;
97 }
98 }
99 }
100