File: application.css

package info (click to toggle)
gnome-shell-extension-gsconnect 54-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,132 kB
  • sloc: javascript: 27,572; xml: 332; python: 117; sh: 97; makefile: 16
file content (127 lines) | stat: -rw-r--r-- 2,042 bytes parent folder | download
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

/**
 * Chrome/Firefox buttons in Settings Window
 */
.badge-button {
  border: 0px;
  padding: 0px;
  background: transparent;
}


/**
 * Placeholders
 */
.placeholder {
  background: @content_view_bg_color;
  margin-bottom: 30px;
}

.placeholder-image {
  margin-bottom: 16px;
  opacity: 0.5;
}

.placeholder-title {
  font-size: larger;
  font-weight: bold;
  margin-bottom: 3px;
  opacity: 0.5;
}

.placeholder-description {
  font-size: smaller;
  opacity: 0.5;
}


/**
 * GSConnectContactChooser
 */
.contact-window {
  border-top: 1px solid @borders;
}

.contact-list row {
  padding: 0px;
}


/**
 * GSConnectConversationWidget
 */
.message-scrolled {
  border-bottom: 1px solid @borders;
}

/**
 * GSConnectMessagingWindow
 */
.message-list > label {
  font-size: small;
  margin-bottom: 1em;
}

.thread-list {
  background: @content_view_bg_color;
}

/**
 * Incoming Message Bubbles (GtkLabel subclass)
 */
.message-in {
  color: @theme_fg_color;
  background: alpha(@theme_selected_bg_color, 0.2);
  border: 1px solid alpha(@theme_selected_bg_color, 0.2);
  border-radius: 5px;
  box-shadow: 2px 2px 3px -2px rgba(0, 0, 0, 0.75);
  padding: 6px 9px 6px 9px;
}

.message-in selection {
  color: @theme_selected_bg_color;
  background-color: @theme_selected_fg_color;
}


/**
 * Outgoing Message Bubbles (GtkLabel subclass)
 */
.message-out {
  color: @theme_fg_color;
  background-color: @theme_bg_color;
  border: 1px solid alpha(@theme_fg_color, 0.1);
  border-radius: 5px;
  box-shadow: 2px 2px 3px -2px rgba(0, 0, 0, 0.75);
  caret-color: currentColor;
  -gtk-secondary-caret-color: currentColor;
  padding: 6px 9px 6px 9px;
}

.message-out selection {
  background-color: @theme_selected_bg_color;
  color: @theme_selected_fg_color;
}

/**
 * Must contrast with message background
 */
.message-in *:link,
.message-out *:link {
  color: @theme_fg_color;
}

/**
 * Special case for pending messages
 */
.message-pending .message-out {
  opacity: 0.5;
}

/**
 * Error Dialog
 */
.error-stack-frame > * {
  border-top-width: 0;
}