Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/code-snippets/css/edit/_gpt.scss

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
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 + .notice {
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 + .code-line-explanation {
36 + display: flex;
37 + cursor: default;
38 + font-size: inherit;
39 + margin: 0;
40 + padding-inline: 6px;
41 + border-inline-start: none;
42 + border-inline-end: none;
43 + border-block-start: 1px solid rgb(0 0 0 / 15%);
44 + border-block-end: 1px solid rgb(0 0 0 / 15%);
45 + border-image-slice: 1;
46 + border-image-width: 1;
47 + border-image-repeat: stretch;
48 + color: #666;
49 + font-style: italic;
50 + font-family: monospace;
51 + gap: 5px;
52 + align-items: center;
53 +
54 + img {
55 + block-size: 1rem;
56 + opacity: 0.7;
57 + }
58 +
59 + .code-line-actions {
60 + cursor: default;
61 + gap: 7px;
62 + display: inline-flex;
63 + margin-inline-start: 5px;
64 + font-family: system-ui;
65 + font-style: normal;
66 +
67 + .commit {
68 + color: #3d9970;
69 + }
70 +
71 + .remove {
72 + color: #b32d2e;
73 + }
74 +
75 + .action {
76 + cursor: pointer;
77 + opacity: 0.6;
78 +
79 + &:hover {
80 + opacity: 1;
81 + }
82 + }
83 + }
84 + }
85 +
86 + .cloud-connect-modal {
87 + .icons-group {
88 + display: flex;
89 + align-items: center;
90 + justify-content: center;
91 +
92 + .dashicons {
93 + inline-size: 50px;
94 + block-size: 50px;
95 + font-size: 50px;
96 + }
97 + }
98 +
99 + .action-buttons {
100 + display: flex;
101 + justify-content: flex-end;
102 + }
103 + }
104 +