experimenting with distingwishing dialog types...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2016-12-30 21:24:16 +03:00
parent 98b6ae41bf
commit 00092dabbd
2 changed files with 28 additions and 0 deletions

View File

@ -236,6 +236,32 @@ body {
/* Dialog highlight experiment... */
.browse-widget {
border-bottom: solid 7px rgba(100, 100, 100, 0.5);
}
/*
.light .browse-widget {
border-bottom: solid 7px rgba(100, 100, 100, 0.5);
}
.dark .browse-widget {
border-bottom: solid 7px rgba(100, 100, 100, 0.5);
}
*/
.browse-widget.file-browser {
border-bottom: solid 7px rgba(255, 255, 0, 0.5);
}
/*
.light .browse-widget.file-browser {
border-bottom: solid 7px rgba(255, 255, 0, 0.5);
}
.dark .browse-widget.file-browser {
border-bottom: solid 7px rgba(255, 255, 0, 0.5);
}
*/
/* DEBUG stuff... */
.container-center {
position: absolute;

View File

@ -931,6 +931,8 @@ var FileSystemLoaderUIActions = actions.Actions({
config.showDisabled = o.options.showDisabled
config.showNonTraversable = o.options.showNonTraversable
})
o.dom.addClass('file-browser')
return o
})],