forked from vbeskrovnov/obsidian-contacts
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
71 lines (60 loc) · 1.17 KB
/
styles.css
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
.contact-card {
border: 1px solid var(--background-modifier-border);
margin-bottom: 15px;
padding: 8px;
cursor: pointer;
}
.contact-card .name {
font-size: 1.1em;
margin-bottom: 5px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.contact-card .lastContact {
font-size: 0.8em;
}
.vl {
border-left: 1px solid;
height: 20px;
margin: 4px 3px 0 3px;
}
.workspace-leaf-content[data-type='contacts-view'] .view-content {
padding-top: 0;
}
/**
* Styling for the settings area so that the text area fills the available space.
*/
.settingsTemplateRow {
display: flex;
justify-content: start;
flex-direction: column;
align-items: flex-start;
position: relative;
}
.settingsTemplateRow .setting-item-control {
width: 100%;
margin: 1rem 0 0;
flex: 1 auto;
}
.settingsTemplateRow .setting-item-info {
flex: 0 1 auto;
}
.settingsTemplateRow textarea {
width: 100%;
height: 100%;
}
.settingsTemplate {
display: flex;
justify-content: start;
flex-direction: column;
}
.settingsTemplate .settingsTemplateRow {
flex: 1 auto;
}
.settingsTemplateRow .settingsTemplateButton {
position: absolute;
top: 1rem;
right: 0;
cursor: pointer;
}