CARLI / vufind

A library resource discovery portal designed and developed for libraries by libraries
GNU General Public License v2.0
5 stars 0 forks source link

add whitespace between "add search group" and local catalog/I-Share choice box #122

Open gibsonjc opened 8 years ago

gibsonjc commented 8 years ago

MIL - initially I thought the “add search group” was about which catalogs to search, because of its proximity on the screen to the “local catalog only” dropdown. Can a bit more separation be introduced there? screen shot 2016-07-01 at 10 08 38 am

eschell commented 8 years ago

if you change the style '#groupPlaceHolder'

from

groupPlaceHolder {

display: block;
padding: 6px;

}

to

groupPlaceHolder {

display: block;
padding: 6px 0 30px 0;

} The 30px is adding padding after the 'Add Search Group'

It doesn't look like that ID is used elsewhere on the page but I don't know if it's used elsewhere.