From 152db3184d26d48b0ac476637a15d356ebea0d41 Mon Sep 17 00:00:00 2001 From: Tavmjong Bah Date: Mon, 18 Dec 2017 14:54:11 +0100 Subject: Reduce with of +/- buttons. Reduce width of Fill and Stroke dialog. --- share/ui/style.css | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'share') diff --git a/share/ui/style.css b/share/ui/style.css index 7c3487673..7774ab30e 100644 --- a/share/ui/style.css +++ b/share/ui/style.css @@ -96,5 +96,17 @@ combobox window.popup scrolledwindow treeview separator { /* Keep pallete scrollbar from generating warnings. */ #PreviewHolderScrolledWindow .vertical slider { - min-height: 15px; + min-height: 15px; +} + +/* Reduce width of Fill and Stroke dialog */ +#ColorModeButton { + padding-left: 0; + padding-right: 0; +} + +/* Reduce width of +/- buttons. */ +.up, .down { + padding-left: 0; + padding-right: 0; } -- cgit v1.2.3 From 9ceb238f8a4f5527c3621740e75713ea79eceebc Mon Sep 17 00:00:00 2001 From: Tavmjong Bah Date: Mon, 18 Dec 2017 15:50:42 +0100 Subject: Replace GimpSpinScale by InkSpinScale. --- share/ui/style.css | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'share') diff --git a/share/ui/style.css b/share/ui/style.css index 7774ab30e..ff353ebfe 100644 --- a/share/ui/style.css +++ b/share/ui/style.css @@ -110,3 +110,24 @@ combobox window.popup scrolledwindow treeview separator { padding-left: 0; padding-right: 0; } + +/* InkSpinScale */ +#InkSpinScale { + background: #eee; + border-color: #999; + border-style: solid; + border-width: 1px; + border-radius: 3px; +} + +#InkSpinScale spinbutton { + border-color: #eee; + border-width: 0 0 0 1px; + border-radius: 0 3px 3px 0; + box-shadow: none; + padding: 0 0 0 1px; +} + +#InkSpinScale box.active { + box-shadow: 0 0 0 1px rgb(74,144,217); +} -- cgit v1.2.3 From 0462e9143d161a3c7d6077d9f40dcfd13ca27493 Mon Sep 17 00:00:00 2001 From: Tavmjong Bah Date: Tue, 19 Dec 2017 20:18:14 +0100 Subject: Replace the Gtk::Range by Gtk::Scale in the InkSpinScale widget. The Gtk::Scale is more likely to produce a satisfactory result independent of theme. --- share/ui/style.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) (limited to 'share') diff --git a/share/ui/style.css b/share/ui/style.css index ff353ebfe..190aa9f53 100644 --- a/share/ui/style.css +++ b/share/ui/style.css @@ -118,6 +118,7 @@ combobox window.popup scrolledwindow treeview separator { border-style: solid; border-width: 1px; border-radius: 3px; + padding: 0px; } #InkSpinScale spinbutton { @@ -128,6 +129,25 @@ combobox window.popup scrolledwindow treeview separator { padding: 0 0 0 1px; } +/* Hide slider */ +#InkSpinScale slider { + background: none; + border: none; + outline: none; + min-width: 0px; + min-height: 0px; + padding: 0px; + margin: 0px; +} + +#InkSpinScale scale { + padding: 2px; +} + +#InkSpinScale trough { + min-height: 24px; +} + #InkSpinScale box.active { box-shadow: 0 0 0 1px rgb(74,144,217); } -- cgit v1.2.3 From fafdbf5b15257d50a3810d1ef1ad546ce8cb1c90 Mon Sep 17 00:00:00 2001 From: Eduard Braun Date: Fri, 22 Dec 2017 17:36:08 +0100 Subject: Remove inkscape.file.svg (and inkscape.file.png) It was added in 8aeb053f557456d83b60acdcf1446a6825a5aef6 but seems to have never been used. It was only referenced in inkscape.nsi (where it's not required) which broke when the file was moved in ce456d55bb3deee828dad9cdaf1f530194cae93c --- .../hicolor/scalable/actions/inkscape.file.svg | 178 --------------------- share/icons/inkscape.file.png | Bin 1994 -> 0 bytes 2 files changed, 178 deletions(-) delete mode 100644 share/icons/hicolor/scalable/actions/inkscape.file.svg delete mode 100644 share/icons/inkscape.file.png (limited to 'share') diff --git a/share/icons/hicolor/scalable/actions/inkscape.file.svg b/share/icons/hicolor/scalable/actions/inkscape.file.svg deleted file mode 100644 index 5803d94bf..000000000 --- a/share/icons/hicolor/scalable/actions/inkscape.file.svg +++ /dev/null @@ -1,178 +0,0 @@ - - -Inkscape Filetype Icon - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -image/svg+xml - - - -Andy Fitzsimon - - - - -Andrew Michael Fitzsimon - - - - -Fitzsimon IT Consulting Pty Ltd - - -http://andy.fitzsimon.com.au -2006 - -Inkscape Filetype Icon - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/share/icons/inkscape.file.png b/share/icons/inkscape.file.png deleted file mode 100644 index df5b7e44a..000000000 Binary files a/share/icons/inkscape.file.png and /dev/null differ -- cgit v1.2.3