This file is indexed.

/usr/share/gps/gps.css is in gnat-gps-common 6.1.2016-1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
/*
 * Custom styling for GPS.
 */

/* You can override the default theme colors. Most gtk+ themes are
 * carefully setup so that they do not hard-code colors, but use a number
 * of predefined named colors and shades of them. For instance:
 */
/*
   @define-color base_color black;
   @define-color bg_color #fff;
   @define-color theme_bg_color green;
*/

@define-color middle-gray #888;
@define-color border-gray #666;

@define-color mdi_border_color #ddd;
@define-color local_toolbar_color #f8f8f8;
@define-color notebook_background #ededed;
@define-color toolbar_button_color #555;
@define-color toolbar_button_insensitive_color #aaa;
@define-color inactive_tab_color #666;
@define-color active_tab_color black;
@define-color scrollbar_slider_color #c3c5c6;
@define-color gutter_color grey;
@define-color gutter_background #f8f8f8;

@define-color browser_decoration_color grey;
@define-color browser_decoration_background #f8f8f8;

@define-color completion-border-color shade (@theme_base_color, 0.7);
@define-color completion-selected-color mix(@theme_base_color, @middle-gray, 0.5);
@define-color completion-background-color shade(@theme_base_color, 1.10);
@define-color completion-notes-color mix(shade(@theme_base_color, 1.40), @middle-gray, 0.2);
@define-color completion-notes-text-color mix(@theme_fg_color, @middle-gray, 0.2);

@define-color tooltip-border-color shade (@theme_base_color, 0.7);
@define-color tooltip-background-color mix(shade(@theme_base_color, 1.40), @middle-gray, 0.2);
@define-color tooltip-text-color mix(@theme_fg_color, @middle-gray, 0.2);

* {
   /* Reduce the size of the scroll arrows in notebooks */
   -GtkWidget-scroll-arrow-hlength: 8;
   -GtkWidget-scroll-arrow-vlength: 8;
}
.gps-local-toolbar {  /* local toolbar in the panes/views */
}

*:selected,
*:selected:focused {
    background-color: #B4D5FF;
}

GtkTextView.readonly {
   /* for read-only editors */
   /* background-color: rgb(200,200,200); */
}

.mdi tab GtkLabel, .mdifocused tab GtkLabel {
   color:   @theme_fg_color;
   opacity: 1.0;
}

/*********************
 * Menus
 *********************/

.window-frame {
   /* gtk+ displays a 4px semi-transparent around menus the first time they
    * are displayed. Perhaps this is a resize handle ? */
   box-shadow: none;
}
GtkMenu {
  border: 2px solid mix(@theme_base_color, @mdi_border_color, 0.5);
}

/*********************
 * Panes
 *********************/

.pane-separator {
   background-color: @notebook_background;
   background-image: none;
}

/*********************
 * Notebooks
 *********************/

.notebook.mdi {
  -GtkNotebook-initial-gap: 5;

  background-color: @notebook_background;
  background-image: none;
  border: 1px solid @mdi_border_color;
  border-top-width: 0px;

   /* No space between tabs */
   -GtkNotebook-tab-overlap: 0;
}

GtkNotebook.noTabs {
  /* notebooks with no tabs need borders all around */
  border: 1px solid @mdi_border_color;
}

.notebook.mdi tab GtkLabel {
   font-weight: normal;
   color: @inactive_tab_color;
}

.notebook.mdi.header {
  border: none;
  box-shadow: none;
}

.notebook.mdi tab {
   border-width: 0;
}

.notebook.mdi tab:active {
   background-color: @local_toolbar_color;
   background-image: none;
}

.notebook.mdi GtkEventBox.active-page GtkLabel {
   color: @active_tab_color;
   background-image: none;
}

.notebook.mdi tab:hover {
   background-color: @local_toolbar_color;
}

/* Shenanigans to support tabs-not-on-top */

.notebook.leftTabs, .notebook.rightTabs {
   /* When the MDI tabs are displayed on the left or on the right, we do not
    * want an extra space at the top, before the first tab */
   -GtkNotebook-initial-gap: 0;
}

.notebook.mdi tab.top,
.notebook.mdi tab.bottom {
   padding: 5px 2px 5px 6px;
}

.notebook.mdi tab.left {
   padding: 2px 5px 6px 5px;
}
.notebook.mdi tab.right {
   padding: 6px 5px 2px 5px;
}

.notebook.mdi.leftTabs {
  border-top-width: 1px;
  border-left-width: 0px;
}

.notebook.mdi.rightTabs {
  border-top-width: 1px;
  border-right-width: 0px;
}

.notebook.mdi.bottomTabs {
  border-top-width: 1px;
  border-bottom-width: 0px;
}

.notebook.mdi tab.top {
   border-bottom-width: 1px;
}

.notebook.mdi tab.top:active {
   border: 1px solid @mdi_border_color;
}

.notebook.mdi tab.left:active {
   border: 1px solid @mdi_border_color;
}

.notebook.mdi tab.right:active {
   border: 1px solid @mdi_border_color;
}

.notebook.mdi tab.bottom:active {
   border: 1px solid @mdi_border_color;
}

.notebook.mdi tab.left {
   border-top-width: 0px;
   border-right-width: 1px;
}

.notebook.mdi tab.right {
   border-top-width: 0px;
   border-left-width: 1px;
}

.notebook.mdi tab.bottom {
   border-top-width: 1px;
}

.notebook.mdi.header.top {
  border-bottom: 1px solid @mdi_border_color;
}

.notebook.mdi.header.left {
  border-right: 1px solid @mdi_border_color;
}

.notebook.mdi.header.right {
  border-left: 1px solid @mdi_border_color;
}

.notebook.mdi.header.bottom {
  border-top: 1px solid @mdi_border_color;
}

.notebook.mdi tab:active.top {
   border-top-color: @theme_selected_bg_color;
   border-top-width: 3px;
   border-bottom-width: 0;
}

.notebook.mdi tab:active.left {
   border-left-color: @theme_selected_bg_color;
   border-left-width: 3px;
   border-right-width: 0;
}

.notebook.mdi tab:active.right {
   border-right-color: @theme_selected_bg_color;
   border-right-width: 3px;
   border-left-width: 0;
}

.notebook.mdi tab:active.bottom {
   border-bottom-color: @theme_selected_bg_color;
   border-bottom-width: 3px;
   border-top-width: 0;
}

/**********************
 * Scrollbars
 **********************/

.scrollbar {
/*   background-color: @local_toolbar_color; */

/* Uncomment this to activate scrollbar steppers
  -GtkScrollbar-has-backward-stepper: true;
  -GtkScrollbar-has-forward-stepper: true;
*/

}
.scrollbar.slider {
   background-color: @scrollbar_slider_color;
}

/**********************
 * Toolbars
 **********************/

.toolbar GtkButton {
  padding: 4px;
}

/* Let's condense things in the local toolbars of the views */
.gps-local-toolbar {
   background: @local_toolbar_color;
   border-bottom-width: 1px;
   border-bottom-color: @mdi_border_color;
   margin-bottom: 10px;
   padding: 0px;
}

.gps-editor-status-bar {
   background: @local_toolbar_color;
}

.gps-switches-editor GtkScrolledWindow {
   background: @theme_base_color;
}

.gps-local-toolbar * {
   margin: 0px;
   padding: 2px;
}

.toolbar GtkImage,
.toolbar {
  color: @toolbar_button_color;
}

.toolbar GtkImage:insensitive{
  color: @toolbar_button_insensitive_color;
}

/***************************
 * Search fields
 ***************************/

/* Search and filter fields */
GtkEntry.search {
  border-radius: 3px;
  border-color: transparent;
  border-width: 1px;
  box-shadow: none;
  padding-left: 2px;
}

.completion-list {
   /* The list of possible completions, in a completion entry */
}

#completion-frame {
    border-style:solid;
    border-width:1px;
    border-color: @completion-border-color;
    background-color: @completion-background-color;
    margin: 5px;
    padding: 5px;
}

.window-rounded {
    border-radius: 4px;
}

#completion-scroll {
    margin: 5px;
    padding: 5px;
}

#completion-view {
    background-color: @completion-background-color;
}

#completion-view:selected {
    background-color: @completion-selected-color;
    border-radius: 5px;
    color:@theme_fg_color;
}

#notes-window {
    padding:20px;
    margin:20px;
}

#notes-frame {
    border-color: @completion-border-color;
    background-color: @completion-notes-color;
    padding: 5px;
}

#notes-frame * {
    background-color: @completion-notes-color;
    color: @completion-notes-text-color;
    text-shadow: none;
}

/**********************************
 * Editors
 **********************************/

.gps_gutter {
  background-color: @gutter_background;
  color: @gutter_color;
}

/**********************************
 * Browsers
 **********************************/

.gps_browser_decoration {
  background-color: @browser_decoration_background;
  color: @browser_decoration_color;
}

/**********************************
 * Tooltips
 **********************************/

.tooltip {
   color: @tooltip-text-color;
   text-shadow: none;
   margin: 0;
   border-radius: 0;
   border: 1px solid @tooltip-border-color;
}
.tooltip.background {
   background-color: @tooltip-background-color;
}

.tooltip * {
   padding: 12px;
}

/*
 * Editors
 * Control the color of links displayed in the status bar of editors
 */
/*
-GtkWidget-link-color: @link_color;
-GtkWidget-visited-link-color: @link_color;
*/

/**
 * An example on how to redefine left and right keys so that they navigate
 * up and down in the tree views (instead of just left and right between
 * columns). The best here is to use the default up and down keys though.
 * See also the treemove.py plug-in.
 */

/*
@binding-set gtk-gps-tree-view {
   bind "Right" { "move-cursor" (display-lines, 1) };
   bind "Left" { "move-cursor" (display-lines, -1) };
}
GtkTreeView { gtk-key-bindings: gtk-gps-tree-view; }
*/