photools.com Community

IMatch Discussion Boards => IMatch Scripting and Apps => Topic started by: Mario on January 13, 2018, 01:50:25 PM

Title: Pinboard App Improvements
Post by: Mario on January 13, 2018, 01:50:25 PM
Based on the feedback of users (e.g., ubacher or Arthur) in the 2017.13.2 thread (https://www.photools.com/community/index.php?topic=7639.0) I've made some improvements on the Pinboard app for the next release. For handling hidden elements, <tab> for moving the focus etc.

I'll keep the Release Notes up-to-date (https://www.photools.com/release-notes/) while I enhance the app. Keep the feedback coming in the appropriate feature request board.
Title: Re: Pinboard App Improvements
Post by: Menace on January 13, 2018, 08:39:25 PM
Can I change the background of the pinboard-App in a nonpinboard black or grey color?
Title: Re: Pinboard App Improvements
Post by: Mario on January 13, 2018, 08:48:51 PM
Yes. You mean removing the "cork" background?
I have prepared the app for "theming" but not implemented any user interface for it.

The background is controlled via the CSS file

C:\ProgramData\photools.com\IMatch6\webroot\imatch\apps\pinboard\styles\themes\default\theme.css

Open this file in a proper text editor and then change this:


body {
    padding:0;
    margin:0;
    background: url(images/background-2.jpg);   
}

to

body {
    padding:0;
    margin:0;
    background: url(images/background-1.jpg);   
}


to get

(https://www.photools.com/community/index.php?action=dlattach;topic=7648.0;attach=17397;image)

or

body {
    padding:0;
    margin:0;
    background-color: #000
}

(solid black background color).


Note: These changes will be overwritten when you install a new version of IMatch.
Title: Re: Pinboard App Improvements
Post by: Menace on January 14, 2018, 11:04:06 AM
Cool. Thank you a lot, Mario.