aboutsummaryrefslogtreecommitdiff
path: root/gtk-3.0.css
diff options
context:
space:
mode:
authorMax Christian Pohle2018-10-22 00:02:58 +0200
committerMax Christian Pohle2018-10-22 20:42:25 +0200
commitf2e01d7e513067ddb57c75f6e38cdcf434946cf8 (patch)
tree4e8448506756d2144db173d01385798840507133 /gtk-3.0.css
parent31f80d9c334e38e486545407ea5eb5f5cbb2f07d (diff)
downloadvim-f2e01d7e513067ddb57c75f6e38cdcf434946cf8.tar.bz2
vim-f2e01d7e513067ddb57c75f6e38cdcf434946cf8.zip
Major refactoring for version 2.0
vim-plug has been removed and replaced with Vims internal bundle mechanism. But I already noticed, that there is also GLVM now and started trying that as well.
Diffstat (limited to 'gtk-3.0.css')
-rw-r--r--gtk-3.0.css117
1 files changed, 0 insertions, 117 deletions
diff --git a/gtk-3.0.css b/gtk-3.0.css
deleted file mode 100644
index f347a83..0000000
--- a/gtk-3.0.css
+++ /dev/null
@@ -1,117 +0,0 @@
1/*
2#vim-menubar,
3#vim-menubar #menu,
4#vim-toolbar,
5#vim-gui-drawarea,
6#vim-main-window {
7 color:#6060af;
8 color: #4e4e4e;
9 font-family: "Hasklug Nerd Font Mono", "Source Code Pro for Powerline", "Source Code Pro", "Roboto";
10 font-weight:bold;
11 font-size:8pt;
12 border:0;
13 outline:0;
14}
15
16* {
17 border-width:0px;
18 outline-width:0px;
19 padding:0;
20 margin:0;
21}
22
23#vim-menubar
24{
25 padding-left:1em;
26 border-bottom:2px solid #ffffff;
27}
28
29#vim-menubar>*
30{
31 padding-right:1em;
32 padding-top:.25em;
33 padding-bottom:.25em;
34}
35
36#vim-menubar>*,
37#vim-main-window {
38 background-color:#ffffff;
39 color: #4e4e4e;
40}
41
42menu menuitem:backdrop, menu menuitem:backdrop:hover
43{
44 border:0px;
45}
46*/
47
48window#vim-main-window > box
49{
50 background:#fff;
51 border:2px solid #fff;
52}
53
54/* within window > box ... */
55menubar#vim-menubar {
56 font-family: "monospace", "Hasklug Nerd Font Mono", "Source Code Pro for Powerline", "Source Code Pro", "Roboto";
57 font-weight:bold;
58 font-size:8pt;
59 background: #fff;
60 /* background: linear-gradient(180deg, white 85%, black); */
61}
62
63menubar#vim-menubar menuitem {
64 background:transparent;
65}
66
67menubar#vim-menubar > menuitem {
68 padding:.25em;
69}
70
71menubar#vim-menubar menuitem box {
72 padding:.1em .25em;
73}
74
75menubar#vim-menubar menuitem window
76{
77 margin-top:1em;
78}
79
80/* opened menu (after being clicked) */
81menubar#vim-menubar menuitem window menu {
82 padding:1px;
83 background:linear-gradient(90deg, #ccc, #fff);
84
85}
86
87menubar#vim-menubar menuitem window menu menuitem {
88 padding:0em;
89 margin:0px;
90}
91
92menubar#vim-menubar menuitem window menu menuitem box {
93 background:rgba(255,255,255,.5);
94 padding:.25em;
95 padding-left:1em;
96
97}
98
99menubar#vim-menubar menuitem window menu separator {
100 margin:0;
101 background:#fff;
102 border-top:1px dotted #666;
103}
104
105
106menubar#vim-menubar menuitem:hover {
107 box-shadow:none;
108 background:rgba(0,0,0,.2);
109 color:#000;
110}
111
112
113
114/*
115toolbar button {
116notebook tab {
117*/
..