Ubuntu Pastebin

Paste from Will at Wed, 25 Nov 2015 14:10:32 +0000

Download as text
  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
GeditWindow .pane-separator,
GeditWindow .pane-separator:hover {
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-color: @borders;
    background-color: shade(@theme_bg_color, 0.95);
    color: @borders;
}

GeditOpenDocumentSelector .open-document-selector-treeview:prelight {
    background-color: lighter(@bg_color);
}

/* Only normal state is handle */
.open-document-selector-name-label {
    color: @theme_fg_color;
}

/* Only normal state is handle */
.open-document-selector-path-label {
    color: @theme_unfocused_fg_color;
    font-size: smaller;
}

.gedit-document-panel {
    background-color: @sidebar_bg;
}

 .gedit-document-panel-group-row,
 .gedit-document-panel-group-row:hover {
    border-top: 1px solid shade(@sidebar_bg, 0.90);
    background-color: @sidebar_bg;
}

.gedit-document-panel-document-row:hover {
    background-color: shade(@sidebar_bg, 0.95);
}

.gedit-document-panel-document-row:selected,
.gedit-document-panel-document-row:selected:hover {
    background-color: @theme_selected_bg_color;
}

/* sidepane close button styling (copied from the gtk tab close button) */
/* updated for Ubuntu themes */
.gedit-document-panel .list-row .button {
    color: transparent;
    border-image: none;
    background-image: none;
    background-color: transparent;
    border-radius: 3px;
    border-style: solid;
    border-color: transparent;
    border-width: 1px;
    padding: 10px;
    icon-shadow: none;
}

 .gedit-document-panel .prelight-row .button  {
  color: @theme_fg_color;
    border-color: transparent;
    transition: all 100ms ease-in;
}

 .gedit-document-panel .prelight-row:selected .button  {
  color: @theme_bg_color;
    border-color: transparent;
    transition: all 100ms ease-in;
}

.gedit-document-panel .prelight-row .button:active {
    color:  @button_active_text;
    background-color: alpha(black, 0.08);
    box-shadow: inset 0 1px alpha(black, 0.05);
    icon-shadow: 0 1px @button_active_text_shadow;

    border-color: alpha(black, 0.27)
                  alpha(black, 0.13)
                  alpha(black, 0.13)
                  alpha(black, 0.13);
}

.gedit-document-panel-placeholder-row {
    border: none;
    background-color: mix(@sidebar_bg, @theme_selected_bg_color, 0.20);
    transition: all 200ms ease-in;
}

GeditStatusbar {
    border-top: 1px solid @borders;
}

GeditStatusbar .button.flat {
    border-radius: 0;
    border-bottom: none;
}

GeditViewFrame .gedit-search-slider {
    background-color: @theme_base_color;
    padding: 6px;
    border-color: @borders;
    border-radius: 0 0 3px 3px;
    border-width: 0 1px 1px 1px;
    border-style: solid;
}

.gedit-search-entry-occurrences-tag {
    color: shade (@theme_unfocused_fg_color, 0.8);
    border: 0px;
    margin: 2px;
    padding: 2px;
}

.notebook .button {
  background-color: transparent;
  background-image: none;
  border-image: none;
  border-radius: 3px;
  padding: 10px;
}

.notebook .active-page .button:prelight {
/* focused window, selected tab */
border-color: darker(@bg_color);
background-color: rgb(255,0,0);
padding-top: 10px;
padding-right: 10px;
padding-left: 10px;
padding-bottom: 10px;
}

.notebook .button:prelight {
/* focused window, other tabs*/
border-color: shade(@fg_color,1.5);
background-color: rgb(0,255,0);
padding: 10px;
}

.notebook .active-page .button:prelight:backdrop {
/* backdrop window, selected tab*/
border-color: shade(@bg_color,0.9);
background-color: rgb(0,0,255);
padding: 1px;
}

.notebook .button:prelight:backdrop {
/* backdrop window, other tabs */
border-color: darker(@bg_color);
background-color: rgb(205,200,0);
padding: 1px;

}
Download as text