ページ 1 / 1
スクロールバーアローの表示(firefoxなど)
Posted: 2014年8月09日(土) 16:07
by tomom
ファイラなどではスクロールバーアローが表示されるようですが、firefoxやエディタでは表示されません。
どこか設定やカスタマイズ方法などがあれば、お教えいたたければ幸いです。
よろしくお願いします。
19:22追記
Linux Mint 17 Cinnamon 64-bit
Cinnamon 2.2.13
カーネル 3.13.0-24-generic
Intel Core2 Quad CPU Q9450 2.66GHz x 4
メモリ 3.9GB
HDD 72.7GB
グラフィックカード Intel 82G33/G31 Expresse Integrated Graphics Controller
Re: 追記 スクロールバーアローの表示(firefoxなど)
Posted: 2014年8月12日(火) 12:30
by tomom
http://forums.linuxmint.com/viewtopic.php?f=42&t=174010
を参考に
Open “ /usr/share/themes/Mint-X/gtk-2.0/gtkrc ” (minus quotes), either make a backup copy of this file or write down the changes you make.
Scroll down and find these entries, they start on line 65:
コード: 全て選択
GtkScrollbar::has-backward-stepper = 1 Change from 0 to 1 (Up arrow)
GtkScrollbar::has-forward-stepper = 1 Change from 0 to 1 (Down arrow)
GtkScrollbar::min-slider-length = 30 Leave alone
GtkScrollbar::slider-width = 28 Change from 14 to 28 (Scrollbar width)
GtkScrollbar::trough-border= 0 Leave alone
GtkScrollbar::activate-slider = 1 Leave alone
を書き換えましたが、反映されなかったので、
http://askubuntu.com/questions/389481/h ... amon-theme
の
Make /usr/share/themes/Adwaita/gtk-3.0/gtk.css look like this (If the top line IS NOT THE SAME, just add the bit after .scrollbar):
コード: 全て選択
@import url("resource:///org/gnome/adwaita/gtk-main.css");
.scrollbar {
-GtkScrollbar-has-backward-stepper: 1;
-GtkScrollbar-has-forward-stepper: 1;
-GtkRange-slider-width: 15;
-GtkRange-stepper-size: 20;
}
This worked for me - Thanks!
You might need to do it to /usr/share/themes/Adwaita/gtk-3.0/gtk-dark.css as well (Again, If the top line IS NOT THE SAME, just add the bit after .scrollbar):
コード: 全て選択
@import url("resource:///org/gnome/adwaita/gtk-main-dark.css");
.scrollbar {
-GtkScrollbar-has-backward-stepper: 1;
-GtkScrollbar-has-forward-stepper: 1;
-GtkRange-slider-width: 15;
-GtkRange-stepper-size: 20;
}
を変更しましたが、変化がありません。
https://bbs.archlinux.org/viewtopic.php?pid=1226488
の
I ended up putting the following in ~/.config/gtk-3.0/gtk.css
コード: 全て選択
.scrollbar {
-GtkScrollbar-has-backward-stepper: 1;
-GtkScrollbar-has-forward-stepper: 1;
-GtkRange-slider-width: 15;
-GtkRange-stepper-size: 20;
}
も試しましたが、変更されませんでした。
書き換えるファイルが違うのだと思いますが、どこを書き換えればいいのでしょうか?
日本語でのドキュメントが探し方が悪いのか見当たらないのですが、探し方のヒントなどあれば宜しくお願いします。