summaryrefslogtreecommitdiff
path: root/data/ui/style.css
blob: 01c94bb81edccca6f71e1bec0f8e2327f0962936 (plain)
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
120
121
122
123
124
125
126
127
128
129
/*
 * GNOME Contacts
 */

ContactsListPane.frame:dir(ltr) {
  border-width: 0 1px 0 0;
}

ContactsListPane.frame:dir(rtl) {
  border-width: 0 0 0 1px;
}

.contacts-map {
    background-color: @theme_bg_color;
}

/* The contacts in the left pane */
.contacts-contact-list {
  background-color: transparent;
}

/* A single row in the contact list pane */
row.contact-data-row {
  border-color: @borders;
  border-style: groove;
  border-bottom-width: 1px;
}

/* Background color in contacts pane, similar to .documents-main-view.view */
.contacts-main-view.view {
  background-color: mix(@theme_bg_color, @theme_base_color, 0.2);
}

.contacts-suggestion {
  border-top: 1px solid @borders;
  background-color: shade(@theme_bg_color, 0.9);
}

/* Border on the right in the left menu toolbar */
.contacts-left-header-bar:dir(ltr) {
 border-right-width: 1px;
}

.contacts-left-header-bar:dir(rtl) {
 border-left-width: 1px;
}

.contacts-left-header-bar:dir(ltr),
.contacts-right-header-bar:dir(rtl) {
  border-top-right-radius: 0;
}

.contacts-right-header-bar:dir(ltr),
.contacts-left-header-bar:dir(rtl) {
  border-top-left-radius: 0;
}

.contacts-avatar-frame.frame {
  padding: 0;
}

.main-avatar-frame border {
  border-width: 0;
}

/* Give the avatar in the ContactSheet some margin,
 * so it doesn't jump when switching to the editor. */
.contacts-contact-sheet .main-avatar-frame {
  margin: 4px 8px;
}

/* Primary toolbar with no line at top to avoid conflicts with frame border */
ContactsWindow .primary-toolbar.toolbar {
 border-width: 0;
 border-bottom-width: 1px;
 border-style: solid;
 border-color: @borders;
}

.contacts-entry {
 box-shadow: none;
 border-image: none;
 border-width: 1px;
 border-radius: 4px;
 border-style: solid;
 border-color: @borders;
}

.contacts-entry:selected,
.contacts-entry:selected:focus {
 background-color: @theme_selected_bg_color;
 color: @theme_selected_fg_color;
}

.contacts-entry.contacts-postal-entry {
 border-radius: 0 0 0 0;
 border-width: 1px 1px 0 1px;
}

.contacts-entry.contacts-postal-entry:nth-child(first) {
 border-radius: 4px 4px 0 0;
}

.contacts-entry.contacts-postal-entry:nth-child(last) {
 border-radius: 0 0 4px 4px;
 border-width: 1px;
}

.button.contacts-square {
 padding: 0px;
}

.contacts-combo .button {
 border-image: none;
 border-width: 1px;
 border-style: solid;
 border-color: @borders;
 background-image: none;
 background-color: @theme_base_color;
}

.contacts-watermark {
  color: #bebebe;
  text-shadow: 1px 1px alpha(@theme_base_color, 0.6);
}

.contacts-avatar-popover .contact-display-name {
  font-size: 20px;
}