File size: 1,445 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/* stylelint-disable scales/radii */
.quick-post-input {
	margin: 20px;

	&--loading {
		text-align: center;
		padding: 24px;
	}

	&__fields {
		margin-bottom: 16px;
	}

	&__site-select-wrapper {
		margin-bottom: 16px;
		display: flex;
		justify-content: space-between;
		align-items: end;
		gap: 10px;

		.sites-dropdown {
			flex: 0 1 300px;

			.sites-dropdown__wrapper {
				border-color: var( --color-border-subtle );
				border-radius: 6px 6px 0 0;
			}
		}

		.site-selector {
			border-color: var( --color-border-subtle );
			border-radius: 0 0 6px 6px;
		}
	}

	&__actions {
		display: flex;
		justify-content: flex-end;
		gap: 8px;
	}

	&__success-message {
		padding-left: 5px;
		color: rgb( 0, 128, 0 );
		display: flex;
		align-items: center;
		opacity: 0;
		transition: opacity 0.3s ease-in-out;

		&.is-visible {
			opacity: 1;
		}

		p {
			margin: 0;
		}
	}

	.verbum-editor-wrapper {
		.editor__header {
			border-color: var( --color-border-subtle );
			border-style: solid;
			border-radius: 6px 6px 0 0;
			border-width: 1px;
			border-bottom-width: 0;
		}

		.block-editor-block-contextual-toolbar {
			background-color: transparent;
		}

		.editor__main {
			border-color: var( --color-border-subtle );
			border-style: solid;
			border-radius: 0 0 6px 6px;
			border-width: 1px;
			border-top-width: 0;
		}
	}

	.verbum-editor-wrapper .editor__main,
	.verbum-editor-wrapper .editor__main iframe {
		min-height: 80px;
	}
}