This file is indexed.

/usr/share/themes/NumixBlue/gtk-3.0/scss/widgets/_notebook.scss is in numix-blue-gtk-theme 0.54.

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
@import "button";


/**********
 ! Notebook
***********/

@include exports("notebook") {
    .notebook {
        padding: 0;
        border-width: 1px 0 0;
        border-style: solid;
        border-color: border_normal($base_color);
        border-radius: 0;
        @include linear-gradient($base_color);
        background-clip: border-box;
        color: $text_color;

        -GtkNotebook-initial-gap: 0;
        -GtkNotebook-arrow-spacing: 5;
        -GtkNotebook-tab-curvature: 0;
        -GtkNotebook-tab-overlap: 1;
        -GtkNotebook-has-tab-gap: false;

        &.frame { border-width: 1px; }

        &.header {
            border-width: 0;
            background-color: shade($base_color, .9);

            &.frame {
                border-color: border_normal($base_color);

                &.top { border-width: 1px 1px 0 1px; }

                &.right { border-width: 1px 1px 1px 0; }

                &.bottom { border-width: 0 1px 1px 1px; }

                &.left { border-width: 1px 0 1px 1px; }
            }
        }

        GtkViewport {
            border-width: 0;
            background-color: $base_color;
            color: $text_color;
        }

        tab {
            padding: ($spacing + 1px) $spacing * 2;
            border: 1px solid transparent;
            background-color: transparent;
            background-image: none;

            &:active {
                background-color: transparent;
                background-image: none;
            }

            &.top {
                border-bottom-width: 2px;
                border-bottom-right-radius: 0;
                border-bottom-left-radius: 0;

                &:hover {
                    border-bottom-color: alpha($selected_bg_color, 0.3);
                }

                &:active {
                    border-bottom-color: $selected_bg_color;
                }
            }

            &.right {
                border-left-width: 2px;
                border-bottom-left-radius: 0;
                border-top-left-radius: 0;

                &:hover {
                    border-left-color: alpha($selected_bg_color, 0.3);
                }

                &:active {
                    border-left-color: $selected_bg_color;
                }                
            }

            &.bottom {
                border-top-width: 2px;
                border-top-right-radius: 0;
                border-top-left-radius: 0;

                &:hover {
                    border-top-color: alpha($selected_bg_color, 0.3);
                }

                &:active {
                    border-top-color: $selected_bg_color;
                }                
            }

            &.left {
                border-right-width: 2px;
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;

                &:hover {
                    border-right-color: alpha($selected_bg_color, 0.3);
                }

                &:active {
                    border-right-color: $selected_bg_color;
                }
            }

            GtkLabel { color: mix($text_color, $base_color, .3); }

            &.reorderable-page {
                &:hover {
                    background-color: shade($base_color, .85);
                    border-left: 0;
                    border-right: 0;
                    /* using box shadows instead of borders due to slanted edges */
                    box-shadow: inset 0 3px alpha($black, .03), inset 0 2px alpha($black, .03), inset 0 1px alpha($black, .03), inset 1px 0 shade($base_color, .7), inset -1px 0 shade($base_color, .7);
                }

                &:active {
                    background-color: shade($base_color, .9);
                    border-left: 0;
                    border-right: 0;
                    box-shadow: inset 0 3px alpha($black, .03), inset 0 2px alpha($black, .03), inset 0 1px alpha($black, .03), inset 1px 0 shade($base_color, .75), inset -1px 0 shade($base_color, .75);
                }
            }              

            /* close button styling */
            .button { @extend %close_button; }

        }

        .prelight-page {
            &, GtkLabel { color: mix($text_color, $base_color, .15); }
        }

        .active-page {
            &, GtkLabel { color: $text_color; }
        }

    }
}