Line
Link Here
|
0 |
-- /a/data/theme/cinnamon.css |
0 |
++ /b/data/theme/cinnamon.css |
Lines 1443-1449
Link Here
|
1443 |
} |
1443 |
} |
1444 |
.applet-box:hover .applet-icon { |
1444 |
.applet-box:hover .applet-icon { |
1445 |
color: #fff; |
1445 |
color: #fff; |
1446 |
icon-shadow: white 0px 0px 3px; |
1446 |
/* Broken with GNOME 3.14 (icon-size is not honoured) |
|
|
1447 |
* icon-shadow: white 0px 0px 3px;*/ |
1447 |
} |
1448 |
} |
1448 |
|
1449 |
|
1449 |
/* =================================================================== |
1450 |
/* =================================================================== |
1450 |
-- /a/files/usr/lib/cinnamon-settings/modules/cs_themes.py |
1451 |
++ /b/files/usr/lib/cinnamon-settings/modules/cs_themes.py |
Lines 245-251
Link Here
|
245 |
|
245 |
|
246 |
def _load_icon_themes(self): |
246 |
def _load_icon_themes(self): |
247 |
dirs = ("/usr/share/icons", os.path.join(os.path.expanduser("~"), ".icons")) |
247 |
dirs = ("/usr/share/icons", os.path.join(os.path.expanduser("~"), ".icons")) |
248 |
valid = walk_directories(dirs, lambda d: os.path.isdir(d) and not os.path.exists(os.path.join(d, "cursors")) and os.path.exists(os.path.join(d, "index.theme"))) |
248 |
valid = walk_directories(dirs, lambda d: os.path.isdir(d) and os.path.exists(os.path.join(d, "index.theme"))) |
249 |
valid.sort(lambda a,b: cmp(a.lower(), b.lower())) |
249 |
valid.sort(lambda a,b: cmp(a.lower(), b.lower())) |
250 |
res = [] |
250 |
res = [] |
251 |
for i in valid: |
251 |
for i in valid: |