PluginProbe
Code Snippets / 3.10.1
Code Snippets v3.10.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 / _gpt.scss

_gpt.scss in Code Snippets 3.10.1, at css/edit/_gpt.scss

112 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .cloud-create-modal {
2 .components-modal__content {
3 min-inline-size: 550px;
4 }
5
6 .action-buttons {
7 display: flex;
8 justify-content: flex-end;
9 }
10
11 .components-button.is-secondary {
12 box-shadow: none;
13 }
14
15 .banner {
16 margin-inline: 0;
17 }
18 }
19
20 .generate-button {
21 display: flex;
22 align-items: center;
23 gap: 5px;
24
25 .dashicons-warning {
26 color: #b32d2e;
27 }
28
29 .snippet-tags-container &,
30 .snippet-description-container & {
31 float: inline-end;
32 }
33 }
34
35 .snippet-tags-container {
36 label {
37 font-size: 1.16em;
38 font-weight: 600;
39 text-transform: unset;
40 }
41 }
42
43 .code-line-explanation {
44 display: flex;
45 cursor: default;
46 font-size: inherit;
47 margin: 0;
48 padding-inline: 6px;
49 border-inline-start: none;
50 border-inline-end: none;
51 border-block-start: 1px solid rgb(0 0 0 / 15%);
52 border-block-end: 1px solid rgb(0 0 0 / 15%);
53 border-image-slice: 1;
54 border-image-width: 1;
55 border-image-repeat: stretch;
56 color: #666;
57 font-style: italic;
58 font-family: monospace;
59 gap: 5px;
60 align-items: center;
61
62 img {
63 block-size: 1rem;
64 opacity: 0.7;
65 }
66
67 .code-line-actions {
68 cursor: default;
69 gap: 7px;
70 display: inline-flex;
71 margin-inline-start: 5px;
72 font-family: system-ui;
73 font-style: normal;
74
75 .commit {
76 color: #3d9970;
77 }
78
79 .remove {
80 color: #b32d2e;
81 }
82
83 .action {
84 cursor: pointer;
85 opacity: 0.6;
86
87 &:hover {
88 opacity: 1;
89 }
90 }
91 }
92 }
93
94 .cloud-connect-modal {
95 .icons-group {
96 display: flex;
97 align-items: center;
98 justify-content: center;
99
100 .dashicons {
101 inline-size: 50px;
102 block-size: 50px;
103 font-size: 50px;
104 }
105 }
106
107 .action-buttons {
108 display: flex;
109 justify-content: flex-end;
110 }
111 }
112