-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
40 lines (37 loc) · 815 Bytes
/
styles.css
File metadata and controls
40 lines (37 loc) · 815 Bytes
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
.teamsync-calendar-btn {
display: inline-flex;
align-items: center;
background-color: #f3f2f1;
border: 1px solid #e1dfdd;
border-radius: 4px;
padding: 4px 8px;
margin-left: 8px;
cursor: pointer;
font-family: 'Segoe UI', sans-serif;
font-size: 12px;
color: #252423;
transition: background-color 0.2s;
text-decoration: none;
}
.teamsync-calendar-btn:hover {
background-color: #edebe9;
border-color: #d2d0ce;
}
.teamsync-calendar-btn .icon {
margin-right: 4px;
font-size: 14px;
}
/* Tooltip style */
.teamsync-calendar-btn[title]:hover::after {
content: attr(title);
position: absolute;
background: #333;
color: #fff;
padding: 4px 8px;
border-radius: 4px;
font-size: 11px;
white-space: nowrap;
z-index: 1000;
transform: translateY(-100%);
margin-top: -5px;
}