Switch to unified view

a/src/sampleconf/recoll.qss b/src/sampleconf/recoll.qss
...
...
23
23
24
   If you do want to use it, and encounter a difficulty due to (lack of)
24
   If you do want to use it, and encounter a difficulty due to (lack of)
25
   widget object names or whatever, please get in touch, I'll fix what
25
   widget object names or whatever, please get in touch, I'll fix what
26
   needs to be.
26
   needs to be.
27
27
28
   Please check http://developer.qt.nokia.com/doc/qt-4.8/stylesheet.html 
29
   for Qt style sheet information.
28
*/
30
*/
29
31
32
33
/* Use a light grey background by default (lighter than the usual qt
34
   default):
35
*/
30
36
31
* {
37
* {
32
    background: #eeeeee;
38
    background: #eeeeee;
33
}
39
}
34
40
41
/* Use a light yellow background for all text display areas: */
42
35
QComboBox[editable="true"], QTextEdit, QLineEdit, QTextBrowser, QTableView { 
43
QComboBox[editable="true"], QTextEdit, QLineEdit, QTextBrowser, QTableView { 
36
    background: #ffffee;
44
    background: #ffffee;
37
}
45
}
38
46
39
47
/* Keep a white background for the QTextEdit inside the Preview window 
48
   This is rather arbitrary, just to show how to do it:
49
*/
40
Preview QTextEdit { 
50
Preview QTextEdit { 
41
    background: white;
51
    background: white;
42
    font-family: Serif;
52
    font-family: Serif;
43
    font-size: 12pt;
53
    font-size: 12pt;
44
}
54
}