File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
gtk-applications-css/nautilus Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ build: clean
10
10
# Replace conditional stuff. For example, see the definition
11
11
# for "flowboxchild:selected image" in nautilus/Adwaita.css.
12
12
# The way this works is we have an existing commented line
13
- # which ends with the embedded comment "/ * Make: GTK3 only */"
14
- # for GTK 3 (and 4 for GTK4). Thus, we just need to remove the
15
- # starting "/*" to uncomment the line / code, the comment end
16
- # is already handled due to embedded comment start .
17
- ls gtk3-* .css | xargs sed -i " s|^\(\s*\)\(/\*\)\(.*\)\(/ \* Make: GTK3 only \*/\)$|\1\3\4|"
18
- ls gtk4-* .css | xargs sed -i " s|^\(\s*\)\(/\*\)\(.*\)\(/ \* Make: GTK4 only \*/\)$|\1\3\4|"
13
+ # which ends with the embedded comment "* Make: GTK3 only */"
14
+ # for GTK 3 (and 4 for GTK4). Note the missing starting slash,
15
+ # that's because we can't have nested comments in CSS for some
16
+ # reason. We need to add it ourselves when uncommenting line .
17
+ ls gtk3-* .css | xargs sed -i ' s|^\(\s*\)\(/\*\)\(.*\)\(\* Make: GTK3 only \*/\)$$ |\1\3/ \4|'
18
+ ls gtk4-* .css | xargs sed -i ' s|^\(\s*\)\(/\*\)\(.*\)\(\* Make: GTK4 only \*/\)$$ |\1\3/ \4|'
19
19
20
20
for COLOR in $( COLOR_VARIANTS) ; \
21
21
do \
Original file line number Diff line number Diff line change @@ -225,7 +225,7 @@ entry.search > * {
225
225
226
226
/* Icon view */
227
227
flowbox {
228
- padding : 18px
228
+ padding : 18px ;
229
229
}
230
230
231
231
flowboxchild {
@@ -258,6 +258,6 @@ flowboxchild:selected .icon-ui-labels-box {
258
258
flowboxchild : selected image {
259
259
-gtk-icon-shadow : 0px 0px @theme_selected_bg_color ;
260
260
/* In the Makefile, we will uncomment the following appropriately. */
261
- /* -gtk-icon-effect: dim; / * Make: GTK3 only */
262
- /* -gtk-icon-filter: opacity(0.5); / * Make: GTK4 only */
261
+ /* -gtk-icon-effect: dim; * Make: GTK3 only */
262
+ /* -gtk-icon-filter: opacity(0.5); * Make: GTK4 only */
263
263
}
You can’t perform that action at this time.
0 commit comments