aboutsummaryrefslogtreecommitdiff
path: root/views/common/index.css
diff options
context:
space:
mode:
Diffstat (limited to 'views/common/index.css')
-rw-r--r--views/common/index.css29
1 files changed, 29 insertions, 0 deletions
diff --git a/views/common/index.css b/views/common/index.css
new file mode 100644
index 0000000..f9ff24e
--- /dev/null
+++ b/views/common/index.css
@@ -0,0 +1,29 @@
+#titlebar-minimize, #titlebar-close {
+ background-color: transparent;
+ transition: background-color 200ms;
+ border-radius: 10px;
+}
+
+#titlebar-minimize:hover {
+ background-color: rgba(99, 99, 99, .5);
+}
+
+#titlebar-minimize:focus, #titlebar-minimize:active {
+ background-color: rgba(99, 99, 99, .75);
+}
+
+#titlebar-close:hover {
+ background-color: rgba(255, 0, 0, .5);
+}
+
+#titlebar-close:focus, #titlebar-close:active {
+ background-color: rgba(255, 0, 0, .75);
+}
+
+*::selection {
+ background-color: transparent;
+}
+
+*::inactive-selection {
+ background-color: transparent;
+} \ No newline at end of file