mirror of
https://github.com/xiaoyifang/goldendict-ng.git
synced 2024-11-23 20:14:05 +00:00
4163bce8a2
* Status Bar now available for Scan Popup window as well. * Fixed #13: Eliminated modal box when sound is not available: Instead of modal dialog box we now show the status bar message, with error icon, thus making it visible but not disruptive. * Proper handling of status bar images. * Styling of the status bar in both modes (in Mani Window and in Popup Window).
55 lines
994 B
CSS
55 lines
994 B
CSS
MainWindow #searchPane #translateLine, MainWindow #searchPane #wordList, MainWindow #dictsPane #dictsList
|
|
{
|
|
background: #fefdeb;
|
|
color: black;
|
|
}
|
|
|
|
MainWindow #searchPane #translateLine[noResults="true"]
|
|
{
|
|
background: #febb7d;
|
|
}
|
|
|
|
ArticleView #searchText[noResults="true"]
|
|
{
|
|
background: #febb7d;
|
|
}
|
|
|
|
MainStatusBar #text
|
|
{
|
|
border-top-right-radius: 3px;
|
|
border-top: 1px solid palette(dark);
|
|
border-right: 1px solid palette(dark);
|
|
background: palette(window);
|
|
padding: 2px;
|
|
}
|
|
|
|
MainStatusBar #icon
|
|
{
|
|
border-top: 1px solid palette(dark);
|
|
background: palette(window);
|
|
padding: 2px;
|
|
padding-left: 4px;
|
|
padding-right: 0px;
|
|
}
|
|
|
|
.ScanPopup #outerFrame
|
|
{
|
|
border: 1px solid palette(dark);
|
|
}
|
|
|
|
.ScanPopup MainStatusBar #text
|
|
{
|
|
border-bottom: 1px solid palette(dark);
|
|
}
|
|
|
|
.ScanPopup MainStatusBar[hasImage="false"] #text
|
|
{
|
|
border-left: 1px solid palette(dark);
|
|
}
|
|
|
|
.ScanPopup MainStatusBar #icon
|
|
{
|
|
border-left: 1px solid palette(dark);
|
|
border-bottom: 1px solid palette(dark);
|
|
}
|