-
Notifications
You must be signed in to change notification settings - Fork 6
/
stylesheet.css
98 lines (77 loc) · 1.84 KB
/
stylesheet.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
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
.awsm-toggle-switch {
background-image: url("./icons/toggle-off-autorestore-symbolic.svg");
}
.awsm-toggle-switch:checked {
background-image: url("./icons/toggle-on-autorestore-symbolic.svg");
}
/* Restore Session Dialog */
.restore-session-dialog {
width: 30em;
}
/**
* *-tooltip: Adapted from: https://github.com/GSConnect/gnome-shell-extension-gsconnect/blob/master/src/stylesheet.css
*/
.awsm-tooltip {
border-radius: 3px;
min-width: 0;
min-height: 0;
padding: 6px;
}
.awsm-tooltip > StBoxLayout {
spacing: 6px;
}
.awsm-tooltip StIcon {
icon-size: 16px;
}
.awsm-tooltip StLabel {
font-weight: normal;
text-align: left;
}
.awsm-tooltip StLabel:rtl {
text-align: right;
}
.session-menu-section {
max-height:600px;
}
.confirm-before-operate {
color: #F00;
font-weight: bold;
font-style: italic
}
.confirm-before-operate:hover, .confirm-before-operate:focus {
background-color: rgba(255,255,255,0.2);
border: none;
padding: 5px;
}
.button-item > StIcon {
icon-size: 14px;
}
.aws-item-separator {
border-radius: 32px;
padding: 4px;
/*
Remove cycle / border in the background in case everyone think this separator is a clickable button, actually it's just a view-only separator.
https://developer.mozilla.org/en-US/docs/Web/CSS/border
*/
border: none;
}
.aws-item-separator > StIcon {
icon-size: 14px;
}
/**
Add highlight effect when hover over the buttons in the item
Based on https://gitlab.com/bartl/todo-txt-gnome-shell-extension/-/blob/master/stylesheet.css
*/
.aws-item-button {
border-radius: 32px;
padding: 4px;
border: 1px solid #282c2c;
}
.aws-item-button:hover, .aws-item-button:focus {
background-color: rgba(255,255,255,0.2);
border: none;
padding: 5px;
}
.aws-item-button > StIcon {
icon-size: 14px;
}