Skip to repository content110 lines · 1.8 KB · css
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T00:29:28.860Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
plugins.css
1kbd.keybinding {
2 background-color: var(--keybinding-bg);
3 padding: 4px 4px 6px 4px;
4 border-radius: 4px;
5 font-family: var(--mono-font);
6 display: inline-block;
7 margin: 0 2px;
8}
9
10#copy-markdown-toggle i {
11 font-weight: 500 !important;
12 -webkit-text-stroke: 0.5px currentColor;
13}
14
15.page-header {
16 display: flex;
17 align-items: flex-start;
18 justify-content: space-between;
19 gap: 16px;
20 margin: 0 0 28px;
21}
22
23.page-header h1 {
24 min-width: 0;
25 margin-block: 0;
26}
27
28.page-actions {
29 display: flex;
30 flex: 0 0 auto;
31 gap: 8px;
32 margin-top: 6px;
33}
34
35.page-action {
36 display: inline-flex;
37 align-items: center;
38 gap: 8px;
39 height: 32px;
40 padding: 0 10px;
41 color: var(--fg);
42 background: var(--media-bg);
43 border: 1px solid var(--border);
44 border-radius: 4px;
45 font: inherit;
46 font-size: 1.3rem;
47 line-height: 1;
48 cursor: pointer;
49}
50
51.page-action:hover {
52 color: var(--full-contrast);
53 border-color: var(--border-hover);
54}
55
56.page-action i {
57 width: 14px;
58 text-align: center;
59}
60
61.page-action-icon {
62 width: 32px;
63 padding: 0;
64 justify-content: center;
65}
66
67@media (max-width: 720px) {
68 .page-header {
69 flex-direction: column;
70 gap: 10px;
71 }
72
73 .page-actions {
74 flex-wrap: wrap;
75 margin-top: 0;
76 }
77}
78
79.copy-toast {
80 position: fixed;
81 top: 72px;
82 right: 16px;
83 padding: 12px 16px;
84 border-radius: 4px;
85 font-size: 14px;
86 font-weight: 500;
87 color: var(--fg);
88 background: var(--toast-bg);
89 border: 1px solid var(--toast-border);
90 z-index: 1000;
91 opacity: 0;
92 transform: translateY(-10px);
93 transition: all 0.1s ease-in-out;
94 box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
95 max-width: 280px;
96}
97
98.copy-toast.success {
99 border-color: var(--toast-border-success);
100}
101
102.copy-toast.error {
103 border-color: var(--toast-border-error);
104}
105
106.copy-toast.show {
107 opacity: 1;
108 transform: translateY(0);
109}
110