-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
97 lines (84 loc) · 1.7 KB
/
styles.css
File metadata and controls
97 lines (84 loc) · 1.7 KB
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
.workflow-hide-btn {
background-color: transparent;
border: 1px solid #086fff;
border-radius: 4px;
padding: 4px 8px;
font-size: 12px;
cursor: pointer;
color: #086fff;
margin-left: 10px;
transition: background-color 0.2s, color 0.2s;
font-weight: 500;
display: inline-flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 1000; /* Ensure button is above other elements */
}
.workflow-hide-btn:hover {
background-color: rgba(8, 111, 255, 0.1);
}
.workflow-hide-btn:active {
background-color: rgba(8, 111, 255, 0.2);
}
/* Add a more prominent style for the button */
.workflow-hide-btn::before {
content: '';
position: absolute;
top: -2px;
left: -2px;
right: -2px;
bottom: -2px;
border-radius: 6px;
border: 1px solid transparent;
transition: border-color 0.2s;
pointer-events: none;
}
.workflow-hide-btn:hover::before {
border-color: rgba(8, 111, 255, 0.3);
}
/* Style for the popup */
body.popup {
width: 300px;
font-family: Arial, sans-serif;
padding: 15px;
}
.popup h1 {
font-size: 16px;
margin-bottom: 15px;
}
.popup ul {
max-height: 200px;
overflow-y: auto;
margin-bottom: 15px;
padding-left: 20px;
}
.popup button {
background-color: #f0f0f0;
border: 1px solid #ccc;
border-radius: 4px;
padding: 6px 12px;
cursor: pointer;
margin-right: 5px;
margin-bottom: 5px;
}
.popup button:hover {
background-color: #e0e0e0;
}
.popup .empty-message {
font-style: italic;
color: #666;
}
.popup .status-message {
font-size: 14px;
color: #4CAF50;
margin-top: 10px;
text-align: center;
font-weight: bold;
}
.popup .button-container {
display: flex;
flex-direction: column;
gap: 8px;
margin-bottom: 10px;
}