~ubuntu-branches/debian/wheezy/stellarium/wheezy

« back to all changes in this revision

Viewing changes to plugins/Satellites/nightStyle.css

  • Committer: Bazaar Package Importer
  • Author(s): Cédric Delfosse
  • Date: 2010-07-31 15:44:02 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100731154402-511dojtyt5ycuizd
Tags: 0.10.5-1
* New upstream release (Closes: #586804)
* Remove 01_fix_pow10_function_check.diff, now applied upstream
* Remove 02_remove_unknown_locale_code.diff, no more needed
* Rendering of `old_style' landscapes fixed by upstream (Closes: #581657)
* Update debian/control:
  - Bump Standards-Version from 3.8.4 to 3.9.0
  - Add libqt4-sql-sqlite to Depends (Closes: #582726)
* Update debian/copyright:
  - Fix FSF address

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
Custom stylesheet for the Telescope Control plug-in,
 
3
based on Stellarium's main stylesheet.
 
4
 
 
5
Styles for the night-vision-friendly "night mode".
 
6
*/
 
7
 
 
8
QTreeView {
 
9
        alternate-background-color: rgba(150, 0, 0, 20%)
 
10
}
 
11
 
 
12
QToolBox {
 
13
        margin-right: 10px;
 
14
        margin-left: 10px;
 
15
        margin-top: 10px;
 
16
        margin-bottom: 10px;
 
17
        background-color: transparent;
 
18
        font-weight: bold;
 
19
}
 
20
 
 
21
QToolBox > QWidget {
 
22
        background-color: rgba(105, 0, 0, 20%);
 
23
}
 
24
 
 
25
QToolBox::tab {
 
26
        padding-left: 10px;
 
27
        background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 rgb(32, 0, 0), stop:1 rgb(23, 0, 0));
 
28
}
 
29
 
 
30
QToolBox::tab:first {
 
31
        border-top-left-radius: 10px;
 
32
        border-top-right-radius: 10px;
 
33
}
 
34
 
 
35
QToolBox::tab:middle {
 
36
        /*border-radius: 10px;*/
 
37
}
 
38
 
 
39
QToolBox::tab:last {
 
40
        border-bottom-left-radius: 10px;
 
41
        border-bottom-right-radius: 10px;
 
42
}
 
43
 
 
44
QToolBox::tab:selected {
 
45
        border-bottom-left-radius: 0px;
 
46
        border-bottom-right-radius: 0px;
 
47
}
 
48
 
 
49
QToolBox::tab::title {
 
50
        image: none;
 
51
        subcontrol-position: top left;
 
52
        subcontrol-origin: margin;
 
53
        color: rgb(122, 0, 0);
 
54
}
 
55
 
 
56
QTabBar {
 
57
        border: none;
 
58
        margin: 0px;
 
59
        padding: 0px;
 
60
        font-weight: bold;
 
61
        color: rgb(120, 0, 0);
 
62
        background-color: rgb(22, 0, 0);
 
63
}
 
64
 
 
65
QTabBar::tab {
 
66
        border: none;
 
67
        margin: 0px;
 
68
        padding: 4px;
 
69
        min-height: 24px;
 
70
        min-width: 0px;
 
71
        font-size: 14px;
 
72
}
 
73
 
 
74
QTabBar::tab:selected {
 
75
        border: none;
 
76
        margin: 0px;
 
77
        border-top-left-radius: 10px;
 
78
        border-top-right-radius: 10px;
 
79
        color: rgb(220, 0, 0);
 
80
        background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 rgb(68, 0, 0), stop: 1 rgb(86, 0, 0));
 
81
}
 
82
 
 
83
QTabWidget::pane {
 
84
        margin-top: 0px;
 
85
        border-top: none;
 
86
}