-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathversion-entry-layout.component.scss
83 lines (70 loc) · 1.19 KB
/
version-entry-layout.component.scss
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
@use "@sbb-esta/angular" as sbb;
.content {
padding: 0.2rem 1rem;
}
.info-fields {
display: grid;
grid-template-columns: 50% 50%;
min-height: 2rem;
}
.info-field {
display: flex;
flex-direction: row;
align-items: center;
margin-right: 2rem;
> sbb-icon {
margin-right: 0.2rem;
}
}
.comment-field {
cursor: pointer;
}
.title-field {
grid-column: 1;
grid-row: 1;
}
.date-field {
grid-column: 2;
grid-row: 1;
width: 100%;
display: flex;
justify-content: flex-end;
}
.comment-field {
grid-column-start: 1;
grid-column-end: span 2;
grid-row: 2;
margin-right: 0;
}
.in-conflict {
background-color: sbb.$sbbColorOrange;
color: white;
border-radius: 5px;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
> hr {
height: 1px;
background-color: white;
border: none;
}
}
.new-added {
border-color: sbb.$sbbColorGreen;
border-style: solid;
border-width: 1px;
border-radius: 5px;
color: sbb.$sbbColorGreen;
> hr {
height: 1px;
background-color: sbb.$sbbColorGreen;
border: none;
}
}
.user-id {
width: 140px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
user-select: none;
cursor: pointer;
}