-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.less
More file actions
114 lines (95 loc) · 1.83 KB
/
index.less
File metadata and controls
114 lines (95 loc) · 1.83 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
@import '../styles/mixins.less';
.create-project-page {
.rt-page__content {
padding-top: @spacing-base;
}
}
.create-project-card {
.el-form {
:deep(.el-form-item) {
margin-bottom: @spacing-lg;
}
:deep(.el-form-item__label) {
justify-content: flex-start;
color: @color-text-secondary;
font-size: @font-size-base;
}
}
}
.create-project-row {
display: flex;
align-items: center;
column-gap: @spacing-lg;
&--name,
&--path,
&--baseline {
// Grid keeps Browse/Create buttons aligned across rows
display: grid;
width: 100%;
grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
align-items: center;
column-gap: @spacing-lg;
}
&--name {
.el-input {
grid-column: 1 / -1;
width: 100%;
min-width: 0;
}
}
&--path {
.el-input {
grid-column: 1 / span 2;
width: 100%;
min-width: 0;
}
}
&--baseline {
.create-project-select {
width: 100%;
min-width: 0;
}
}
}
.create-project-select {
min-width: 220px;
}
.create-project-checkbox {
flex: 1;
}
.create-project-note {
p {
margin: 0 0 @spacing-sm;
color: @color-text-secondary;
}
}
.create-project-board-info {
margin-top: @spacing-lg;
padding-top: @spacing-lg;
border-top: 1px solid @el-border-color-lighter;
.rt-subsection-title {
margin: 0 0 @spacing-sm;
font-size: @font-size-base;
font-weight: 600;
color: @color-text-primary;
}
p {
margin: 0;
line-height: 1.6;
color: @el-text-color-regular;
}
}
.create-project-warning {
margin: 0;
color: @color-warning;
font-weight: 500;
}
.create-project-card :deep(.el-input) {
height: 40px;
}
.create-project-card :deep(.el-checkbox__label) {
font-size: @font-size-base;
}
.create-project-card :deep(.el-button) {
min-width: 100px;
}