-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSchemaCreator.css
More file actions
119 lines (103 loc) · 2.24 KB
/
SchemaCreator.css
File metadata and controls
119 lines (103 loc) · 2.24 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
.creator-modal {
max-width: 600px !important;
background: var(--bg-dark) !important;
border: 1px solid var(--primary-glow) !important;
box-shadow: 0 0 50px rgba(59, 130, 246, 0.2) !important;
display: flex !important;
flex-direction: column !important;
}
.creator-error {
background: rgba(239, 68, 68, 0.1);
border: 1px solid rgba(239, 68, 68, 0.3);
color: #fb7185;
padding: 1rem;
border-radius: var(--radius-sm);
margin-bottom: 2rem;
font-weight: 500;
}
.columns-header {
margin-bottom: 1.5rem;
}
.columns-title {
font-size: 1.1rem;
font-weight: 700;
}
.columns-subtitle {
color: var(--text-muted);
font-size: 0.8rem;
}
.columns-list {
display: flex;
flex-direction: column;
gap: 1rem;
margin-bottom: 1.5rem;
max-height: 40vh;
overflow-y: auto;
padding-right: 0.5rem;
}
.column-row {
display: flex;
gap: 0.8rem;
animation: slideIn 0.3s var(--transition);
align-items: center;
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateX(-10px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.select-field {
width: 160px !important;
}
.btn-remove {
background: rgba(239, 68, 68, 0.05);
border: 1px solid rgba(239, 68, 68, 0.2);
color: #fb7185;
width: 42px;
height: 42px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s;
flex-shrink: 0;
}
.btn-remove:hover {
background: #fb7185;
color: white;
}
.modal-footer {
padding-top: 1.5rem;
margin-top: 1rem;
border-top: 1px solid var(--glass-border);
}
@media (max-width: 600px) {
.column-row {
flex-wrap: wrap;
/* Stack column inputs on very small screens */
background: rgba(255, 255, 255, 0.03);
padding: 1rem;
border-radius: var(--radius-sm);
position: relative;
}
.column-row .input-field {
width: 100%;
}
.column-row .select-field {
width: 100% !important;
}
.btn-remove {
position: absolute;
top: -0.5rem;
right: -0.5rem;
width: 30px;
height: 30px;
border-radius: 50%;
}
}